/* ===================================
   BRIYVA - Luxury Watch E-Commerce
   Complete CSS Clone
   =================================== */

/* CSS Custom Properties */
:root {
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-off-white: #f5f3ef;
    --color-light-grey: #e8e5e0;
    --color-mid-grey: #999999;
    --color-dark-grey: #333333;
    --color-gold: #93833e;
    --color-gold-light: #b8a44e;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-border: #e0ddd8;
    --color-bg-dark: #141414;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', 'Georgia', serif;

    --container-width: 1400px;
    --container-padding: 40px;
    --nav-height: 70px;
    --announcement-height: 36px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   ANNOUNCEMENT BAR
   =================================== */
.announcement-bar {
    background-color: var(--color-off-white);
    text-align: center;
    padding: 8px 20px;
    border-bottom: 1px solid var(--color-border);
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-bar p {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--color-text);
    font-weight: 400;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav-left,
.nav-center,
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.nav-center {
    justify-content: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-links-left,
.nav-links-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-text);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link svg {
    transition: transform var(--transition-fast);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--color-text);
    display: flex;
    align-items: center;
}



/* Search & Cart Buttons */
.search-btn,
.cart-btn {
    color: var(--color-text);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover,
.cart-btn:hover {
    color: var(--color-gold);
}

/* Dropdown */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-base);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item:hover .nav-link svg {
    transform: rotate(180deg);
}

.dropdown-link {
    display: block;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.dropdown-link:hover {
    color: var(--color-gold);
    background-color: var(--color-off-white);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background-color: var(--color-text);
    transition: all var(--transition-fast);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-white);
    color: var(--color-text);
    padding: 14px 28px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: var(--color-off-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-sm {
    padding: 12px 22px;
    font-size: 12px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 var(--container-padding) 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 400px;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ===================================
   SECTION HEADING
   =================================== */
.section-heading {
    padding: 80px 0 60px;
    text-align: center;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-gold);
}

.section-title-large {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 15px;
    font-weight: 300;
    color: var(--color-text-light);
    max-width: 400px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

/* ===================================
   PRODUCT GRID
   =================================== */
.products-grid {
    padding: 60px 0;
    background-color: var(--color-white);
}

.products-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card {
    cursor: pointer;
    transition: transform var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image {
    position: relative;
    background-color: var(--color-light-grey);
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1 / 1.15;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sale-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-gold);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 2;
}

.product-info {
    padding: 16px 4px 0;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.price-original {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-mid-grey);
    text-decoration: line-through;
}

/* ===================================
   CATEGORY CARDS
   =================================== */
.category-cards {
    padding: 0 0 60px;
    background-color: var(--color-white);
}

.category-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 480px;
    cursor: pointer;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-image {
    position: absolute;
    inset: 0;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.category-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.category-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 320px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ===================================
   COLLECTION CTA
   =================================== */
.collection-cta {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.collection-cta-bg {
    position: absolute;
    inset: 0;
}

.collection-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.collection-cta-content {
    position: relative;
    z-index: 1;
    padding: 0 var(--container-padding);
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.collection-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 16px;
}

.collection-cta-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 350px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ===================================
   MARQUEE SECTION
   =================================== */
.marquee-section {
    background-color: var(--color-black);
    padding: 50px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    flex-shrink: 0;
}

.marquee-text {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    color: var(--color-white);
    white-space: nowrap;
}

.marquee-separator {
    font-size: 48px;
    color: var(--color-gold);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   FEATURED SECTION
   =================================== */
.featured-section {
    padding: 60px 0;
    background-color: var(--color-white);
}

.featured-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 20px;
}

.featured-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Sale Banner */
.sale-banner {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    min-height: 400px;
}

.sale-banner-bg {
    position: absolute;
    inset: 0;
}

.sale-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sale-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.15) 100%);
}

.sale-banner-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.sale-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.sale-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.sale-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    max-width: 320px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ===================================
   BLOG SECTION
   =================================== */
.blog-section {
    padding: 60px 0 80px;
    background-color: var(--color-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.blog-card {
    cursor: pointer;
    transition: transform var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-image {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1 / 0.8;
    margin-bottom: 16px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-date {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-mid-grey);
    display: block;
    margin-bottom: 10px;
}

.blog-title {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===================================
   TRUST BADGES
   =================================== */
.trust-badges {
    padding: 40px 0;
    background-color: var(--color-off-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.badges-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.badge-item svg {
    color: var(--color-dark-grey);
    flex-shrink: 0;
}

.badge-item span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-dark-grey);
}

/* ===================================
   INSTAGRAM SECTION
   =================================== */
.instagram-section {
    background-color: var(--color-bg-dark);
    padding-top: 50px;
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--container-padding) 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.instagram-header .logo-text {
    color: var(--color-white);
    font-size: 20px;
    letter-spacing: 6px;
}

.instagram-header .logo-text::before {
    border-color: var(--color-white);
}

.instagram-links {
    display: flex;
    gap: 12px;
}

.instagram-link-btn {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 18px;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.instagram-link-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition-base);
    filter: brightness(0.85);
}

.instagram-item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--color-white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--color-text);
    margin-bottom: 24px;
}

.footer-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-read-more {
    text-decoration: underline;
    color: var(--color-text);
    font-weight: 400;
}

.footer-read-more:hover {
    color: var(--color-gold);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 14px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--color-text);
}

.newsletter-input::placeholder {
    color: var(--color-mid-grey);
}

.newsletter-submit {
    padding: 14px 16px;
    color: var(--color-text);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
}

.newsletter-submit:hover {
    color: var(--color-gold);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 13px;
    font-weight: 300;
    color: var(--color-text-light);
}

.footer-copyright a {
    font-weight: 500;
    color: var(--color-text);
}

.footer-copyright a:hover {
    color: var(--color-gold);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--color-text-light);
}

.powered-by-link {
    background-color: var(--color-dark-grey);
    color: var(--color-white) !important;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.footer-bottom-right a {
    color: var(--color-text-light);
    font-weight: 400;
}

.footer-bottom-right a:hover {
    color: var(--color-gold);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Animations */
.hero-content .hero-label {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content .hero-title {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-content .hero-description {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-content .btn {
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    :root {
        --container-padding: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-about {
        grid-column: span 3;
    }

    .footer-newsletter {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .products-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .badges-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .featured-row {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
        --nav-height: 60px;
    }

    .nav-center,
    .nav-right {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .search-btn {
        position: absolute;
        left: 20px;
    }

    .cart-btn {
        position: absolute;
        right: 50px;
    }

    .logo {
        position: static;
        transform: none;
        margin: 0 auto;
    }

    .navbar-inner {
        justify-content: space-between;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-center {
        display: flex;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px var(--container-padding);
        z-index: 1000;
        transform: translateX(100%);
        transition: transform var(--transition-base);
    }

    body.menu-open .nav-center {
        transform: translateX(0);
        display: flex;
    }

    .nav-center .nav-link {
        font-size: 18px;
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .nav-left,
    .nav-right {
        flex: none;
    }

    .hero {
        min-height: 500px;
        max-height: 700px;
    }

    .hero-title {
        font-size: 36px;
    }

    .category-row {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 350px;
    }

    .products-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .filter-container {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .collection-cta {
        height: 380px;
    }

    .marquee-text {
        font-size: 28px;
    }

    .featured-products {
        grid-template-columns: 1fr;
    }

    .products-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .badges-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-about,
    .footer-newsletter {
        grid-column: span 2;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .products-row {
        grid-template-columns: 1fr;
    }
    
    .badges-row {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-bottom: 50px;
    }

    .section-title-large {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about,
    .footer-newsletter {
        grid-column: span 1;
    }

    .instagram-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* ===================================
   COLLECTION FILTERS
   =================================== */
.filters-section {
    padding: 60px 0 30px;
    background-color: var(--color-white);
    text-align: center;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 50px;
    background-color: var(--color-off-white);
    border: 1px solid var(--color-border);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--color-text);
}

.filter-btn.active {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.filter-btn:hover:not(.active) {
    background-color: var(--color-light-grey);
    transform: translateY(-2px);
}

.collection-grid {
    padding-bottom: 80px;
}

.product-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
}