/** Shopify CDN: Minification failed

Line 1067:0 Unexpected "}"
Line 1070:1 Expected identifier but found "%"
Line 1070:41 Expected identifier but found "%"
Line 1879:0 Unexpected "{"
Line 1879:1 Expected identifier but found "%"
Line 1879:44 Expected identifier but found "%"

**/
/* 
Author: Muhammad Faizan
Company: Fixis.pk
Version: v1.0
License no: MF 001
*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,900;1,400&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --bg-color: #fcfcfc; /* Cleaner off-white for luxury */
    --text-color: #0c0c0c;
    --accent-color: #000;
    --sidebar-width: 80px;
    --luxury-font: 'Playfair Display', serif;
}

.rc-monogram {
    font-family: var(--luxury-font);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text-color);
    line-height: 1;
    text-decoration: none;
}


/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Explicitly use vw/vh for mobile centering */
    height: 100vh;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001; /* Highest layer */
    transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
}

.preloader.fade-out {
    transform: translateY(-100%);
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.preloader-logo svg {
    width: 60px;
    height: 60px;
}

.loader-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.loader-bar {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    animation: loadProgress 2s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}

.loader-text {
    color: #000;
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    font-weight: 800;
    opacity: 0.8;
}

@keyframes loadProgress {
    0% { left: -100%; }
    100% { left: 0%; }
}

html {
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll globally */
    transition: background-color 1.5s ease;
    margin: 0;
}

/* Skeleton State */
body:not(.loaded) .content,
body:not(.loaded) .sidebar {
    opacity: 0.5;
    filter: grayscale(1);
    pointer-events: none;
}

body:not(.loaded) .content img,
body:not(.loaded) .sidebar img {
    filter: brightness(0.9) contrast(0.1) !important;
    background: #eee;
}

body:not(.loaded) .content :is(h1, h2, h3, p, span, a),
body:not(.loaded) .sidebar :is(h1, h2, h3, p, span, a) {
    color: transparent !important;
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 2s infinite linear;
    border-radius: 4px;
    display: inline-block;
}


@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.sidebar-announcements {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-announcement-bar {
    display: none;
    background: #1a1a1a; /* Light black background */
    color: #fff;
    width: 100%;
    padding: 1.5rem 0; /* Slightly more padding for the curve */
    text-align: center;
    overflow: hidden;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mobile-announcement-bar .announcement-slide {
    position: relative;
    transform: none;
    opacity: 1;
    display: none;
    flex-direction: column;
    gap: 0.2rem;
}

.mobile-announcement-bar .announcement-slide.active {
    display: flex;
}

.mobile-announcement-bar .label {
    color: rgba(255,255,255,0.6);
    font-size: 0.5rem;
}

.mobile-announcement-bar .sub-label, 
.mobile-announcement-bar .side-timer {
    color: #fff;
    font-size: 0.65rem;
}

.announcement-slide {
    position: absolute;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    pointer-events: none;
    width: 100%;
}

.announcement-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.announcement-slide .label {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0.4;
    white-space: nowrap;
}

.announcement-slide .sub-label, #side-timer {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    white-space: nowrap;
    opacity: 1;
}

#side-timer {
    color: #000;
}


/* Custom Cursor Removed */


/* Sidebar */
.sidebar {
    width: 80px;
    height: 100vh;
    border-right: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    position: fixed;
    left: 0;
    top: 0;
    background: white;
    z-index: 100;
}

.logo svg {
    width: 30px;
    height: 30px;
    opacity: 0.9;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 0.3em;
    font-size: 0.6rem;
    font-weight: 800;
    opacity: 0.2;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.socials svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.5px;
}


.socials a {
    text-decoration: none;
    color: var(--text-color);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.socials a:hover {
    opacity: 1;
}


.content {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Base Top Nav - Fully Restored */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}


.bag-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.cart-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    z-index: 10;
}

.cart-icon-container:hover {
    transform: scale(1.25);
}

.cart-icon-container:active {
    transform: scale(0.95);
}

.cart-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
    stroke: currentColor;
    stroke-width: 1.5px;
}

.cart-icon-container:hover .cart-icon {
    opacity: 1;
    stroke-width: 2.2px;
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #111;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #fff;
}

.cart-count.active {
    transform: scale(1);
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-bounce {
    animation: cartBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Mega Menu Upgrades */
.nav-links.mobile-nav {
    display: none;
}

.nav-links.desktop-nav {
    list-style: none;
    display: flex;
    gap: 4rem;
    margin: 0;
    padding: 0;
}

.nav-links.desktop-nav li {
    position: relative;
    padding: 1rem 0;
}

.nav-links.desktop-nav li a {
    position: relative;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    opacity: 0.5;
    transition: 0.3s;
}

.nav-links.desktop-nav li:hover > a {
    opacity: 1;
}

.nav-links.desktop-nav > li:hover > a::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-links.desktop-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 25px;
    height: 2.2px;
    background: #000;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: center;
}

.mega-menu {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    background: white;
    width: 900px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    display: flex;
    justify-content: center;
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10000;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.03);
}

