:root {
    /* Color Palette */
    --primary-color: #7A1A1A; /* Maroon Text Color from Logo */
    --accent-color: #C5A059; /* Gold Round Color from Logo */
    --accent-hover: #b08d4b;
    --bg-color: #FAFAFA;
    --surface-color: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(122, 26, 26, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    position: relative;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

img, video, canvas, svg, iframe {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* Header Styles */
.site-header {
    width: 100%;
    z-index: 1100;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-header.scrolled .nav-container-wide {
    height: 72px;
}

.site-header.scrolled .nav-logo img,
.site-header.scrolled .brand-logo-left img {
    max-height: 64px !important;
    max-width: 260px !important;
}

.site-header.scrolled .top-bar-dark {
    padding: 0.35rem 0;
    font-size: 0.75rem;
}

.top-bar-dark {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    padding: 0.6rem 0;
    transition: padding 0.3s ease, font-size 0.3s ease;
}

.top-bar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left a {
    color: rgba(255, 255, 255, 0.9);
}
.top-left a:hover {
    color: var(--accent-color);
}
.separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.social-icons-header {
    display: flex;
    gap: 1.5rem;
}
.social-icons-header a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}
.social-icons-header a:hover {
    color: var(--accent-color);
}

.top-right {
    display: flex;
    align-items: center;
}
.currency {
    cursor: pointer;
}
.currency i {
    margin-left: 0.3rem;
    font-size: 0.7rem;
}
.top-cart {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}
.top-cart:hover {
    color: var(--accent-color);
}
.top-cart i {
    margin: 0 0.5rem;
}
.cart-badge {
    background: var(--accent-color);
    border: none;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.7rem;
    color: white;
    font-weight: 600;
}

/* Main Navbar */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.nav-container-wide {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100px; /* Use fixed height so children can stretch */
    transition: height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.brand-logo-left {
    display: flex;
    align-items: center;
}

.brand-logo-left img,
.nav-logo img {
    display: block;
    max-height: 92px !important;
    max-width: 320px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), max-width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-logo-left .brand-text h1 {
    font-family: var(--font-heading);
    color: #000;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 700;
}
.brand-logo-left .brand-text h1 span {
    color: var(--primary-color);
}
.brand-logo-left .brand-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    height: 100%;
}
.nav-menu li {
    display: flex;
    align-items: stretch; /* Stretch a tags to full height of navbar */
}
.nav-menu a {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-menu li.active a, .nav-menu a:hover {
    background-color: #F6F1E6; /* Light gold background block */
    color: var(--primary-color);
}

/* Products Dropdown Navigation */
.nav-menu li.has-dropdown {
    position: relative;
}
.nav-menu li.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #ffffff;
    border-top: 3px solid var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 8px 8px;
    padding: 0.5rem 0;
    list-style: none;
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1500;
}
.nav-menu li.has-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.nav-menu li.has-dropdown .dropdown-menu li {
    display: block;
    width: 100%;
}
.nav-menu li.has-dropdown .dropdown-menu li a {
    font-size: 0.82rem;
    font-weight: 600;
    color: #333333;
    padding: 0.75rem 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    height: auto;
}
.nav-menu li.has-dropdown .dropdown-menu li a:hover {
    background-color: #F6F1E6;
    color: var(--primary-color);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.7rem;
}

/* Mega Menu Navigation (Fallback / Detailed) */
.nav-menu li.has-mega-menu {
    position: static;
}
.main-nav {
    position: relative;
}
.mega-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 3px solid var(--accent-color);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1200;
    padding: 2.5rem 0;
}
.nav-menu li.has-mega-menu:hover .mega-menu-wrapper {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.mega-menu-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}
.mega-menu-col h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.9rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #f2e6d5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mega-menu-col h4 span.count-badge {
    font-size: 0.7rem;
    background: #f4ece1;
    color: var(--primary-color);
    padding: 1px 6px;
    border-radius: 10px;
    font-family: var(--font-body);
}
.mega-menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.mega-menu-col ul li a {
    font-size: 0.78rem;
    font-weight: 500;
    color: #555;
    padding: 0.25rem 0;
    text-transform: none;
    display: block;
    transition: all 0.2s;
}
.mega-menu-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
    background: transparent;
}
.mega-menu-col .view-all-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mega-menu-col .view-all-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
.mega-banner-card {
    background: linear-gradient(135deg, #7A1A1A 0%, #4a0c0c 100%);
    color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.mega-banner-card h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}
.mega-banner-card p {
    font-size: 0.75rem;
    color: #eee;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.mega-banner-card .btn-mega {
    background: var(--accent-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.nav-search {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-search input {
    border: 1px solid #e0e0e0;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    font-size: 0.85rem;
    border-radius: 2px;
    outline: none;
    width: 200px;
}
.nav-search input::placeholder {
    color: #aaaaaa;
}
.nav-search button {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
}

/* Hero Section - Slider */
.slider-hero {
    margin-top: 0;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.active-slide {
    opacity: 1;
}

.hero-slider-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.slider-controls {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 60;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.active-dot {
    border-color: var(--accent-color);
    background: var(--accent-color);
}

.dot-line {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    margin-left: 10px;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
    z-index: 50;
    color: #fff;
    text-align: left;
    pointer-events: auto;
}

.editorial-wrapper {
    max-width: 750px;
}

/* Default visible states ensuring content is never hidden */
.editorial-wrapper .tag-line,
.editorial-wrapper .line-1,
.editorial-wrapper .line-2,
.editorial-wrapper .btn-editorial {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth reveal animation when slide changes */
.slider-content.animate-text .tag-line {
    animation: textRevealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.slider-content.animate-text .line-1 {
    animation: textRevealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.15s;
}
.slider-content.animate-text .line-2 {
    animation: textRevealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.3s;
}
.slider-content.animate-text .btn-editorial {
    animation: textRevealUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.45s;
}

@keyframes textRevealUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tag-line {
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 50px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.tag-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background-color: var(--accent-color);
}

.editorial-title {
    margin: 0 0 2.5rem 0;
    line-height: 1.05;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.line-1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    line-height: 1.15;
}

.line-2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    font-style: italic;
    font-weight: 600;
    color: #F7E7CE;
    display: block;
    margin-top: 0.4rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.btn-editorial {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 3rem;
    background-color: var(--accent-color);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    position: relative;
    z-index: 10;
}

.btn-editorial:hover {
    background-color: #A8813C;
    color: #ffffff;
    gap: 22px;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.btn-editorial:active {
    transform: translateY(0) scale(0.98);
    box-shadow: inset 0 -80px 0 0 var(--accent-color), 0 5px 15px rgba(0,0,0,0.1);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 10;
}

/* Hero Top Right Logo */
.hero-top-right-logo {
    position: absolute;
    top: 2.8rem;
    right: 4rem;
    z-index: 55;
    pointer-events: none;
}

.hero-top-right-logo img {
    max-height: 140px;
    max-width: 420px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.55));
}

@media (max-width: 992px) {
    .hero-top-right-logo {
        top: 2rem;
        right: 2.5rem;
    }
    .hero-top-right-logo img {
        max-height: 95px;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .hero-top-right-logo {
        top: 1.2rem;
        right: 1.2rem;
    }
    .hero-top-right-logo img {
        max-height: 65px;
        max-width: 200px;
    }
}

.est-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    outline: none;
    text-decoration: none;
    vertical-align: middle;
    line-height: 1.4;
    box-sizing: border-box;
}

.btn:active {
    transform: scale(0.96) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(122, 26, 26, 0.25);
}

.btn-primary:hover {
    background-color: #610B0B;
    border-color: #610B0B;
    box-shadow: 0 8px 25px rgba(122, 26, 26, 0.4);
    transform: translateY(-3px);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(122, 26, 26, 0.25);
    transform: translateY(-3px);
}

.brand-story {
    background-color: var(--surface-color);
    padding: 0 0 1rem 0;
    margin-top: -5rem;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.story-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    gap: 4rem;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/4;
    mix-blend-mode: multiply;
}

.story-image.left {
    transform: translateY(-30px);
}

.story-image.right {
    transform: translateY(30px);
}

.story-content {
    flex: 1.2;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.brand-story .story-content,
.mens-story .story-content {
    position: relative;
}

.brand-story .story-content::before,
.mens-story .story-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    max-width: 100%;
    max-height: 100%;
    background: url('images/logoooooo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.09;
    pointer-events: none;
    z-index: 0;
    filter: contrast(110%);
}

.brand-story .story-content > *,
.mens-story .story-content > * {
    position: relative;
    z-index: 1;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--primary-color);
    margin: 1rem 0;
    line-height: 1.2;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
    .story-container {
        flex-direction: column;
        gap: 2rem;
    }
    .story-image {
        width: 80%;
        margin: 0 auto;
    }
    .story-image.left, .story-image.right {
        transform: none;
    }
}

/* Collections Section */
.collections {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.5rem 1rem 0 1rem;
}

.small-heading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 30px;
    background: transparent;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.small-heading::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.3), transparent);
    animation: shineBadge 3s infinite;
}

@keyframes shineBadge {
    0% { left: -100%; }
    100% { left: 100%; }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* E-Commerce Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    group: hover;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 380px;
    background-color: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    transition: bottom var(--transition-normal);
}

.product-card:hover .product-actions {
    bottom: 0;
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(122, 26, 26, 0.4); }
    100% { box-shadow: 0 0 0 15px rgba(122, 26, 26, 0); }
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    animation: pulseRing 1.5s infinite;
}

.action-btn:active {
    transform: scale(0.9);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.category {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

@keyframes pulseRingAccent {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    100% { box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
}

.add-cart-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-cart-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: rotate(180deg);
    animation: pulseRingAccent 1.5s infinite;
}

.add-cart-btn:active {
    transform: rotate(180deg) scale(0.9);
}

/* Collections 3-Column Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    group: hover;
}

.collection-image {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-info {
    text-align: center;
    padding: 0.5rem 0.5rem;
}

.collection-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.collection-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.collection-info p {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.5rem auto 1rem auto;
    max-width: 320px;
}

.collection-link {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-bottom: 3px;
    border-bottom: 1.5px solid transparent;
    transition: all 0.3s ease;
}

.collection-card:hover .collection-link {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    gap: 0.75rem;
}

@media (max-width: 900px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Offers Section */
.offers-section {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 5rem; /* Gap above the section */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.offers-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    z-index: 1;
}

.offers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.offers-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
    color: white;
}

.offers-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.offers-content h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.offers-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .offers-content h2 {
        font-size: 3rem;
    }
    .offers-section {
        height: 500px;
    }
    .offers-bg {
        background-attachment: scroll; /* Disable parallax on mobile */
    }
}

/* Premium Footer */
.footer-premium, .site-footer {
    background-color: #FAF7F2;
    color: #333;
    padding: 0;
    font-family: var(--font-body);
    width: 100%;
}

.footer-premium-top {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 3rem 5% 3.5rem 5%;
    text-align: center;
    background-color: #FAF7F2;
}

.footer-newsletter h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.footer-newsletter p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border: 1px solid #ddd;
    border-right: none;
    background-color: #fff;
    color: #333;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 1.1rem 2.2rem;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #a38141;
}

.footer-premium-main, .footer-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.1fr;
    gap: 3rem;
    max-width: 1350px;
    margin: 0 auto;
    padding: 4rem 5% 3rem 5%;
    align-items: start;
    text-align: left;
}

.footer-logo {
    margin-bottom: 1.2rem;
}

.footer-tagline {
    color: #444;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.footer-executive-info {
    margin-top: 1rem;
    font-size: 0.88rem;
    color: #444;
    line-height: 1.7;
    background: rgba(0,0,0,0.03);
    padding: 0.8rem 1rem;
    border-left: 3px solid var(--accent-color);
    border-radius: 0 4px 4px 0;
}

.footer-executive-info a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 1.2rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    color: #444;
    text-decoration: none;
    transition: all 0.3s;
    background: #fff;
}

