﻿/* Lutador footer — compact, usable, no decorative noise */

.lux-footer {
    --lux-ft-black: #0a0a0a;
    --lux-ft-maroon: #2a0a0a;
    --lux-ft-crimson: #a00000;
    --lux-ft-gold: #d4af37;
    --lux-ft-gold-bright: #f0d78c;
    --lux-ft-border: rgba(255, 255, 255, 0.1);
    --lux-ft-ease: cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.75);
    background: var(--lux-ft-black);
    padding-top: 2.25rem;
    margin-top: auto;
}

.lux-footer__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 50% at 0% 0%, rgba(160, 0, 0, 0.22), transparent 55%),
        linear-gradient(180deg, #140808 0%, #0a0a0a 100%);
}

.lux-footer__container {
    position: relative;
    z-index: 1;
}

.lux-footer__newsletter-bar {
    margin-bottom: 1.75rem;
    border-radius: 16px;
    background: rgba(20, 10, 12, 0.72);
    border: 1px solid rgba(196, 30, 30, 0.28);
}

.lux-footer__newsletter-bar-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.15rem;
}

@media (min-width: 992px) {
    .lux-footer__newsletter-bar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0.9rem 1.25rem;
    }
}

.lux-footer__newsletter-bar-copy {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lux-footer__newsletter-bar-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(160, 0, 0, 0.28);
    color: var(--lux-ft-gold);
    font-size: 1.05rem;
}

.lux-footer__newsletter-bar-title {
    margin: 0;
    font-size: 0.92rem;
    color: #fff;
    font-weight: 600;
}

.lux-footer__newsletter-bar-sub {
    margin: 0.1rem 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.lux-footer__newsletter-bar-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

@media (min-width: 992px) {
    .lux-footer__newsletter-bar-form {
        width: auto;
        flex-wrap: nowrap;
    }
}

.lux-footer__newsletter-bar-field {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex: 1;
    min-width: 180px;
    padding: 0 0.85rem;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lux-footer__newsletter-bar-field:focus-within {
    border-color: rgba(212, 175, 55, 0.45);
}

.lux-footer__newsletter-bar-field i { color: rgba(255, 255, 255, 0.4); }

.lux-footer__newsletter-bar-field input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.88rem;
    outline: none;
}

.lux-footer__newsletter-bar-field input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.lux-footer__newsletter-bar-btn {
    height: 42px;
    padding: 0 1.15rem;
    border: none;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a0a0a;
    cursor: pointer;
    background: linear-gradient(135deg, var(--lux-ft-gold-bright), var(--lux-ft-gold));
}

.lux-footer__newsletter-bar-btn:hover {
    filter: brightness(1.06);
}

.lux-footer__main {
    display: grid;
    gap: 1.35rem 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lux-ft-border);
}

@media (min-width: 700px) {
    .lux-footer__main {
        grid-template-columns: 1.2fr 1fr;
    }
}

@media (min-width: 1100px) {
    .lux-footer__main {
        grid-template-columns: 1.35fr 0.75fr 0.75fr 1fr;
        align-items: start;
    }
}

.lux-footer__logo-link {
    display: inline-block;
    width: fit-content;
    margin-bottom: 0.75rem;
}

.lux-footer__logo {
    width: min(168px, 100%);
    height: auto;
    object-fit: contain;
}

.lux-footer__tagline {
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    max-width: 22rem;
    margin: 0 0 1rem;
}

.lux-footer__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.lux-footer__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    height: 38px;
    padding: 0 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--lux-ft-border);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}

.lux-footer__chip:hover {
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--lux-ft-gold-bright);
}

.lux-footer__chip--wa {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.lux-footer__chip--wa:hover {
    background: #128c7e;
    border-color: #128c7e;
    color: #fff;
}

.lux-footer__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lux-ft-gold);
    margin: 0 0 0.65rem;
    list-style: none;
    cursor: pointer;
}

.lux-footer__heading::-webkit-details-marker {
    display: none;
}

