﻿/* BottomNavBar */
.bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 68px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    border: 1px solid rgba(184, 134, 11, 0.25);
}

.nav-item {
    position: relative;
    text-decoration: none;
    color: #6b5a42;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 54px;
    transition: 0.3s ease;
}

    .nav-item i {
        font-size: 20px;
    }

    .nav-item.active,
    .nav-item:hover {
        color: #b8860b;
        transform: translateY(-3px);
    }

        .nav-item.active::before {
            content: "";
            position: absolute;
            top: -10px;
            width: 38px;
            height: 4px;
            border-radius: 10px;
            background: linear-gradient(90deg, #b8860b, #f6d365, #b8860b);
        }

.cart-count {
    position: absolute;
    top: -8px;
    right: 8px;
    background: #b8860b;
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 10px rgba(184,134,11,0.45);
}

/* Mobile only */
@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 90px;
    }
}


.site-footer {
    background: linear-gradient(180deg, #fffaf2 0%, #ffffff 55%, #fff7e3 100%);
    color: #3b2a55;
    padding: 28px 15px 95px;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid rgba(184, 134, 11, 0.22);
}

/* CTA */
.footer-cta {
    text-align: center;
    background: linear-gradient(135deg, #3b235f, #6b3fa0);
    border-radius: 26px;
    padding: 24px 16px;
    box-shadow: 0 14px 35px rgba(59, 35, 95, 0.25);
    margin-bottom: 28px;
}

    .footer-cta h2 {
        font-size: 20px;
        color: #ffd86b;
        margin-bottom: 8px;
    }

    .footer-cta p {
        font-size: 13px;
        color: #f7ecff;
        margin-bottom: 16px;
    }

.cta-btn {
    background: linear-gradient(90deg, #b8860b, #ffd86b, #b8860b);
    color: #2b1748;
    border: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.35);
}

/* Main */
.footer-main {
    display: grid;
    gap: 22px;
}

.footer-brand {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(184, 134, 11, 0.18);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(59, 35, 95, 0.08);
}

    .footer-brand h3 {
        color: #3b235f;
        font-size: 22px;
        margin-bottom: 6px;
        letter-spacing: 0.5px;
    }

    .footer-brand p {
        color: #6b5a42;
        font-size: 13px;
        line-height: 1.6;
    }

.footer-links,
.footer-contact {
    padding: 0 4px;
}

    .footer-links h4,
    .footer-contact h4 {
        color: #3b235f;
        font-size: 15px;
        margin-bottom: 10px;
        position: relative;
    }

        .footer-links h4::after,
        .footer-contact h4::after {
            content: "";
            width: 34px;
            height: 3px;
            border-radius: 10px;
            background: linear-gradient(90deg, #b8860b, #ffd86b);
            display: block;
            margin-top: 6px;
        }

    .footer-links a {
        display: block;
        color: #6b5a42;
        text-decoration: none;
        font-size: 13px;
        margin-bottom: 9px;
        transition: 0.3s ease;
    }

        .footer-links a:hover {
            color: #b8860b;
            transform: translateX(5px);
        }

    .footer-contact p {
        color: #6b5a42;
        font-size: 13px;
        margin-bottom: 8px;
    }

/* Social */
.footer-social {
    margin-top: 26px;
    text-align: center;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        display: inline-grid;
        place-items: center;
        margin: 0 6px;
        border-radius: 50%;
        color: #3b235f;
        background: #ffffff;
        border: 1px solid rgba(184, 134, 11, 0.25);
        box-shadow: 0 8px 20px rgba(59, 35, 95, 0.12);
        text-decoration: none;
        transition: 0.3s ease;
    }

        .footer-social a:hover {
            color: #fff;
            background: linear-gradient(135deg, #3b235f, #b8860b);
            transform: translateY(-4px);
        }

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #7a6a52;
}

/* Desktop */
@media (min-width: 768px) {
    .site-footer {
        padding: 45px 60px 35px;
    }

    .footer-main {
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
        gap: 30px;
    }

    .footer-cta h2 {
        font-size: 28px;
    }
}