.has-dropdown:hover .mega-menu,
.has-dropdown.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.menu-section {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.menu-section-header {
    font-family: var(--luxury-font);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
    margin-bottom: 0.8rem;
    color: #000;
    text-transform: uppercase;
    text-decoration: none !important;
}

.department-grid {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-decoration: none !important;
}

.dept-column h4 a {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #999;
    text-decoration: none !important;
    border-bottom: none !important;
    padding-bottom: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dept-column h4 a::after {
    display: none !important;
}

.dept-column h4 a:hover {
    color: #000;
    opacity: 1;
}

.dept-column h4 a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
}

.dept-column h4 a:hover::before {
    opacity: 1;
}

.dept-links a {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #444;
    transition: 0.2s;
    opacity: 1 !important;
}

.dept-links a:hover {
    color: black;
    transform: translateX(5px);
}


.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}


.menu-icon span {
    width: 25px;
    height: 2px;
    background: black;
}


/* Hero Grid Refinement - Shifted Right */
.hero {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 3rem;
    position: relative;
    padding: 2rem 4rem; /* Balanced with Nav/Footer */
    box-sizing: border-box;
}

.hero-arrows { display: none; }

.product-info {
    width: 100%;
    max-width: 550px;
    z-index: 10;
    display: flex;
    flex-direction: column;
}


.category {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 1rem;
    font-weight: 800;
}

.product-title {
    font-family: var(--luxury-font);
    font-size: clamp(3rem, 5.5vw, 6.5rem);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    color: #000;
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.6;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 440px;
}

.colors {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.price {
    font-size: 3.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}





.controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.size-selector {
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.size-selector .label {
    font-size: 0.7rem;
    font-weight: 800;
    opacity: 0.3;
}

.size-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 900;
}

.size-box span { 
    cursor: pointer; 
    padding: 10px;
    transition: transform 0.2s;
    user-select: none;
}

.size-box span:hover {
    transform: scale(1.5);
    color: #666;
}


.add-to-bag {
    background: black;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: 0.3s;
}

.add-to-bag:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    transform: translateX(-8%) rotate(-3deg);
    filter: drop-shadow(40px 40px 100px rgba(0,0,0,0.1));
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    position: relative;
}


.hero-image.variant-fade {
    opacity: 0;
    transform: scale(0.95) rotate(0deg);
    filter: blur(20px);
}

.pagination {
    position: absolute;
    right: 3rem; /* Tucked closer to edge */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 100; /* Force to top tier */
}



.pagination .dot {
    cursor: pointer;
    transition: 0.4s;
    opacity: 0.3;
    color: #000;
    position: relative;
    padding-right: 40px;
}

.pagination .dot.active {
    opacity: 1;
    color: #000;
}

.pagination .dot.active::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: black;
}





/* Related Section */
.related {
    height: 25vh;
    position: relative;
    padding-top: 2rem;
}

.related::before {
    content: "";
    position: absolute;
    top: 0;
    left: -4rem;
    width: calc(100% + 8rem);
    height: 100%;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
    z-index: 5;
    pointer-events: none;
}

.related-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    position: absolute;
    left: -3rem;
    top: 2rem;
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    opacity: 0.3;
}

.related-carousel {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2rem;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 300px;
}

.related-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
}

.item-info h4 {
    font-size: 0.8rem;
    font-weight: 800;
}

.item-info span {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Animations */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-info *, .related-item {
    animation: slideUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Responsive */
@media (max-width: 1200px) {
    .content { padding: 2rem; }
    .product-title { font-size: 4rem; }
}

@media (max-width: 768px) {
    body { flex-direction: column; }
    .sidebar { width: 100%; height: 60px; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); position: relative; flex-direction: row; padding: 0 1rem; }
    .vertical-text { display: none; }
    .content { margin-left: 0; width: 100%; padding: 1rem; }
    .hero { flex-direction: column; }
    .product-info { width: 100%; text-align: center; }
    .colors { justify-content: center; }
    .controls { flex-direction: column; gap: 1rem; }
    .hero-image-container { width: 100%; }
}

/* Denim Collection Section */
.denim-collection {
    padding: 10rem 5rem;
    background: #fff;
    max-width: 1600px;
    margin: 0 auto;
}

.collection-header {
    text-align: center;
    margin-bottom: 5rem;
}

.collection-header h2 {
    font-family: var(--luxury-font);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.collection-header p {
    font-size: 0.9rem;
    opacity: 0.5;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.denim-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 400px); /* Fixed row heights for distinct feel */
    gap: 3rem;
    max-width: 1400px;
    margin: 6rem auto;
}

.denim-item.featured {
    grid-column: span 7;
    grid-row: span 2; /* Large vertical feature */
}

.side-column {
    grid-column: span 5;
    grid-row: span 2;
    display: grid;
    grid-template-rows: 1.2fr 0.8fr; /* Distinctly different heights */
    gap: 3rem;
}

.denim-item.small {
    width: 100%;
    height: 100%;
}

.denim-item {
    position: relative;
    overflow: hidden;
    background: #fdfdfd;
    border-radius: 32px; /* Ultra-modern luxury curves */
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    transition: all 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.denim-item:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 40px 90px rgba(0,0,0,0.08);
}

.denim-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.denim-item:hover img {
    transform: scale(1.05);
}

.denim-overlay {
    position: absolute;
    inset: 0;
    padding: 4rem;
    color: white;
    z-index: 5;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centered content */
    text-align: center;
    transition: all 0.6s ease;
}

.denim-item:hover .denim-overlay {
    background: rgba(0,0,0,0.4);
}

.denim-overlay h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}

