/* ═══════════════════════════════════════════════════════
   THE RANK ONE — Footer CSS
═══════════════════════════════════════════════════════ */

/* ── SITE FOOTER ─────────────────────────────────────── */
.site-footer {
    background: #0a0a0a;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body, 'Inter', sans-serif);
    margin-top: auto;
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 4px;
}

.footer-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--gold, #c9a84c);
    flex-shrink: 0;
}

.footer-brand-name {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.footer-brand-tag {
    font-size: 10px;
    font-weight: 500;
    color: var(--gold, #c9a84c);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 340px;
}

/* Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact__item i {
    color: var(--gold, #c9a84c);
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact__item:hover { color: #ffffff; }

/* Social */
.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s;
}

.footer-social__link:hover {
    background: rgba(201,168,76,0.15);
    border-color: var(--gold, #c9a84c);
    color: var(--gold, #c9a84c);
    transform: translateY(-2px);
}

/* Headings */
.footer-heading {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold, #c9a84c);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li a {
    color: rgba(255,255,255,0.55);
    font-size: 13.5px;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--gold, #c9a84c);
    padding-left: 4px;
}

/* Newsletter */
.footer-newsletter-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-newsletter {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.2s;
}

.footer-newsletter:focus-within {
    border-color: var(--gold, #c9a84c);
}

.footer-newsletter input {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: none;
    color: #ffffff;
    font-size: 12.5px;
    padding: 10px 14px;
    outline: none;
    min-width: 0;
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }

.footer-newsletter button {
    background: var(--gold, #c9a84c);
    border: none;
    color: #0a0a0a;
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.footer-newsletter button:hover { background: #e8c97a; }

/* Payment Icons */
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pay-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

.pay-icon i { color: var(--gold, #c9a84c); }

/* ── FOOTER BOTTOM ───────────────────────────────────── */
.footer-bottom {
    padding: 18px 0;
    background: #050505;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom__copy {
    font-size: 12.5px;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.footer-bottom__copy strong { color: var(--gold, #c9a84c); }

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom__links a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom__links a:hover { color: var(--gold, #c9a84c); }

/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.whatsapp-float i {
    font-size: 20px;
    line-height: 1;
}

.whatsapp-float__label {
    font-size: 13px;
    white-space: nowrap;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ── BACK TO TOP ─────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 42px;
    height: 42px;
    background: var(--gold, #c9a84c);
    color: #0a0a0a;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #e8c97a;
    transform: translateY(-2px);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 767.98px) {
    .footer-top { padding: 40px 0 30px; }
    .footer-bottom__inner { flex-direction: column; text-align: center; }
    .footer-bottom__links { justify-content: center; }
    .footer-desc { max-width: 100%; }
    .whatsapp-float__label { display: none; }
    .whatsapp-float { padding: 12px; border-radius: 50%; }
}

@media (max-width: 575.98px) {
    .footer-social__link { width: 32px; height: 32px; font-size: 13px; }
    .footer-logo { width: 44px; height: 44px; }
    .footer-brand-name { font-size: 15px; }
}