.footer-socials a:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.85rem;
}

.footer-col ul li a {
    color: #555;
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-col ul li a::before {
    content: '\f105'; /* FontAwesome angle-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.75rem;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    font-weight: 600;
    transform: translateX(4px);
}

.footer-premium-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1350px;
    margin: 0 auto;
    padding: 1.8rem 5%;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-premium-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.footer-payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.6rem;
    color: #777;
}

@media (max-width: 1024px) {
    .footer-premium-main, .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-premium-main, .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-premium-bottom {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-right: 1px solid #ddd;
        margin-bottom: 0.5rem;
    }
}

/* Scroll Reveal Animations */
.reveal-from-left {
    opacity: 0;
    transform: translateX(-150px);
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-from-right {
    opacity: 0;
    transform: translateX(150px);
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-up {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Reviews Section - 3D Stacked Cards */
.reviews-section {
    padding: 3rem 1rem;
    background-color: var(--bg-color);
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.reviews-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
}

.reviews-container {
    position: relative;
    max-width: 800px;
    height: 350px;
    margin: 0 auto;
    perspective: 1200px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--surface-color);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: center top;
    border-top: 4px solid var(--accent-color);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 4rem;
    color: rgba(197, 160, 89, 0.15);
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 2rem;
    z-index: 2;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 2;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.reviewer-details h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.reviewer-details span {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Single Card Display States */
.card-active {
    opacity: 1;
    z-index: 10;
    transform: translateX(0);
    pointer-events: auto;
}

.card-hidden {
    opacity: 0;
    z-index: 5;
    transform: translateX(30px);
    pointer-events: none;
}

.card-hidden-prev {
    opacity: 0;
    z-index: 5;
    transform: translateX(-30px);
    pointer-events: none;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-nav-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

@media (max-width: 768px) {
    .reviews-container {
        height: 400px;
        padding: 0 1rem;
    }
    .review-text {
        font-size: 1.2rem;
    }
    .review-card {
        padding: 2rem;
    }
}

/* Social 3D Carousel Section (#DilipKumarRoyalty) */
.social-3d-section {
    padding: 4.5rem 0 5.5rem;
    background-color: var(--bg-color);
    overflow: hidden;
    perspective: 1200px;
    position: relative;
}

.carousel-3d-container {
    position: relative;
    width: 250px;
    height: 350px;
    margin: 2.5rem auto;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.carousel-3d-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: spinCarousel 22s linear infinite;
}

.carousel-3d-container:hover .carousel-3d-spinner {
    animation-play-state: paused;
}

.carousel-3d-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 60deg)) translateZ(280px);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.22);
    display: block;
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.3);
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.carousel-3d-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.carousel-3d-card .social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    font-size: 1.5rem;
    font-weight: bold;
}

.carousel-3d-card:hover img {
    transform: scale(1.08);
}

.carousel-3d-card:hover .social-overlay {
    opacity: 1;
}

@keyframes spinCarousel {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@media (max-width: 768px) {
    .carousel-3d-container {
        width: 180px;
        height: 260px;
    }
    .carousel-3d-card {
        transform: rotateY(calc(var(--i) * 60deg)) translateZ(190px);
    }
}

/* Global Responsive Rules */
/* Global Responsive Rules */
@media (max-width: 768px) {
    .nav-links, .nav-icons {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==========================================================================
   LUXURY EXTENSIONS: REMAINING PAGES DESIGN SYSTEM (DILIP KUMAR 1953)
   ========================================================================== */

/* --- Mobile Navigation Drawer & Toggle --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--surface-color);
    z-index: 2000;
    box-shadow: 5px 0 25px rgba(0,0,0,0.15);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    left: 0;
}

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-drawer-links {
    list-style: none;
    padding: 1rem 0;
}

.mobile-drawer-links li a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    border-bottom: 1px solid #fafafa;
    transition: all 0.2s ease;
}

.mobile-drawer-links li.active a,
.mobile-drawer-links li a:hover {
    color: var(--primary-color);
    background-color: #FDF9F2;
    padding-left: 2rem;
}

.mobile-drawer-footer {
    margin-top: auto;
    padding: 1.5rem;
    background-color: #FAFAFA;
    border-top: 1px solid #eee;
}

/* Header badge indicator */
.cart-badge-count {
    background: var(--accent-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

/* --- Page Banner Header --- */
.page-banner {
    position: relative;
    background: linear-gradient(135deg, #2A0909 0%, #4A1010 60%, #150404 100%);
    color: #FFFFFF;
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at center, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-banner-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20.5H40v2H22V40h-2V20.5z' fill='%23C5A059' fill-fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.banner-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #FFFFFF;
    font-weight: 700;
}

.banner-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 620px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs span {
    color: var(--accent-color);
}

/* --- Category Sub-Navigation Pills --- */
.category-pills-bar {
    background-color: var(--surface-color);
    border-bottom: 1px solid #ECECEC;
    padding: 1rem 0;
    position: sticky;
    top: 100px;
    z-index: 90;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.pills-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.pills-container::-webkit-scrollbar {
    display: none;
}

.pill-btn {
    white-space: nowrap;
    padding: 0.5rem 1.4rem;
    border-radius: 30px;
    border: 1px solid #E0E0E0;
    background: #FFFFFF;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pill-btn:hover, .pill-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 3px 10px rgba(122, 26, 26, 0.2);
}

/* --- Catalog Layout (Sidebar + Grid) --- */
.catalog-section {
    max-width: 1350px;
    margin: 2.5rem auto;
    padding: 0 2rem;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.filter-sidebar {
    background: var(--surface-color);
    padding: 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid #EAEAEA;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 170px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #EEE;
    margin-bottom: 1.5rem;
}

.filter-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
}

.clear-filters-btn {
    background: none;
    border: none;
    font-size: 0.8rem;
    color: var(--accent-color);
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}

.filter-group {
    margin-bottom: 1.8rem;
    border-bottom: 1px solid #F3F3F3;
    padding-bottom: 1.4rem;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.88rem;
    color: #555;
    cursor: pointer;
    transition: color 0.2s;
}

.filter-checkbox-label:hover {
    color: var(--primary-color);
}

.filter-checkbox-label input {
    margin-right: 0.6rem;
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.filter-count {
    margin-left: auto;
    font-size: 0.75rem;
    color: #999;
}

/* Color Swatches Filter */
.color-swatch-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.color-swatch {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.color-swatch:hover, .color-swatch.active {
    transform: scale(1.15);
    border-color: #333;
}

/* Price Range Slider */
.price-range-slider {
    width: 100%;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 0.5rem;
}

/* Catalog Top Sort Bar */
.catalog-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface-color);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid #EAEAEA;
    margin-bottom: 1.8rem;
}

.catalog-result-count {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.catalog-sort-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sort-select {
    padding: 0.5rem 1.2rem;
    border: 1px solid #DDD;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    background-color: #FFF;
    color: var(--text-main);
    outline: none;
    cursor: pointer;
}

/* Product Card Custom Badges & Actions */
.product-badge-luxury {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #A8813C 100%);
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-badge-royal {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-card .action-btn.active {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
    height: 380px;
}

.product-card .product-image img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-swatches-preview {
    display: flex;
    gap: 5px;
    margin-top: 0.5rem;
}

.swatch-mini {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #CCC;
}

.btn-quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(122, 26, 26, 0.95);
    color: #FFF;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-card:hover .btn-quick-view {
    transform: translateY(0);
}

/* --- Craftsmanship / Spotlight Box --- */
.craft-spotlight-banner {
    background: linear-gradient(to right, #1F0707, #360D0D);
    color: #FFF;
    border-radius: var(--radius-md);
    padding: 3rem;
    margin: 3.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.craft-spotlight-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.craft-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #FFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.craft-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.craft-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.craft-feat-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.craft-feat-item i {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-top: 4px;
}

.craft-feat-item h5 {
    font-size: 0.95rem;
    color: #FFF;
    margin-bottom: 0.2rem;
}

.craft-feat-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   HERITAGE PAGE STYLES
   ========================================================================== */
.heritage-intro-section {
    max-width: 1000px;
    margin: 4rem auto 2rem;
    padding: 0 2rem;
    text-align: center;
    position: relative;
}

.heritage-intro-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    max-width: 90%;
    max-height: 90%;
    background: url('images/logoooooo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    filter: contrast(110%);
}

.heritage-intro-section > * {
    position: relative;
    z-index: 1;
}

.heritage-intro-section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.heritage-intro-section p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.9;
}

.heritage-timeline {
    position: relative;
    max-width: 1100px;
    margin: 4rem auto;
    padding: 2rem;
}

.heritage-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
}

.timeline-block {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.timeline-block:nth-child(even) {
    justify-content: flex-end;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
    z-index: 10;
}

.timeline-card {
    width: 44%;
    background: var(--surface-color);
    padding: 2.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid #EAEAEA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.timeline-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.timeline-img-box {
    margin-top: 1rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 180px;
}

.timeline-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heritage-pillars {
    background-color: #F8F5F0;
    padding: 5rem 2rem;
    margin-top: 4rem;
}

.pillars-grid {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pillar-card {
    background: var(--surface-color);
    padding: 2.5rem 1.8rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid #ECE3D4;
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #FAF6EF;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.4);
}

.pillar-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.pillar-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ==========================================================================
   CONTACT & BOUTIQUES PAGE STYLES
   ========================================================================== */
.boutiques-section {
    max-width: 1250px;
    margin: 3.5rem auto;
    padding: 0 2rem;
}

.boutiques-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.boutique-card {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #EAEAEA;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boutique-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.boutique-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.boutique-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boutique-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--primary-color);
    color: #FFF;
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

.boutique-info {
    padding: 1.5rem;
}

.boutique-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.boutique-detail-item {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.boutique-detail-item i {
    color: var(--accent-color);
    margin-top: 3px;
    font-size: 0.95rem;
}

.boutique-link {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-appointment-wrapper {
    max-width: 1250px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-box {
    background: var(--surface-color);
    padding: 2.8rem;
    border-radius: var(--radius-md);
    border: 1px solid #EAEAEA;
    box-shadow: var(--shadow-sm);
}

.contact-form-box h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.input-field-group {
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.input-field-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-field-group input,
.input-field-group select,
.input-field-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #D5D5D5;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
}

.input-field-group input:focus,
.input-field-group select:focus,
.input-field-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(122, 26, 26, 0.1);
}

/* FAQ Accordion */
.faq-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid #EAEAEA;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.4rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: #FAFAFA;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.8rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 1.8rem 1.5rem;
    max-height: 300px;
}

/* ==========================================================================
   SHOPPING CART & CHECKOUT STYLES
   ========================================================================== */
.cart-section {
    max-width: 1250px;
    margin: 3.5rem auto;
    padding: 0 2rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

.cart-items-box {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    border: 1px solid #EAEAEA;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.cart-table-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1.2fr 1fr 40px;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F0F0F0;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.cart-item-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1.2fr 1fr 40px;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #F0F0F0;
}

.cart-product-info {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.cart-product-img {
    width: 80px;
    height: 100px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.cart-product-details h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.cart-product-details span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #DDD;
    border-radius: 4px;
    overflow: hidden;
}

.cart-qty-control button {
    width: 28px;
    height: 28px;
    background: #FAFAFA;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.cart-qty-control button:hover {
    background: #EAEAEA;
}

.cart-qty-control span {
    width: 32px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
}

.cart-item-price, .cart-item-total {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.btn-remove-item {
    background: none;
    border: none;
    color: #AAA;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.btn-remove-item:hover {
    color: var(--primary-color);
}

.cart-empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.cart-empty-state i {
    font-size: 4rem;
    color: #DDD;
    margin-bottom: 1.5rem;
}

.cart-empty-state h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Order Summary Box */
.order-summary-card {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    border: 1px solid #EAEAEA;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 130px;
}

.order-summary-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    padding-bottom: 1rem;
    border-bottom: 1px solid #EEE;
    margin-bottom: 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #555;
}

.summary-line.total-line {
    border-top: 2px solid #EEE;
    padding-top: 1.2rem;
    margin-top: 1.2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.royal-gift-box-option {
    background: #FAF6EF;
    border: 1px dashed var(--accent-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin: 1.5rem 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.royal-gift-box-option input {
    margin-top: 4px;
    accent-color: var(--primary-color);
}

.royal-gift-box-option label {
    font-size: 0.85rem;
    color: #444;
    cursor: pointer;
}

.coupon-apply-group {
    display: flex;
    gap: 8px;
    margin: 1.5rem 0;
}

.coupon-apply-group input {
    flex: 1;
    padding: 0.6rem 0.8rem;
    border: 1px solid #DDD;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.coupon-apply-group button {
    padding: 0.6rem 1.2rem;
    background: var(--primary-color);
    color: #FFF;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.cart-assurances-section {
    max-width: 1200px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
}

.cart-assurances-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ==========================================================================
   AUTH PORTAL (LOGIN / REGISTER / TRACK ORDER)
   ========================================================================== */
.auth-page-section {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.auth-split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid #EAEAEA;
    min-height: 620px;
}

.auth-editorial-side {
    position: relative;
    background: linear-gradient(145deg, #2A0909 0%, #4D1212 100%);
    color: #FFFFFF;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-editorial-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at top left, rgba(197, 160, 89, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.auth-editorial-content {
    position: relative;
    z-index: 2;
}

.auth-editorial-content h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #FFF;
}

.auth-perks-list {
    margin-top: 2rem;
    list-style: none;
}

.auth-perks-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.auth-perks-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.auth-form-side {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-tabs-nav {
    display: flex;
    border-bottom: 2px solid #F0F0F0;
    margin-bottom: 2rem;
}

.auth-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 1rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.auth-tab-btn.active {
    color: var(--primary-color);
}

.auth-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLES (PDP)
   ========================================================================== */
.pdp-section {
    max-width: 1300px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.pdp-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.pdp-gallery-wrapper {
    display: flex;
    gap: 1.5rem;
}

.pdp-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80px;
}

.pdp-thumb {
    width: 80px;
    height: 105px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}

.pdp-thumb:hover, .pdp-thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pdp-main-image-box {
    flex: 1;
    height: 620px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: #FFF;
    border: 1px solid #ECECEC;
}

.pdp-main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pdp-info-wrapper {
    display: flex;
    flex-direction: column;
}

.pdp-badge {
    align-self: flex-start;
    background: #FAF5EA;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.pdp-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 0.6rem;
}

.pdp-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
    font-size: 0.88rem;
}

.star-rating {
    color: #F5A623;
}

.pdp-price-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ECECEC;
}

.pdp-current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pdp-original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.pdp-tax-tag {
    font-size: 0.8rem;
    color: #777;
}

.pdp-option-group {
    margin-bottom: 1.6rem;
}

.pdp-option-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
    display: flex;
    justify-content: space-between;
}

.size-selector-pills {
    display: flex;
    gap: 0.6rem;
}

.size-pill {
    padding: 0.5rem 1.2rem;
    border: 1px solid #DDD;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.size-pill:hover, .size-pill.active {
    background: var(--primary-color);
    color: #FFF;
    border-color: var(--primary-color);
}

.pdp-actions-row {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.pdp-btn-cart {
    flex: 1;
    padding: 1.1rem;
    background: var(--primary-color);
    color: #FFF;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.pdp-btn-cart:hover {
    background: #601212;
}

.pdp-btn-wishlist {
    width: 55px;
    height: 55px;
    border: 1px solid #DDD;
    border-radius: var(--radius-sm);
    background: #FFF;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pdp-btn-wishlist:hover {
    border-color: var(--primary-color);
    background-color: #FAF5F5;
}

.pdp-specs-tabs {
    margin-top: 4rem;
    border-top: 1px solid #ECECEC;
    padding-top: 2rem;
}

.pdp-tab-headers {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid #EEE;
    margin-bottom: 2rem;
}

.pdp-tab-nav {
    background: none;
    border: none;
    padding-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    position: relative;
}

.pdp-tab-nav.active {
    color: var(--primary-color);
}

.pdp-tab-nav.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

/* ==========================================================================
   QUICK VIEW MODAL & TOAST NOTIFICATIONS
   ========================================================================== */
.quick-view-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.quick-view-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.quick-view-modal {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 850px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.quick-view-overlay.active .quick-view-modal {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F0F0F0;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: #DDD;
}

.quick-view-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.quick-view-image {
    height: 480px;
}

.quick-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-details {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-item {
    background: #1A0505;
    color: #FFFFFF;
    padding: 1rem 1.4rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    animation: slideInRight 0.3s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   ENHANCED HERITAGE PAGE STYLES
   ========================================================================== */
.heritage-crest-seal {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: radial-gradient(circle, #FAF5EA 0%, #F5E8D0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.heritage-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: -3rem auto 4rem;
    position: relative;
    z-index: 10;
    padding: 0 1.5rem;
}

.heritage-stat-card {
    background: var(--surface-color);
    border: 1px solid #ECE3D4;
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.heritage-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.heritage-stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.heritage-stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Weaving Process Section */
.process-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #EAEAEA;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.process-img-wrap {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.process-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.process-card:hover .process-img-wrap img {
    transform: scale(1.08);
}

.process-step-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #FFF;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
}

.process-info {
    padding: 1.5rem;
}

.process-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.process-info p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
}

/* Artisan Guild Section */
.artisan-section {
    background: linear-gradient(135deg, #2A0909 0%, #400E0E 100%);
    color: #FFFFFF;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.artisan-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at right center, rgba(197, 160, 89, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.artisan-content-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.artisan-quote-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    backdrop-filter: blur(8px);
}

.artisan-quote-box i.quote-icon {
    font-size: 2.4rem;
    color: var(--accent-color);
    opacity: 0.8;
    margin-bottom: 1rem;
    display: block;
}

.artisan-quote-box blockquote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.6;
    color: #FAF5EA;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.artisan-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.artisan-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    object-fit: cover;
}

.artisan-author h5 {
    font-size: 1.05rem;
    color: #FFF;
    margin-bottom: 2px;
}

.artisan-author span {
    font-size: 0.82rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Authenticity Certificate Box */
.authenticity-guarantee-card {
    background: #FAF7F2;
    border: 2px solid #E8DCBE;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    max-width: 1000px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.auth-seal-badge {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: radial-gradient(circle, #C5A059 0%, #9B7833 100%);
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(155, 120, 51, 0.4);
}

.auth-seal-badge i {
    font-size: 1.8rem;
    margin-bottom: 2px;
}

.auth-seal-badge span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   ENHANCED CONTACT & CONCIERGE STYLES
   ========================================================================== */
.concierge-section {
    max-width: 1250px;
    margin: -3rem auto 3rem;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.concierge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.concierge-card {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #ECE3D4;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.concierge-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.concierge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FAF6EF;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.2rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    transition: all 0.3s ease;
}

.concierge-card:hover .concierge-icon {
    background: var(--primary-color);
    color: #FFF;
}

.concierge-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.concierge-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.concierge-action {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Time Slot Selector */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-top: 0.4rem;
}

.time-slot-btn {
    padding: 0.6rem;
    background: #FFF;
    border: 1px solid #D5D5D5;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.time-slot-btn:hover, .time-slot-btn.active {
    background: var(--primary-color);
    color: #FFF;
    border-color: var(--primary-color);
}

/* Appointment Modal */
.appointment-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.appointment-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.appointment-modal-card {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 560px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.appointment-modal-overlay.active .appointment-modal-card {
    transform: scale(1);
}

.appointment-ticket-box {
    background: #FAF7F2;
    border: 1px dashed var(--accent-color);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    color: #555;
}

.ticket-row strong {
    color: var(--primary-color);
}

/* ==========================================================================
   ENHANCED AUTH & VIP PORTAL STYLES (LOGIN & REGISTER)
   ========================================================================== */
.password-input-wrap {
    position: relative;
    width: 100%;
}

.password-input-wrap input {
    padding-right: 42px;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
}

.password-toggle-btn:hover {
    color: var(--primary-color);
}

/* Password Strength Bar */
.pwd-strength-container {
    margin-top: 0.5rem;
}

.pwd-strength-bar {
    height: 4px;
    background: #EAEAEA;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.pwd-strength-progress {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.pwd-strength-label {
    font-size: 0.75rem;
    color: #777;
    display: flex;
    justify-content: space-between;
}

/* Social Login */
.social-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-social-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid #DDD;
    border-radius: var(--radius-sm);
    background: #FFF;
    font-size: 0.88rem;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-social-auth:hover {
    background: #FAFAFA;
    border-color: #999;
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.8rem 0;
    color: #AAA;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #EAEAEA;
}

.auth-divider::before {
    margin-right: 1em;
}

.auth-divider::after {
    margin-left: 1em;
}

/* VIP Tier Privileges Grid */
.vip-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.vip-tier-card {
    background: #FAF7F2;
    border: 1px solid #EAE2D2;
    border-radius: var(--radius-md);
    padding: 1.8rem 1.2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.vip-tier-card.featured {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    background: #FFFDF9;
}

.vip-tier-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.vip-tier-card .tier-criteria {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.vip-tier-card ul {
    list-style: none;
    text-align: left;
    font-size: 0.82rem;
    color: #555;
}

.vip-tier-card ul li {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.vip-tier-card ul li i {
    color: var(--accent-color);
    font-size: 0.75rem;
    margin-top: 4px;
}

/* Order Tracking Stepper */
.tracking-result-box {
    background: #FAF7F2;
    border: 1px solid #EAE0CE;
    border-radius: var(--radius-md);
    padding: 1.8rem;
    margin-top: 1.5rem;
}

.tracking-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2rem 0 1rem;
}

.tracking-stepper::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: #DDD;
    z-index: 1;
}

.tracking-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 25%;
}

.tracking-step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FFF;
    border: 2px solid #CCC;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #999;
    transition: all 0.3s ease;
}

.tracking-step.completed .tracking-step-dot {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #FFF;
}

.tracking-step.current .tracking-step-dot {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #FFF;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

.tracking-step-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #666;
}

/* Responsive Overrides (Tablets & Mobile - 992px) */
@media (max-width: 992px) {
    .nav-container-wide {
        height: 76px !important;
        padding: 0 1.2rem !important;
        align-items: center !important;
    }
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #FAF6EF;
        border: 1px solid var(--accent-color);
        border-radius: var(--radius-sm);
        color: var(--primary-color);
        font-size: 1.15rem;
        cursor: pointer;
        flex-shrink: 0;
    }
    .nav-logo .brand-logo-left img,
    .brand-logo-left img {
        max-height: 64px !important;
        max-width: 260px !important;
        transform: none !important;
        object-fit: contain !important;
    }
    .nav-menu, .nav-search {
        display: none !important;
    }
    .social-icons-header {
        display: none !important;
    }
    .story-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 1.5rem !important;
        gap: 2rem !important;
    }
    .story-image {
        width: 100% !important;
        grid-column: auto !important;
        grid-row: auto !important;
        transform: none !important;
    }
    .story-image img, #womens-main-image, #mens-main-image {
        height: 380px !important;
        object-position: center !important;
        transform: none !important;
    }
    .womens-selector {
        grid-column: auto !important;
        grid-row: auto !important;
        flex-direction: row !important;
        justify-content: center !important;
        margin: 0.8rem 0 !important;
        writing-mode: horizontal-tb !important;
        align-self: center !important;
        gap: 1rem !important;
    }
    .womens-selector p {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        margin-bottom: 0 !important;
        margin-right: 0.5rem !important;
    }
    .story-content {
        grid-column: auto !important;
        grid-row: auto !important;
        max-width: 100% !important;
        text-align: center !important;
        margin-top: 0.5rem !important;
        padding: 0 !important;
    }
    .mens-story .story-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 1.5rem !important;
        gap: 2rem !important;
    }
    .mens-story .story-image {
        width: 100% !important;
        grid-column: auto !important;
        grid-row: auto !important;
        transform: none !important;
    }
    .mens-story .story-content {
        grid-column: auto !important;
        grid-row: auto !important;
        max-width: 100% !important;
        text-align: center !important;
        margin-top: 0.5rem !important;
        padding: 0 !important;
    }
    .mens-thumbnails {
        justify-content: center !important;
        gap: 1rem !important;
    }
    .heritage-stats-bar, .process-grid, .concierge-grid, .vip-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .artisan-content-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .filter-sidebar {
        position: static;
    }
    .pdp-grid {
        grid-template-columns: 1fr;
    }
    .boutiques-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   MOBILE MENU DRAWER & NAVIGATION OVERLAYS
   ========================================================================== */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 2990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 82%;
    max-width: 340px;
    background: #FFFFFF;
    z-index: 2995;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-header {
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ECECEC;
    background: #FAF7F2;
}

.mobile-drawer-header img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.mobile-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #DDD;
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
    background: var(--primary-color);
    color: #FFFFFF;
}

.mobile-drawer-links {
    list-style: none;
    padding: 0.5rem 0;
    flex: 1;
}

.mobile-drawer-links li {
    border-bottom: 1px solid #F5F5F5;
}

.mobile-drawer-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0.9rem 1.5rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.mobile-drawer-links a i {
    color: var(--accent-color);
    font-size: 1.05rem;
    width: 22px;
    text-align: center;
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a.active {
    background-color: #FAF5EA;
    color: var(--primary-color);
    padding-left: 1.8rem;
}

.mobile-drawer-footer {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid #ECECEC;
    background: #FAF7F2;
    text-align: center;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE STYLES (DESKTOP, TABLET, MOBILE, SMALL MOBILE)
   ========================================================================== */

/* --- TABLETS & SMALL LAPTOPS (max-width: 1024px) --- */
/* --- TABLETS & SMALL LAPTOPS (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .nav-container-wide {
        padding: 0 1.5rem;
    }
    .heritage-stats-bar, .process-grid, .concierge-grid, .vip-tiers-grid, .heritage-floating-facts {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .artisan-content-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .filter-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    .pdp-grid {
        grid-template-columns: 1fr;
    }
    .boutiques-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pillars-grid, .cart-assurances-grid, .pillars-luxury-grid, .heirloom-luxury-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .cart-layout {
        grid-template-columns: 1fr;
    }
    .contact-appointment-wrapper, .contact-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .auth-split-card {
        grid-template-columns: 1fr;
    }
    .craft-spotlight-banner, .master-weaver-split {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .quick-view-grid {
        grid-template-columns: 1fr;
    }
    .quick-view-image {
        height: 320px;
    }
    .collections-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

/* --- MOBILE DEVICES & TABLETS (max-width: 768px) --- */
@media (max-width: 768px) {
    /* 0. Universal Mobile Overflow Prevention */
    *, *::before, *::after {
        max-width: 100%;
        box-sizing: border-box;
    }

    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }

    section, main, header, footer, nav, article, aside {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Clamp oversized inline desktop widths & paddings on mobile */
    div[style*="width: 1400px"],
    div[style*="width: 1200px"],
    div[style*="width: 1100px"],
    div[style*="width: 1000px"],
    div[style*="width: 950px"],
    div[style*="width: 800px"],
    div[style*="width: 650px"],
    div[style*="max-width: 1400px"],
    div[style*="max-width: 1200px"],
    div[style*="max-width: 1100px"],
    div[style*="max-width: 1000px"],
    div[style*="max-width: 950px"],
    div[style*="max-width: 800px"],
    div[style*="max-width: 650px"],
    section[style*="max-width: 1400px"],
    section[style*="max-width: 1200px"],
    section[style*="max-width: 1100px"],
    section[style*="max-width: 1000px"] {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    div[style*="padding: 3.5rem"],
    div[style*="padding: 3rem"],
    div[style*="padding: 2.8rem"],
    div[style*="padding: 2.5rem"],
    div[style*="padding: 2rem"],
    div[style*="padding: 0 5%"],
    div[style*="padding: 0 2rem"],
    section[style*="padding: 3.5rem"],
    section[style*="padding: 3rem"],
    section[style*="padding: 2.5rem"],
    section[style*="padding: 0 5%"],
    section[style*="padding: 0 2rem"] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Force all grid containers to single-column on mobile unless specifically exempted */
    div[style*="grid-template-columns"],
    section[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* 1. Header & Navigation */
    .top-bar-dark {
        padding: 0.4rem 0;
    }
    .top-bar-container {
        padding: 0 1rem;
    }
    .social-icons-header {
        display: none !important;
    }
    .nav-container-wide {
        height: 70px !important;
        padding: 0 1rem !important;
        align-items: center !important;
    }
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #FAF6EF;
        border: 1px solid var(--accent-color);
        border-radius: var(--radius-sm);
        color: var(--primary-color);
        font-size: 1.15rem;
        cursor: pointer;
        flex-shrink: 0;
    }
    .nav-logo .brand-logo-left img,
    .brand-logo-left img {
        max-height: 58px !important;
        max-width: 240px !important;
        transform: none !important;
        object-fit: contain !important;
    }
    .nav-menu, .nav-search {
        display: none !important;
    }

    /* 2. Hero Slider (Home) */
    .slider-hero {
        min-height: 480px !important;
        height: 75vh !important;
    }
    .hero-slider-video {
        object-fit: cover !important;
        height: 100% !important;
        width: 100% !important;
    }
    .editorial-wrapper {
        padding: 0 1.2rem !important;
    }
    .tag-line {
        font-size: 0.72rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 0.8rem !important;
    }
    .editorial-title {
        font-size: 1.85rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }
    .btn-editorial {
        padding: 0.8rem 1.6rem !important;
        font-size: 0.85rem !important;
        gap: 12px !important;
    }
    .slider-controls {
        bottom: 20px !important;
        gap: 8px !important;
    }

    /* 3. Page Banners (Catalog, Category & Policy Pages) */
    .page-banner {
        padding: 2.8rem 1.2rem 2rem !important;
    }
    .banner-tag {
        font-size: 0.72rem !important;
        letter-spacing: 2px !important;
    }
    .page-banner h1 {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        margin: 0.4rem 0 !important;
    }
    .banner-desc {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }
    .breadcrumbs {
        font-size: 0.75rem !important;
    }

    /* 4. Category Pills Horizontal Scroll Bar */
    .category-pills-bar {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0.8rem 1rem !important;
        background: #fff !important;
        border-bottom: 1px solid #eee !important;
        scrollbar-width: none;
    }
    .category-pills-bar::-webkit-scrollbar {
        display: none;
    }
    .pills-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        min-width: max-content !important;
    }
    .pill-btn {
        white-space: nowrap !important;
        padding: 0.45rem 0.9rem !important;
        font-size: 0.78rem !important;
    }

    /* 5. Product Catalog & Category Grids (2-column layout) */
    .catalog-section {
        padding: 1.5rem 1rem !important;
    }
    .catalog-layout {
        grid-template-columns: 1fr !important;
    }
    .filter-sidebar {
        margin-bottom: 1.8rem !important;
        padding: 1.2rem !important;
    }
    .catalog-top-bar {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.8rem !important;
        margin-bottom: 1.5rem !important;
    }
    .catalog-sort-wrapper {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
    }
    .sort-select {
        flex: 1 !important;
        max-width: 200px !important;
    }
    .product-grid, .catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    .product-card, .catalog-card {
        border-radius: 6px !important;
    }
    .product-card .product-image, .catalog-card-img-wrap {
        height: 210px !important;
    }
    .product-info, .catalog-card-body {
        padding: 0.75rem !important;
    }
    .product-info h3, .catalog-card-title {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.2rem !important;
    }
    .category, .catalog-card-category {
        font-size: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }
    .price-row .price, .catalog-card-price .price-current {
        font-size: 0.92rem !important;
    }
    .product-actions {
        bottom: 0 !important;
        background: rgba(0,0,0,0.3) !important;
        padding: 0.5rem !important;
        gap: 0.5rem !important;
    }
    .action-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }
    .btn-quick-view {
        display: none !important;
    }

    /* 6. Home Page Brand Story (Womenswear) */
    .brand-story {
        padding: 2.5rem 0 1.5rem 0 !important;
        margin-top: 0 !important;
    }
    .story-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 1.2rem !important;
        gap: 1.5rem !important;
    }
    .story-image {
        width: 100% !important;
        grid-column: auto !important;
        grid-row: auto !important;
        transform: none !important;
    }
    .story-image img, #womens-main-image {
        height: 340px !important;
        object-position: center !important;
        transform: none !important;
    }
    .womens-selector {
        grid-column: auto !important;
        grid-row: auto !important;
        flex-direction: row !important;
        justify-content: center !important;
        margin: 0.8rem 0 !important;
        writing-mode: horizontal-tb !important;
        align-self: center !important;
        gap: 1rem !important;
    }
    .womens-selector p {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        margin-bottom: 0 !important;
        margin-right: 0.5rem !important;
    }
    .story-content {
        grid-column: auto !important;
        grid-row: auto !important;
        max-width: 100% !important;
        text-align: center !important;
        margin-top: 0.5rem !important;
        padding: 0 !important;
    }
    .story-content h2 {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
    }
    .story-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }

    /* 7. Home Page Menswear Commitment */
    .mens-story {
        padding: 2.5rem 0 !important;
    }
    .mens-story .story-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 1.2rem !important;
        gap: 1.5rem !important;
    }
    .mens-story .story-image {
        width: 100% !important;
        grid-column: auto !important;
        grid-row: auto !important;
        transform: none !important;
        margin-bottom: 0 !important;
    }
    .mens-story .story-image img, #mens-main-image {
        height: 340px !important;
        transform: none !important;
        object-position: center !important;
    }
    .mens-story .story-content {
        grid-column: auto !important;
        grid-row: auto !important;
        max-width: 100% !important;
        text-align: center !important;
        margin-top: 0.5rem !important;
        padding: 0 !important;
    }
    .mens-story .story-content h2 {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
    }
    .mens-story .story-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }
    .mens-thumbnails {
        justify-content: center !important;
        gap: 0.8rem !important;
    }

    /* 8. Featured Collections (3 Cards) */
    .collections {
        padding: 2.5rem 1rem !important;
    }
    .collections-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .collection-image {
        height: 360px !important;
        margin-bottom: 1rem !important;
    }
    .collection-info h3 {
        font-size: 1.5rem !important;
    }
    .collection-info p {
        font-size: 0.9rem !important;
        max-width: 100% !important;
    }

    /* 9. Testimonials & Single-Card Reviews */
    .reviews-section {
        padding: 3rem 1rem !important;
    }
    .reviews-container {
        min-height: 270px !important;
    }
    .review-card {
        padding: 1.8rem 1.2rem !important;
    }
    .review-text {
        font-size: 0.92rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.2rem !important;
    }

    /* 10. Our Direction (Mission & Vision) */
    .direction-section {
        padding: 3rem 1rem !important;
    }
    .direction-section > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .direction-section div[style*="border-radius: 8px"] {
        padding: 1.8rem 1.2rem !important;
    }

    /* 11. Social 3D Carousel Section */
    .social-3d-section {
        padding: 2.5rem 1rem !important;
        overflow: hidden !important;
    }
    .carousel-3d-container {
        width: 150px !important;
        height: 220px !important;
    }
    .carousel-3d-card {
        transform: rotateY(calc(var(--i) * 60deg)) translateZ(155px) !important;
    }

    /* 12. Offers & Sourcing Callout */
    .offers-section {
        height: auto !important;
        padding: 4rem 1.2rem !important;
        background-attachment: scroll !important;
    }
    .offers-content h2 {
        font-size: 1.85rem !important;
    }
    .offers-content p {
        font-size: 0.95rem !important;
    }

    /* 13. Catalog Page Specifics (catalog.html) */
    .catalog-hero-banner {
        padding: 3rem 1.2rem 2.5rem !important;
    }
    .catalog-hero-title {
        font-size: 1.85rem !important;
    }
    .catalog-hero-subtitle {
        font-size: 0.9rem !important;
    }
    .catalog-search-input {
        font-size: 0.88rem !important;
        padding: 0.85rem 3rem 0.85rem 1.2rem !important;
    }
    .category-tabs-nav {
        top: 70px !important;
    }
    .category-tabs-scroll {
        padding: 0.7rem 1rem !important;
    }
    .cat-tab-btn {
        padding: 0.45rem 0.9rem !important;
        font-size: 0.78rem !important;
    }
    .catalog-summary-matrix {
        padding: 1.5rem 1rem !important;
        margin-bottom: 2.5rem !important;
    }
    .matrix-header h3 {
        font-size: 1.3rem !important;
    }
    .matrix-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.7rem !important;
    }
    .matrix-item {
        padding: 0.9rem 0.5rem !important;
    }
    .matrix-item .m-icon {
        font-size: 1.25rem !important;
    }
    .matrix-item .m-title {
        font-size: 0.78rem !important;
    }
    .category-block-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }
    .category-block-header h2 {
        font-size: 1.35rem !important;
    }

    /* 14. Heritage Page Elements */
    .heritage-hero-lux {
        padding: 3.5rem 1rem 4.5rem !important;
    }
    .heritage-hero-title {
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
    }
    .heritage-hero-subtitle {
        font-size: 0.95rem !important;
    }
    .heritage-floating-facts {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem !important;
        margin-top: -2.5rem !important;
        padding: 0 1rem !important;
    }
    .heritage-fact-card {
        padding: 1.2rem 0.6rem !important;
    }
    .heritage-fact-number {
        font-size: 2rem !important;
    }
    .heritage-fact-label {
        font-size: 0.72rem !important;
    }
    .timeline-tree-container::before {
        left: 18px !important;
    }
    .timeline-tree-item {
        width: 100% !important;
        padding-left: 45px !important;
        padding-right: 10px !important;
    }
    .timeline-tree-item.right {
        left: 0 !important;
    }
    .timeline-tree-item.left .timeline-tree-node,
    .timeline-tree-item.right .timeline-tree-node {
        left: 11px !important;
        right: auto !important;
    }
    .timeline-card-content {
        padding: 1.2rem !important;
    }
    .timeline-card-title {
        font-size: 1.15rem !important;
    }
    .pillars-luxury-grid, .heirloom-luxury-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }
    .master-weaver-split {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .authenticity-cert-box {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.5rem 1.2rem !important;
    }
    .experience-ateliers-section {
        padding: 3.5rem 1.2rem !important;
    }

    /* 15. Contact Page */
    .concierge-section {
        padding: 0 1rem !important;
        margin: -1.5rem auto 1.5rem !important;
    }
    .concierge-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .contact-main-section {
        padding: 0 1rem !important;
        margin: 2rem auto 3rem !important;
    }
    .contact-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .contact-form-container {
        padding: 1.8rem 1.2rem !important;
    }
    .contact-form-container h2 {
        font-size: 1.8rem !important;
    }
    .custom-inquiry-form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    /* 16. Shopping Cart Page (cart.html) */
    .cart-section {
        padding: 0 1rem !important;
    }
    .cart-table-header {
        display: none !important;
    }
    .cart-item-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        padding: 1.2rem 0 !important;
        position: relative !important;
    }
    .cart-product-info {
        display: flex !important;
        gap: 1rem !important;
        align-items: center !important;
        padding-right: 35px !important;
    }
    .cart-product-img {
        width: 65px !important;
        height: 85px !important;
        object-fit: cover !important;
        border-radius: 4px !important;
        flex-shrink: 0 !important;
    }
    .cart-product-details h4 {
        font-size: 0.95rem !important;
    }
    .cart-item-row .btn-remove-item {
        position: absolute !important;
        top: 1.2rem !important;
        right: 0 !important;
    }
    .order-summary-card {
        position: static !important;
        margin-top: 2rem !important;
        padding: 1.5rem 1.2rem !important;
    }
    .cart-assurances-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    /* 17. Auth & VIP Portal (login.html & register.html) */
    .auth-page-section {
        margin: 1.5rem auto !important;
        padding: 0 1rem !important;
    }
    .auth-split-card {
        grid-template-columns: 1fr !important;
    }
    .auth-editorial-side {
        padding: 2rem 1.2rem !important;
    }
    .auth-editorial-content h2 {
        font-size: 1.7rem !important;
    }
    .auth-form-side {
        padding: 2rem 1.2rem !important;
    }
    .social-login-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem !important;
    }

    /* 18. Policy Pages */
    .policy-page-container {
        padding: 0 1rem !important;
        margin: 2rem auto 3rem !important;
    }
    .policy-page-container > div {
        padding: 1.8rem 1.2rem !important;
    }
    .policy-page-container h2 {
        font-size: 1.7rem !important;
    }

    /* 19. Modals & Overlays */
    .quick-view-modal, .appointment-modal-card {
        width: 94% !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        padding: 1.5rem 1rem !important;
    }
    .quick-view-grid {
        grid-template-columns: 1fr !important;
    }
    .quick-view-image {
        height: 240px !important;
    }
    .quick-view-details {
        padding: 1.2rem 0 !important;
    }

    /* 20. Footer */
    .footer-premium {
        padding: 0 !important;
    }
    .footer-premium-main {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 2.5rem 1.2rem !important;
    }
    .footer-col.brand-col img {
        max-height: 60px !important;
    }
    .footer-premium-top {
        padding: 2.5rem 1.2rem !important;
    }
    .newsletter-form {
        flex-direction: column !important;
        gap: 0.6rem !important;
    }
    .newsletter-form input, .newsletter-form button {
        width: 100% !important;
        border-radius: 4px !important;
    }
    .footer-premium-bottom {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
        padding: 1.5rem 1rem !important;
    }
}

/* --- SMALL MOBILE / COMPACT PHONES (max-width: 480px) --- */
@media (max-width: 480px) {
    .editorial-title {
        font-size: 1.6rem !important;
    }
    .btn-editorial {
        padding: 0.75rem 1.4rem !important;
        font-size: 0.8rem !important;
    }
    .heritage-floating-facts {
        grid-template-columns: 1fr !important;
    }
    .social-login-grid {
        grid-template-columns: 1fr !important;
    }
    .toast-container {
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
    }
    .toast-item {
        font-size: 0.8rem !important;
        padding: 0.7rem 0.9rem !important;
    }
}

/* ==========================================================================
   HERITAGE PAGE LUXURY DESIGN SYSTEM (MATCHING REFERENCE UI)
   ========================================================================== */

.heritage-hero-lux {
    background: linear-gradient(180deg, #2D0505 0%, #3D0A0A 60%, #200303 100%);
    color: #fff;
    padding: 5rem 1.5rem 6.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.heritage-crest-seal {
    width: 65px;
    height: 65px;
    background: rgba(197, 160, 89, 0.12);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    color: var(--accent-color);
    font-size: 1.6rem;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.heritage-pill-tag {
    display: inline-block;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.35rem 1.4rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: rgba(197, 160, 89, 0.05);
}

.heritage-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.heritage-hero-subtitle {
    font-size: 1.15rem;
    color: #E2D6C5;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Floating Quick Facts Bar overlapping hero */
.heritage-floating-facts {
    max-width: 1100px;
    margin: -3.5rem auto 4rem;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.heritage-fact-card {
    background: #ffffff;
    border: 1px solid #E8DFD0;
    border-radius: 8px;
    padding: 1.8rem 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.heritage-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.heritage-fact-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.heritage-fact-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #777;
    font-weight: 600;
}

/* Timeline Vertical Tree */
.timeline-tree-container {
    position: relative;
    max-width: 950px;
    margin: 3rem auto 0;
    padding: 2rem 0;
}

.timeline-tree-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #C5A059;
    transform: translateX(-50%);
}

.timeline-tree-item {
    position: relative;
    width: 50%;
    padding: 1.5rem 3rem;
    box-sizing: border-box;
}

.timeline-tree-item.left {
    left: 0;
    text-align: left;
}

.timeline-tree-item.right {
    left: 50%;
    text-align: left;
}

.timeline-tree-node {
    position: absolute;
    top: 2rem;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 3px solid #C5A059;
    border-radius: 50%;
    z-index: 5;
}

.timeline-tree-item.left .timeline-tree-node {
    right: -7px;
}

.timeline-tree-item.right .timeline-tree-node {
    left: -7px;
}

.timeline-card-content {
    background: #ffffff;
    border: 1px solid #EAE2D5;
    border-radius: 8px;
    padding: 1.8rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-card-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    border-color: #C5A059;
}

.timeline-year-badge {
    color: #C5A059;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 0.3rem;
}

.timeline-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #7A1A1A;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.timeline-card-desc {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.timeline-card-image {
    width: 100%;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    background: #f8f8f8;
}

.timeline-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.timeline-card-content:hover .timeline-card-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .heritage-floating-facts {
        grid-template-columns: 1fr 1fr;
        margin-top: -2rem;
    }
    .timeline-tree-container::before {
        left: 20px;
    }
    .timeline-tree-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 15px;
    }
    .timeline-tree-item.right {
        left: 0;
    }
    .timeline-tree-item.left .timeline-tree-node,
    .timeline-tree-item.right .timeline-tree-node {
        left: 13px;
    }
}

/* Four Pillars Grid */
.pillars-luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.pillar-card-lux {
    background: #ffffff;
    border: 1px solid #ECE3D4;
    border-radius: 8px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillar-card-lux:hover {
    transform: translateY(-5px);
    border-color: #C5A059;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.pillar-icon-seal {
    width: 55px;
    height: 55px;
    background: #FAF7F2;
    border: 1px solid #C5A059;
    color: #7A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.pillar-card-lux h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.pillar-card-lux p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .pillars-luxury-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .pillars-luxury-grid {
        grid-template-columns: 1fr;
    }
}

/* Anatomy of an Heirloom (4 Visual Cards) */
.heirloom-luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.heirloom-card-lux {
    background: #ffffff;
    border: 1px solid #ECE3D4;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.heirloom-card-lux:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.heirloom-badge-num {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    background: #7A1A1A;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.heirloom-image-wrap {
    height: 210px;
    overflow: hidden;
}

.heirloom-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.heirloom-card-lux:hover .heirloom-image-wrap img {
    transform: scale(1.08);
}

.heirloom-card-info {
    padding: 1.2rem;
    flex-grow: 1;
}

.heirloom-card-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.heirloom-card-info p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .heirloom-luxury-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .heirloom-luxury-grid {
        grid-template-columns: 1fr;
    }
}

/* Master Weaver Preserving Section */
.master-weaver-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-card-dark {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

@media (max-width: 850px) {
    .master-weaver-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Authenticity Certificate Box */
.authenticity-cert-box {
    background: #FAF7F2;
    border: 1px solid #ECE3D4;
    border-left: 4px solid #C5A059;
    border-radius: 6px;
    padding: 1.8rem 2.2rem;
    max-width: 1000px;
    margin: 3.5rem auto;
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.authenticity-seal-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid #C5A059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* Imperial Ateliers Visit Section */
.experience-ateliers-section {
    background: #4A4A4A;
    color: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
}