.denim-item.small .denim-overlay h3 {
    font-size: 1.6rem;
}

.denim-overlay p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: #fff;
    max-width: 350px;
}

.shop-link {
    display: inline-block;
    color: #000;
    background: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    width: fit-content;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.shop-link:hover {
    transform: scale(1.1);
    background: #000;
    color: #fff;
}

/* Featured Overlay Shift */
.denim-item.featured .denim-overlay {
    text-align: center;
    padding-bottom: 4rem;
}

.denim-item.featured .denim-overlay p {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Denim - Robust Stacking */
@media (max-width: 992px) {
    .denim-grid { 
        display: block !important; /* Stop using grid to avoid overlap */
        height: auto !important; 
        margin: 2rem 0;
    }
    
    .denim-item.featured, .side-column {
        width: 100% !important;
        margin-bottom: 2rem;
    }
    
    .side-column {
        display: block !important; /* Stop using grid inside column */
    }
    
    .denim-item { 
        width: 100% !important;
        height: 450px !important; /* Fixed height for consistency */
        margin-bottom: 2rem;
        aspect-ratio: auto !important;
    }
}
    .denim-overlay {
        padding: 2rem;
    }
    .denim-overlay h3 {
        font-size: 1.5rem;
    }
    .denim-overlay p {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
}

/* Custom Cursor Logic */
{% comment %} Consolidated Cursor Logic {% endcomment %}

/* Category Page Logic */
.category-content {
    padding: 10rem 0;
}

.category-title {
    font-family: var(--luxury-font);
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 1rem;
}

.filter-item {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
}

.filter-item:hover, .filter-item.active {
    opacity: 1;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
}

.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.card-img-container {
    height: 450px;
    background: #f8f8f8;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 4px;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .card-img-container img {
    transform: scale(1.08);
}

.card-info {
    text-align: center;
}

.card-info .brand {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    opacity: 0.4;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.card-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.card-info .price {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; }
    .category-title { font-size: 3rem; }
}

/* Collections Hero */
.collections-hero {
    height: 350px;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* PERFECTLY CENTERED */
    text-align: center;
    margin: 0 auto 5rem;
    max-width: 1400px;
    padding: 0 4rem;
    position: relative;
    overflow: hidden;
    color: #000;
}

.collections-hero h1 {
    font-family: var(--luxury-font);
    font-size: 2.8rem; /* More proportional for left-align */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-top: 1.5rem;
    margin-bottom: 0;
    z-index: 2;
}

.collections-hero .breadcrumbs {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.6;
    letter-spacing: 0.1em;
    z-index: 2;
}

/* Collections Grid (Salehub Style) */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto 8rem;
    padding: 0 4rem; /* Match unified 4rem grid */
}

.collections-grid.homepage-grid {
    display: flex;
    gap: 3rem;
    max-width: none;
    margin: 0;
    padding: 0;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.collections-grid.homepage-grid .collection-card {
    flex: 0 0 calc(33.33% - 2rem); /* 3 columns with gap consideration */
}

/* Slider Container */
.category-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.slider-track-wrap {
    overflow: hidden;
    padding: 1rem 0;
}

/* Slider Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 500; /* Above images */
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
    z-index: 501;
    color: #000;
}

.slider-btn:hover {
    transform: scale(1.1);
    background: black;
    color: white;
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.prev-btn { margin-left: -25px; }
.next-btn { margin-right: -25px; }

@media (max-width: 1024px) {
    .collections-grid.homepage-grid .collection-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
    .category-slider-container { max-width: 90%; }
}

@media (max-width: 600px) {
    .collections-grid.homepage-grid .collection-card {
        flex: 0 0 85%;
    }
}

.collection-card {
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: 0.3s ease;
}

.collection-img-box {
    aspect-ratio: 1 / 1.1; /* Slightly taller for fashion feel */
    background: #f8f8f8;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 4px;
}

.collection-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.collection-card:hover .collection-img-box img {
    transform: scale(1.05);
}

.collection-card h3 {
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Enhanced Footer */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 4rem;
    padding: 5rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    opacity: 0.6;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

@media (max-width: 1200px) {
    .collections-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }
}





/* --- Product Listing Page (PLP) Architecture --- */

.plp-layout {
    display: flex;
    gap: 4rem;
    padding: 2rem 4rem 8rem; /* Unified 4rem grid */
    max-width: 1400px; /* Unified constraint */
    margin: 0 auto;
}

/* Filter Sidebar (Salehub Style) */
.filter-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 6rem;
    height: calc(100vh - 8rem);
    overflow-y: auto;
    padding-right: 1.5rem;
    z-index: 100;
}

.mobile-filter-bar {
    display: none;
    width: 100%;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.filter-toggle {
    background: #000;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 2500;
    display: none;
}

.filter-header-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 2rem;
}

.filter-header-mobile span {
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.close-filters {
    font-size: 2rem;
    cursor: pointer;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.filter-sidebar::-webkit-scrollbar { display: none; }
.filter-sidebar { -ms-overflow-style: none; scrollbar-width: none; }

.filter-top-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.clear-all {
    font-size: 0.7rem;
    color: #999;
    text-decoration: underline;
    font-weight: 600;
}

.clear-all:hover { color: #000; }

.filter-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.filter-reset-link {
    font-size: 0.7rem;
    color: #999;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

.filter-subgroup {
    margin-bottom: 3.5rem;
    border-bottom: 1px solid #f8f8f8;
    padding-bottom: 1.5rem;
}

.filter-subgroup h4 {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin: 0;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filter-item input {
    width: 18px;
    height: 18px;
    accent-color: #000;
    cursor: pointer;
}

.filter-item label {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.85rem;
    cursor: pointer;
    color: #444;
}

.filter-count {
    color: #bbb;
    font-size: 0.75rem;
}

.price-filter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-price-input {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 4px;
}

.filter-price-input span {
    color: #999;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.filter-price-input input {
    border: none;
    width: 100%;
    font-size: 0.9rem;
    outline: none;
}

.filter-footer {
    margin-top: 3rem;
    padding-bottom: 6rem;
}

.apply-filters-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 1.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-filters-btn:hover {
    background: #333;
}



/* Color Swatches in Filter */
.color-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
}

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.color-swatch:hover { transform: scale(1.2); }

/* Product Main Area */
.product-main {
    flex-grow: 1;
}

.product-row-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.view-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.view-btn {
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
}

.view-btn.active { opacity: 1; }

/* PLP Product Grid */
.plp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 6px;
}

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

.product-card {
    text-decoration: none;
    color: inherit;
    position: relative;
    background: #fff; /* Clean minimal white background */
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f2f2f2; /* Subtle border for minimal card look */
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1.4; /* Stronger portrait ratio */
    background: #f8f8f8;
    margin-bottom: 0;
    overflow: hidden;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.product-details {
    padding: 16px 14px; /* Optimal padding as requested */
    text-align: left;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: -0.04em; /* More condensed feel */
    line-height: 1.1;
    color: #000;
}

.product-price {
    font-size: 0.8rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.02em;
}

.product-brand, .product-rating { display: none; }

/* Pagination */
.pagination-plp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 8rem;
    font-size: 0.9rem;
    font-weight: 500;
    width: 100%;
}

.pagination-plp a, .pagination-plp span {
    text-decoration: none;
    color: #666;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.pagination-plp a:hover {
    color: #000;
    border-color: #eee;
    background: #fbfbfb;
    transform: translateY(-2px);
}

.pagination-plp .current {
    background: #000;
    color: #fff;
    font-weight: 800;
}

/* Sold Out Indication on Category Page */
.sold-badge-plp {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #000;
    color: #fff;
    padding: 0.5rem 1.2rem;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    border-radius: 2px;
    z-index: 5;
    text-transform: uppercase;
}

.product-card.sold-out .product-image-wrapper img {
    opacity: 0.5;
    filter: grayscale(0.5);
}

.product-card.sold-out .product-name,
.product-card.sold-out .product-price {
    opacity: 0.6;
}

.pagination-plp .page.current {
    background: #000;
    color: #fff;
    border-color: #000;
}

.pagination-plp .prev, .pagination-plp .next {
    font-weight: 800;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .pagination-plp {
        margin-top: 5rem;
        gap: 0.5rem;
    }
    .pagination-plp a, .pagination-plp span {
        width: 35px;
        height: 35px;
        padding: 0;
        font-size: 0.8rem;
    }
}


/* Featured Product Section */
.featured-product-section {
    padding: 10rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.featured-header {
    text-align: center;
    margin-bottom: 6rem;
}

.featured-header h2 {
    font-family: var(--luxury-font);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.featured-products-container {
    display: flex;
    flex-direction: column;
    gap: 12rem; /* Extreme spacing for luxury feel */
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 6rem;
    align-items: center;
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.featured-media {
    width: 100%;
    position: relative;
    max-width: none;
}

.featured-img-container {
    aspect-ratio: 4 / 3; 
    background: #fdfdfd;
    overflow: hidden;
    position: relative;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-img-container img {
    width: 90% !important;
    height: 90% !important;
    object-fit: contain !important; /* Force showing full shoe */
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .featured-img-container {
        aspect-ratio: 1 / 1;
        width: 100%;
    }
}

{% comment %} Removed duplicate rules here {% endcomment %}

.featured-media-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.media-dot {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.media-dot.active {
    background: black;
}

.featured-info {
    flex: 1;
    max-width: 500px;
}

.featured-name {
    font-family: var(--luxury-font);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.featured-brand {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: #333;
}

.featured-rating {
    display: flex;
    gap: 2px;
    color: #000;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.featured-price {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}

.option-group {
    margin-bottom: 2.5rem;
}

.option-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    color: #333;
}

.color-swatches {
    display: flex;
    gap: 0.8rem;
}

.swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: 0.2s;
    position: relative;
}

.swatch.active::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid black;
    border-radius: 50%;
}

.size-pills {
    display: flex;
    gap: 0.8rem;
}

.pill {
    width: 38px;
    height: 48px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.pill.active {
    background: black;
    color: white;
    border-color: black;
}

.pill.out-of-stock {
    opacity: 0.3;
    position: relative;
    cursor: not-allowed;
}

.pill.out-of-stock::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #000;
    transform: rotate(45deg);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-main {
    width: 100%;
    padding: 1.2rem;
    border: none;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: 0.3s;
}

.add-tobag.primary-cta {
    background: #111;
    color: white;
}

.add-tobag.primary-cta:hover {
    background: #000;
    transform: scale(1.02);
}

.paypal-btn {
    background: #ffc439;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.paypal-btn span {
    font-weight: 800;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.size-chart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: black;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.care-details {
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.care-details p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.care-list {
    list-style: none;
    padding: 0;
}

.care-list li {
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
    color: #444;
    text-transform: uppercase;
}

.care-list li::before {
    content: '•';
    margin-right: 10px;
}

@media (max-width: 991px) {
    .featured-grid {
        flex-direction: column;
        gap: 4rem;
    }
    .featured-info {
        max-width: 100%;
    }
}

.page-num.active {
    background: black;
    color: white;
    border-color: black;
}

.page-num:hover:not(.active) {
    background: #f8f8f8;
}

/* --- RESPONSIVE LUXURY TUNING --- */

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

@media (max-width: 1024px) {
    .top-nav .nav-container { padding: 0 2rem; }
    .nav-links.desktop-nav { display: none; }
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }

    .top-nav .nav-container {
        padding: 0 1.5rem;
    }

    .mobile-announcement-bar {
        display: block;
    }

    .top-nav {
        flex-direction: column;
        padding-top: 0;
    }

    .nav-container {
        padding: 2rem 1.5rem !important; /* Increased padding to prevent overlap */
        background: #fff;
    }

    .nav-links.mobile-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 2000;
        display: flex;
        overflow-y: auto;
        padding-bottom: 5rem;
    }

    .nav-links.mobile-nav.active {
        transform: translateX(0);
    }

    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2.5rem 1.5rem;
        border-bottom: 1px solid #eee;
    }

    .mobile-nav-header .label {
        font-weight: 900;
        letter-spacing: 0.3em;
        font-size: 0.8rem;
    }

    .close-menu-btn {
        font-size: 2.5rem;
        cursor: pointer;
        line-height: 1;
    }

    .mobile-accordion-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .accordion-item {
        border-bottom: 1px solid #f5f5f5;
    }

    .accordion-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.8rem 1.5rem;
        cursor: pointer;
    }

    .trigger-left {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-icon {
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
    }

    .nav-icon svg {
        width: 100%;
        height: 100%;
    }

    .accordion-trigger a {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        letter-spacing: 0 !important;
        color: #111 !important;
        text-decoration: none;
    }

    .plus-icon {
        font-size: 1.2rem;
        color: #bbb;
        font-weight: 300;
        transition: transform 0.3s ease;
    }

    .accordion-item.active .plus-icon {
        transform: rotate(45deg);
    }

    .accordion-content {
        list-style: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        background: #fff;
        transition: max-height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .accordion-item.active .accordion-content {
        max-height: 500px;
    }

    .accordion-item.active {
        background: #fafafa;
    }

    .accordion-content li {
        padding: 0;
    }

    .accordion-content a {
        display: flex;
        align-items: center;
        gap: 1.2rem;
        padding: 1.2rem 1.5rem 1.2rem 5.5rem;
        font-size: 0.9rem !important;
        font-weight: 400 !important;
        color: #555 !important;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .sub-dot {
        width: 6px;
        height: 6px;
        background: #eee;
        border-radius: 50%;
        flex-shrink: 0;
        transition: background 0.3s ease;
    }

    .accordion-content a:hover .sub-dot {
        background: #000;
    }

    .accordion-content a:active {
        background: #f0f0f0;
    }

    .menu-icon {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 10px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-icon span {
        width: 100%;
        height: 2px;
        background: black;
        transition: all 0.4s ease;
    }

    .menu-icon.active {
        height: 14px;
    }

    .menu-icon.active span:first-child {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-icon.active span:last-child {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* PLP Mobile Stacking */
    .plp-layout {
        display: flex;
        flex-direction: column;
    }

    .filter-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        max-height: none;
        padding: 1.5rem;
        border-right: none;
        border-bottom: 1px solid #eee;
        overflow: hidden;
    }

    .filter-group:not(:last-child) {
        margin-bottom: 1.5rem;
    }

    .plp-layout {
        padding: 1rem 4px !important;
        gap: 0;
    }

    .plp-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 4px 4px !important; /* Tiny gap for mobile */
        padding: 0 !important;
    }

    .mobile-filter-bar {
        display: block;
    }

    .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: #fff;
        z-index: 3000;
        padding: 0 2.5rem 5rem;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        box-shadow: 20px 0 50px rgba(0,0,0,0.1);
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }

    .filter-form {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .filter-footer {
        margin-top: auto;
        padding: 3rem 0;
    }


    .filter-sidebar.active {
        transform: translateX(0);
    }

    .filter-overlay.active {
        display: block;
    }

    .filter-header-mobile {
        display: flex;
    }

    .product-image-wrapper {
        aspect-ratio: 1 / 1.4 !important; /* Portrait ratio preserved on mobile */
    }

    .product-details {
        padding: 10px 8px !important;
    }

    .product-name {
        font-size: 0.75rem !important;
    }

    .product-price {
        font-size: 0.7rem !important;
    }

    /* Hide complex mega menu on mobile */
    .has-dropdown:hover .mega-menu {
        display: none;
    }

    .bag-info .text {
        display: none; /* Icon only on mobile */
    }
}

@media (max-width: 480px) {
    .collections-hero h1 { font-size: 2.2rem; }
    .sidebar { width: 55px; }
    .content { margin-left: 55px; }
    .top-nav { left: 55px; }
    .logo span { font-size: 1.5rem; }
    .label { font-size: 0.6rem; }
}
/* PDP Redesign Styles */
.pdp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 4rem 8rem;
}

.breadcrumbs-pdp {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 3rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.breadcrumbs-pdp a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.breadcrumbs-pdp a:hover {
    color: black;
}

.pdp-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: start;
}

.main-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 4/5;
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

#pdp-timer {
    color: #000;
    font-weight: 800;
}

.image-overlay-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
}

.image-overlay-dots span {
    width: 30px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border-radius: 2px;
}

.image-overlay-dots span.active {
    background: white;
}

.thumbnail-grid-pdp {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pdp-thumb {
    flex: 1;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pdp-thumb.active {
    border-color: black;
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdp-details-panel {
    position: sticky;
    top: 4rem;
}

.brand-tag {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 1rem;
}

.pdp-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.pdp-price {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.delivery-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f8f8;
    padding: 1.2rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.pdp-option-selector {
    margin-bottom: 3rem;
}

.option-label {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.size-pill-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.size-pill {
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    border: 1px solid #eee;
    background: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.size-pill.active {
    background: black;
    color: white;
    border-color: black;
}

.pdp-action-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.add-to-cart-pdp {
    flex: 1;
    background: #111;
    color: white;
    border: none;
    padding: 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.add-to-cart-pdp:hover {
    background: black;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.wishlist-btn-pdp {
    width: 60px;
    height: 60px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
    transition: all 0.4s ease;
}

.wishlist-btn-pdp:hover {
    border-color: #111;
}

/* Accordions */
.pdp-accordions {
    border-top: 1px solid #eee;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-bottom: 0;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding-bottom: 2rem;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.specs-table tr {
    border-bottom: 1px solid #f2f2f2;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 1.2rem 0;
    vertical-align: top;
}

.specs-table .spec-label {
    width: 40%;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    color: #999;
}

.specs-table .spec-value {
    width: 60%;
    color: #000;
    font-weight: 400;
}

@media (max-width: 768px) {
    .specs-table .spec-label {
        width: 45%;
    }
}


.shipping-grid-pdp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.ship-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ship-card svg {
    color: #999;
}

/* Related Products Grid (Static) */
.related-products-section {
    padding: 10rem 0;
    border-top: 1px solid #eee;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .pdp-layout-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .pdp-container {
        padding: 2rem 1.5rem 6rem;
    }
    .pdp-title {
        font-size: 2.5rem;
    }
    .thumbnail-grid-pdp {
        display: flex;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .thumbnail-grid-pdp::-webkit-scrollbar { display: none; }
    .main-image-wrapper {
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }
    .image-overlay-dots span {
        cursor: pointer;
    }
}

/* --- CART PAGE STYLES --- */
.cart-page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 8rem;
}

.cart-left-col {
    display: flex;
    flex-direction: column;
}

.cart-table-header {
    display: grid;
    grid-template-columns: 2.2fr 1fr; /* Only Product and QTY headers */
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #999;
    font-weight: 800;
}

.cart-table-header span:nth-child(2),
.cart-table-header span:nth-child(4) {
    display: none; /* Hide Price and Total headers */
}

.cart-item {
    display: grid;
    grid-template-columns: 2.2fr 1fr; /* Parallel to header */
    align-items: flex-start;
    padding: 3.5rem 0;
    border-bottom: 1px solid #eee;
}

.item-price, .item-total {
    display: none; /* Removed as per user request */
}

/* Sidebar Hierarchy */
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.summary-row.shipping-row .total-label,
.summary-row.shipping-row .total-val,
.summary-row.tax-row .total-label,
.summary-row.tax-row .total-val {
    font-weight: 400;
    color: #999;
    font-size: 0.85rem;
}

.summary-row.subtotal-row .total-label,
.summary-row.subtotal-row .total-val {
    font-weight: 800;
    color: #111;
}

.item-product-info {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.item-img-wrapper {
    position: relative;
    width: 140px; 
    height: 175px;
    border-radius: 12px;
    overflow: hidden;
    background: #fdf2f2;
    flex-shrink: 0;
}

.item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
}

.item-meta {
    padding-top: 0.5rem;
}

.item-meta h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.item-details {
    font-size: 0.8rem;
    color: #bbb;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    line-height: 1.4;
}

.item-price, .item-total {
    font-size: 1.1rem;
    font-weight: 800;
    padding-top: 0.5rem;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid #eee;
    width: fit-content;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
}

.qty-btn {
    cursor: pointer;
    font-size: 1.2rem;
    color: #111;
    user-select: none;
    font-weight: 600;
}

.qty-val {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-note-area {
    margin-top: 4rem;
}

.cart-note-area label {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cart-note-area textarea {
    width: 100%;
    max-width: 500px;
    padding: 1.5rem;
    border-radius: 30px;
    border: 1px solid #eee;
    font-family: inherit;
    resize: none;
    height: 60px;
}

/* Cart Sidebar (Reference Pink) */
.cart-sidebar {
    background: #fdf2f2;
    padding: 5rem 4rem;
    border-radius: 32px;
    height: fit-content;
    position: sticky;
    top: 4rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.4);
}

.sidebar-summary h2 {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 900;
    padding-bottom: 1.2rem;
    border-bottom: 4px solid black;
    margin-bottom: 2.5rem;
    display: inline-block;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.total-label {
    font-size: 0.9rem;
    color: #333;
    font-weight: 800;
}

.total-val {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}

.grand-total-val {
    font-size: 2.2rem !important;
}

.summary-notice {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.terms-check {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: #444;
    cursor: pointer;
    font-weight: 600;
}

.terms-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #000;
}

.terms-check a {
    color: #fca5a5;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Animations for Interactivity */
.cart-item {
    transition: all 0.4s ease;
}

.cart-item:hover {
    background: rgba(0,0,0,0.01);
    transform: translateX(10px);
}

.item-img-wrapper {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-item:hover .item-img-wrapper {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.qty-control {
    transition: all 0.3s ease;
    background: white;
}

.qty-control:hover {
    border-color: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.summary-row.grand-total-row {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,1);
}

.summary-row.grand-total-row .total-label {
    font-size: 1rem;
    font-weight: 950;
    color: #000;
}

.summary-row.grand-total-row .total-val {
    font-size: 2.2rem;
    font-weight: 950;
    color: #000;
}

.checkout-btn {
    width: 100%;
    background: #111;
    color: white;
    border: none;
    padding: 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.checkout-btn:hover {
    background: black;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.variant-btn.sold-out-blur {
    opacity: 0.45;
    filter: blur(1.5px);
    cursor: not-allowed;
}

.pdp-rich-description {
    line-height: 1.6;
    color: #444;
}

.pdp-rich-description p {
    margin-bottom: 1.5rem;
}

.pdp-rich-description ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}
.site-footer {
    background: #fdf2f2; /* Cream background */
    color: #000; /* Black text */
    padding: 6rem 4rem 2rem;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    position: relative;
    overflow: hidden;
    margin-top: 8rem;
    box-sizing: border-box;
    width: 100%;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.footer-logo-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-area span {
    font-family: var(--luxury-font);
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.05em;
}

.footer-nav-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col a {
    color: rgba(0,0,0,0.5); /* Semi-transparent black links */
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-col a:hover {
    color: #000;
    transform: translateX(5px);
}

.footer-actions-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2.5rem;
}

.app-store-badge {
    height: 45px;
    opacity: 0.8;
    transition: opacity 0.3s;
    cursor: pointer;
}

.app-store-badge:hover {
    opacity: 1;
}

.order-now-pill {
    background: #000;
    color: #fff;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.order-now-pill .arrow-box {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.order-now-pill:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.footer-massive-text {
    margin-top: 4rem;
    text-align: center;
    pointer-events: none;
    user-select: none;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Localize overflow */
}

.footer-massive-text h1 {
    font-family: var(--luxury-font);
    font-size: clamp(6rem, 18vw, 22rem);
    font-weight: 900;
    color: #000;
    line-height: 0.8;
    margin: 0;
    margin-bottom: -4rem;
    letter-spacing: -0.05em;
    opacity: 0.05; /* Very low opacity black for elegance */
    transform: translateY(15%);
    white-space: nowrap;
    display: block;
    width: 100%;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(0,0,0,0.05); /* Black divider */
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(0,0,0,0.3); /* Grey copyright */
    letter-spacing: 0.1em;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .cart-page-content {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
}

@media (max-width: 1024px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .footer-nav-cols {
        justify-content: center;
    }
    .footer-actions-area {
        align-items: center;
    }
    .footer-col {
        align-items: center;
    }
}

/* Featured Product Section */
.featured-product-section {
    padding: 10rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid #eee;
}

.featured-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8rem;
    color: #000;
}

@media (max-width: 768px) {
    .featured-header h2 {
        font-size: 2.2rem;
        margin-bottom: 4rem;
    }
    .featured-grid {
        gap: 4rem;
    }
}

.featured-grid.single-product-entry {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 8rem;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 8rem;
}

.featured-media {
    position: relative;
    background: #fdf2f2;
    border-radius: 40px;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.featured-img-container {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-img-container img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.featured-media:hover .featured-img-container img {
    transform: scale(1.05);
}

.featured-media-dots {
    display: flex;
    gap: 0.8rem;
    margin-top: 3rem;
}

.media-dot {
    width: 6px;
    height: 6px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
}

.media-dot.active {
    background: #000;
    transform: scale(1.5);
}

.featured-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.featured-name {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    margin: 0;
}

.featured-rating {
    display: flex;
    gap: 0.3rem;
    color: #000;
    font-size: 1.2rem;
}

.featured-price {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.option-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #999;
}

.color-swatches {
    display: flex;
    gap: 1rem;
}

.swatch {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.swatch.active {
    border-color: #000;
    transform: scale(1.2);
}

.size-pills {
    display: flex;
    gap: 1rem;
}

.pill {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid #eee;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pill.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.pill.out-of-stock {
    opacity: 0.2;
    text-decoration: line-through;
    cursor: not-allowed;
}

.action-buttons {
    margin-top: 1rem;
}

.btn-main.add-tobag {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-main.add-tobag:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.size-chart-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    color: #000;
    width: fit-content;
}

.care-details {
    margin-top: 1.2rem;
    border-top: 1px solid #eee;
    padding-top: 1.2rem;
}

.care-details p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.care-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.care-list li {
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .featured-info {
        text-align: center;
        align-items: center;
    }
    .featured-name {
        font-size: 2.5rem;
    }
}

/* Collections Listing Page */
.collections-hero {
    position: relative;
    height: 35vh;
    min-height: 300px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6rem;
    background: #fff; /* Clean white background */
}

.collections-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.collections-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.collections-hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #000; /* Bold black text */
}

.collections-hero-overlay h1 {
    font-family: 'Inter', sans-serif;
    font-size: 5.5rem;
    font-weight: 950;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
}

.breadcrumb a {
    color: #000;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span:last-child {
    opacity: 0.5;
}

.container-collections {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem 10rem;
}

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

.collection-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.collection-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1.2;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 4px;
}

.collection-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.collection-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 850;
    color: #000;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0;
}

.collection-item:hover {
    transform: translateY(-10px);
}

.collection-item:hover .collection-image-wrapper img {
    transform: scale(1.08);
}

@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .collections-hero-overlay h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-container {
    background: #fff;
    min-height: 100vh;
    padding: 10rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem; /* Harmonized with department pages */
    font-weight: 800;
    letter-spacing: -0.05em;
    text-align: center;
    margin: 4rem auto 8rem;
    color: #000;
    text-transform: uppercase;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8rem;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.info-block h3 {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.info-block p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #111;
}

.form-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
    border-bottom: 1px solid #000;
    padding-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
}

.form-group input, .form-group select, .form-group textarea {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 1.1rem;
    outline: none;
    width: 100%;
}

.checkbox-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.contact-submit-btn {
    margin-top: 4rem;
    background: #000;
    color: #fff;
    padding: 1rem 4rem; /* Pill shape */
    border-radius: 50px;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.contact-large-footer {
    margin-top: 15rem;
    display: flex;
    flex-direction: column; /* Centered column layout */
    align-items: center;
    gap: 2rem;
    padding-bottom: 4rem;
    text-align: center;
}

.large-text-item h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem; /* Appropriately smaller size */
    font-weight: 800;
    letter-spacing: -0.04em;
    margin: 0;
}

.small-meta-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 6rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
}

.meta-links {
    display: flex;
    gap: 2.5rem;
}

.meta-links a {
    color: black;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .form-field-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
}

/* About Us & Legal Pages */
.about-hero {
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.about-hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: 5.5rem;
    font-weight: 950;
    color: #000;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.about-container, .legal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10rem 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 850;
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.legal-page.centered {
    text-align: center;
}

.legal-page.centered .legal-text {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legal-page.centered .legal-text p {
    margin-left: auto;
    margin-right: auto;
}

.legal-page h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 2rem 0 6rem;
    letter-spacing: -0.05em;
    color: #000;
}

.legal-container span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #999;
}

.legal-text h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.legal-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    text-align: justify; /* Editorial Justification */
}

/* 11. UNIVERSAL MOBILE RESPONSIVENESS */

@media (max-width: 1024px) {
    .nav-container { padding: 0 2rem; }
    .mega-menu { width: 90vw; }
    .featured-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
}

@media (max-width: 991px) {
    :root { --sidebar-width: 0px; }
    .sidebar { display: none; }
    .content { margin-left: 0; width: 100%; padding-right: 0; }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 2rem;
        min-height: auto;
        gap: 2rem;
    }

    .product-info {
        align-items: center;
        margin: 0 auto;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .colors, .controls {
        justify-content: center;
    }

    .hero-image-container {
        order: -1; /* Image on top */
        height: auto;
    }

    .hero-image {
        transform: none;
        max-height: 40vh;
        margin-bottom: 2rem;
    }

    .pagination { display: none; } /* Hide dots on mobile */

    .hero-arrows {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 2rem;
        z-index: 2000;
        position: relative;
        pointer-events: auto;
    }

    .hero-arrows button {
        background: black;
        color: white;
        border: none;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
    }
    
    .nav-links.active { right: 0; }
    .nav-links li { padding: 0; }
    .nav-links a { font-size: 1.5rem; opacity: 1; }
    .has-dropdown .mega-menu { display: none !important; }

    .menu-icon { display: flex; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1000; }
    .menu-icon span { width: 30px; height: 2px; background: #000; transition: 0.3s; }
    .menu-icon.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-icon.active span:nth-child(2) { transform: rotate(-45deg) translate(5px, -5px); }

    .mobile-logo {
        display: block !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-grid { grid-template-columns: 1fr; gap: 4rem; }
    .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem 2rem; }
    
    .footer-top-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .footer-nav-cols { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .legal-page h1, .about-hero h1, .collections-hero-overlay h1, .contact-hero-text { font-size: 2.8rem; }
    .custom-cursor { display: none !important; }
    body { cursor: auto; }
    
    .container-collections { padding: 0 2rem 6rem; }
    .featured-product-section { padding: 6rem 2rem; }
    
    .footer-bottom-bar { flex-direction: column; gap: 2rem; text-align: center; }
    
    .large-text-item h2 {
        font-size: 1.8rem !important; /* Cap giant contact text on mobile */
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    .collections-grid { grid-template-columns: 1fr; }
    .featured-name { font-size: 1.8rem; }
    .pill { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
    
    .large-text-item h2 {
        font-size: 1.5rem !important;
        word-break: break-all;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    width: 60px;
    height: 60px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

@media (min-width: 1025px) {
    .whatsapp-float {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}