.lux-footer__heading::after {
    content: "+";
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

.lux-footer__nav-col[open] .lux-footer__heading::after {
    content: "–";
}

.lux-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lux-footer__list li {
    margin-bottom: 0.15rem;
}

.lux-footer__list a {
    display: block;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    padding: 0.28rem 0;
}

.lux-footer__list a:hover {
    color: var(--lux-ft-gold-bright);
}

.lux-footer__help {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.lux-footer__install {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    max-width: 280px;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #f3d673, #d4af37);
    color: #2a1208;
    text-align: left;
    font: inherit;
    cursor: pointer;
    pointer-events: auto;
    appearance: none;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.28);
}

.lux-footer__install i {
    font-size: 1.25rem;
    color: #2a1208;
}

.lux-footer__install span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.lux-footer__install small {
    font-size: 0.65rem;
    color: rgba(42, 18, 8, 0.7);
}

.lux-footer__install strong {
    font-size: 0.86rem;
}

.lux-footer__install:hover,
.lux-footer__install:focus-visible {
    border-color: #f0d78c;
    filter: brightness(1.05);
    outline: 2px solid rgba(240, 215, 140, 0.5);
    outline-offset: 2px;
}

.lux-footer__install.is-ready {
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.35), 0 6px 18px rgba(212, 175, 55, 0.28);
}

.lux-footer__install.is-installed,
.lux-footer__install:disabled {
    cursor: default;
    filter: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    box-shadow: none;
}

.lux-footer__install.is-installed i,
.lux-footer__install:disabled i {
    color: #7ddea0;
}

.lux-footer__install.is-installed small,
.lux-footer__install:disabled small {
    color: rgba(255, 255, 255, 0.55);
}

.lux-footer__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0 0 1.25rem;
    border-bottom: 1px solid var(--lux-ft-border);
}

@media (min-width: 700px) {
    .lux-footer__features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lux-footer__feature {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--lux-ft-border);
}

.lux-footer__feature i {
    font-size: 1.15rem;
    color: #ff7a7a;
}

.lux-footer__feature strong {
    display: block;
    font-size: 0.78rem;
    color: #fff;
}

.lux-footer__feature span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.3;
}

.lux-footer__pay-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
}

.lux-footer__pay-strip-left {
    flex: 1;
    min-width: 0;
}

.lux-footer__pay-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.55rem;
}

.lux-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.lux-footer__pay {
    display: inline-flex;
    border-radius: 8px;
    overflow: hidden;
}

.lux-footer__pay img {
    display: block;
    height: 30px;
    width: auto;
    max-width: 76px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    padding: 3px 7px;
}

.lux-footer__pay--tigopesa img {
    background: #ffcc00;
}

.lux-footer__back-top {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid rgba(196, 30, 30, 0.45);
    border-radius: 50%;
    background: rgba(160, 0, 0, 0.28);
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lux-footer__back-top:hover {
    background: rgba(160, 0, 0, 0.5);
}

.lux-footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--lux-ft-border);
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 0 max(1rem, env(safe-area-inset-bottom, 0));
}

.lux-footer__bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-align: center;
}

@media (min-width: 992px) {
    .lux-footer__bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.lux-footer__copy,
.lux-footer__crafted {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.lux-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.1rem;
}

.lux-footer__legal a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.lux-footer__legal a:hover {
    color: var(--lux-ft-gold);
}

.lux-footer.footer-luxury {
    background: var(--lux-ft-black);
    padding-inline: env(safe-area-inset-left, 0) env(safe-area-inset-right, 0);
}

@media (min-width: 768px) {
    .lux-footer__nav-col .lux-footer__list {
        display: block !important;
    }

    .lux-footer__heading {
        pointer-events: none;
        cursor: default;
    }

    .lux-footer__heading::after {
        display: none;
    }
}

@media (max-width: 699px) {
    .lux-footer__brand {
        text-align: left;
    }

    .lux-footer__pay-strip {
        flex-direction: column;
        align-items: stretch;
    }

    .lux-footer__back-top {
        align-self: flex-end;
    }
}
