/* Google Fonts - Bodoni Moda for Luxury Appeal */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@200;300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

html {
    scroll-behavior: smooth;
}

/* Refined Luxury Palette - Black, Gold, White, Neutral */
:root {
    --primary-color: #000000;
    --accent-color: #d4af37;
    /* Metallic Gold */
    --accent-gold: #c5a059;
    --secondary-bg: #ffffff;
    --neutral-bg: #f9f9f9;
    --white: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --border-color: #eeeeee;

    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--secondary-bg);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Bodoni looks best at normal weight */
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Global Layout System */
.container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Global Animations & Transitions */
body {
    animation: fadeInPage 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Luxury Reveal Animation for Headings */
[data-aos="reveal"] {
    position: relative;
    overflow: hidden;
}

[data-aos="reveal"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transform: translateX(-101%);
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

[data-aos="reveal"].aos-animate::after {
    transform: translateX(101%);
}

.section-story,
.section-motion,
.section-shop {
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.luxury-card:hover img {
    transform: scale(1.08);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-luxury-solid {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-luxury-solid:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-luxury-solid::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-luxury-solid:hover::after {
    left: 100%;
}

/* Header & Navigation */
header {
    position: fixed !important;
    /* Changed from sticky to fixed for transparency */
    top: 0;
    left: 0;
    width: 100% !important;
    z-index: 2000;
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

/* Initially white text for transparent background */
header:not(.scrolled) .nav-links a,
header:not(.scrolled) .header-utilities a,
header:not(.scrolled) .mobile-menu-btn,
header:not(.scrolled) .top-nav-inner span,
header:not(.scrolled) .top-right-links a,
header:not(.scrolled) .wishlist-link i,
header:not(.scrolled) .cart-pill i {
    color: #ffffff !important;
}

header:not(.scrolled) .cart-pill {
    background: rgba(255, 255, 255, 0.1) !important;
}

header:not(.scrolled) .main-navbar {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}



header .container {
    max-width: 1300px;
    width: 94%;
    margin: 0 auto;
}

.main-navbar {
    width: 100% !important;
    display: block;
}

.main-navbar {
    background: var(--white);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar-inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.header-search-wrap {
    flex: 1;
    max-width: 500px;
    position: relative;
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 6px 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin: 0 auto;
}

.header-search-wrap:focus-within {
    background: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.header-search-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 10px;
    font-size: 0.9rem;
    outline: none;
    color: var(--primary-color);
}

.search-icon-btn {
    color: var(--primary-color);
    padding: 0 5px;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.search-icon-btn:hover {
    color: var(--accent-color);
}

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

.util-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s;
}

.util-item:hover {
    color: var(--accent-color);
}

.cart-pill {
    position: relative;
    color: var(--primary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: none;
    padding: 0;
}

.cart-pill:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -5px;
    /* Reduced to avoid pushing container */
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
    box-sizing: border-box;
    z-index: 5;
}

.cart-pill:hover .cart-count,
.cart-pill:hover .cart-count-badge {
    background: var(--white);
    color: var(--accent-color);
}

.wishlist-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-color);
}

.wishlist-count {
    position: absolute;
    top: -8px;
    right: -5px;
    /* Reduced to avoid pushing container */
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
    box-sizing: border-box;
    z-index: 5;
}

.shop-card-img {
    position: relative;
}

.shop-card-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: color 0.2s, background 0.2s;
}

.shop-card-wishlist:hover,
.shop-card-wishlist i.fa-solid {
    color: #dc2626;
}

.pd-wishlist-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.pd-wishlist-btn:hover {
    border-color: #c5a059;
    color: #c5a059;
}

.pd-wishlist-btn i.fa-solid {
    color: #dc2626;
}

.nav-contact i {
    color: var(--accent-color);
}

/* Main Navigation Link Styling */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    /* Reduced to avoid crowding on smaller desktops */
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    padding: 10px 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-only-nav {
    display: none;
}

/* Utility Links Styling */
.header-utilities {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.util-icon {
    font-size: 1.1rem;
    color: var(--primary-color);
    position: relative;
    transition: var(--transition-smooth);
}

.util-icon:hover {
    color: var(--accent-color);
}

/* Account Dropdown Refined */
.header-account-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.account-menu-card {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px 0;
    margin-top: 15px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.account-menu-card::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
}

.account-menu-card a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 20px !important;
    color: #1a1a1a !important;
    /* Force dark text on white bg */
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.account-menu-card a:hover {
    background-color: #f8f9fa !important;
    color: var(--accent-gold) !important;
    padding-left: 25px !important;
}

.account-menu-card a i {
    font-size: 1.1rem !important;
    color: var(--accent-gold) !important;
    width: 20px !important;
    text-align: center !important;
}

/* Show on Hover */
.header-account-dropdown:hover .account-menu-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ensure account link stays white on transparent header if needed, but the menu items stay dark */
header:not(.scrolled) .header-account-dropdown .account-link i {
    color: #ffffff !important;
}

header.scrolled .header-account-dropdown .account-link i {
    color: var(--primary-color) !important;
}

/* Responsiveness Fixes */
@media (max-width: 1200px) {
    .nav-links {
        gap: 1.2rem;
    }
}

@media (max-width: 992px) {
    .header-top {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        order: 1;
    }

    .logo {
        order: 2;
        margin-right: auto;
        padding-left: 1.5rem;
    }

    .header-utilities {
        order: 3;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        padding: 6rem 2rem;
        z-index: 9999;
        text-align: center;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-only-nav {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .mobile-only-nav hr {
        border: 0;
        border-top: 1px solid #eee;
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .logo img {
        height: 38px;
    }
}

/* Hero Section */
.hero {
    padding: 3rem 0 4rem;
    background: linear-gradient(135deg, #fcfbf8 0%, #f9f7f2 50%, #f5f2eb 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    min-height: 420px;
    position: relative;
    z-index: 1;
}

.hero-main {
    max-width: 520px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(197, 160, 89, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.hero-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

.hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.legacy-hero-img {
    max-width: 85%;
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.12));
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        gap: 2rem;
    }

    .hero-main {
        max-width: 100%;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-btn {
        margin: 0 auto;
    }

    .hero-image-wrap {
        min-height: 240px;
    }

    .hero-img {
        max-height: 280px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 2rem 0 3rem;
    }

    .hero-inner {
        padding: 0 16px;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-img {
        max-height: 220px;
    }
}

/* Legacy promo classes (if used elsewhere) */
.promo-badge {
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
}

.promo-title {
    font-size: 1.1rem;
}

.promo-btn {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-pro {
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Remove old side images styles */
.hero-image-left,
.hero-image-right {
    display: none;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 10%;
    transform: none;
    display: flex;
    gap: 1rem;
    z-index: 100;
    /* Ensure controls are on top of everything */
    pointer-events: auto;
    /* Ensure clickable */
}

.slider-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-controls button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: none;
}

/* Features Bar */
.features-bar {
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
    position: relative;
    z-index: 20;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Circular for more polish */
    font-size: 1.4rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px);
    background-color: var(--accent-gold);
    color: var(--white);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* New Feature Items */
.feature-item-pro {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    transition: var(--transition-smooth);
}

.feature-item-pro h4 {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 700;
}

.feature-item-pro p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.features-container {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .features-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}

/* Category Grid */
.section-categories {
    padding: 4rem 0;
    background: var(--white);
}

.cat-icon-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    /* Hide scrollbar for generic look */
}

.cat-icon-grid::-webkit-scrollbar {
    display: none;
}

.cat-icon-item {
    flex: 0 0 160px;
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #fdfdfd;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.cat-icon-item:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.cat-icon-item img {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    object-fit: contain;
}

.cat-icon-item h4 {
    font-size: 0.9rem;
    text-transform: capitalize;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .cat-icon-item {
        flex: 0 0 140px;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 1200px) {
    .features-container {
        gap: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-item {
        justify-content: center;
        text-align: left;
    }
}

/* Product Section */
.section {
    padding: var(--spacing-lg) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding-bottom: 1.5rem;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-image {
    position: relative;
    aspect-ratio: 4/5;
    background: #f9f9f9;
    overflow: hidden;
    margin-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: #ffffff;
    /* Solid white instead of gradient */
    display: flex;
    justify-content: center;
    gap: 1rem;
    transform: translateY(100%);
    transition: var(--transition-smooth);
    border-top: 1px solid var(--border-color);
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

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

.product-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 500;
    color: var(--accent-gold);
}

@keyframes zoomBackground {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: zoomBackground 25s ease-in-out infinite alternate;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.category-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.shop-link {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--white);
    padding-bottom: 5px;
}

/* bg soft */
.bg-soft {
    background-color: #f9f6f0;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.trust-item h4 {
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.cart-header h3 {
    font-size: 1.5rem;
}

#close-cart {
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: center;
    padding: 1rem;
    background: #fafaf9;
    border-radius: 12px;
    border: 1px solid #f0ede8;
}

.cart-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    color: #0f172a;
    font-weight: 600;
}

.cart-item-details p {
    font-size: 0.9rem;
    color: #c5a059;
    font-weight: 600;
    margin: 0;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 2px 6px;
}

.quantity-controls button {
    width: 28px;
    height: 28px;
    border: none;
    background: #0f172a;
    color: #fff;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.quantity-controls button:hover {
    background: #1e293b;
}

.quantity-controls span {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.remove-item,
.cart-item-remove {
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
    background: #64748b;
    border: none;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 10px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cart-item-remove:hover,
.remove-item:hover {
    background: #dc2626;
    color: #fff;
    transform: translateY(-1px);
}

.cart-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Pro Light Footer */
footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: #fdfdfd;
    color: var(--text-main);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: var(--spacing-md);
}

.col-brand .logo {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 10px;
    width: 100%;
    outline: none;
}

.newsletter-form button {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.8rem;
    color: #888;
}

.payment-methods i {
    transition: var(--transition-smooth);
    cursor: pointer;
}

.payment-methods i:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.secure-badge {
    font-size: 0.85rem;
    background: #f1f3f6;
    padding: 6px 15px;
    border-radius: 50px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
}

.secure-badge i {
    color: #2ecc71;
    /* Success green for security */
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
        width: 100%;
    }
}

.w-100 {
    width: 100%;
}

/* Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

/* Footer */
footer {
    background-color: #ffffff;
    padding: 5rem 0 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #e5e5e5;
    color: var(--primary-color);
}

footer .container {
    max-width: 1300px;
    width: 92%;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    /* Increased gap */
    margin-bottom: 3rem;
}

.col-brand p {
    color: #666;
    margin: 1.5rem 0;
    font-weight: 400;
    line-height: 1.7;
    /* Better readability */
    max-width: 300px;
}

/* Footer Specific Logo */
footer .logo {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    /* Slightly larger */
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    /* Remove border */
    padding: 0;
    margin-bottom: 0.5rem;
}

.footer-col h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.footer-col p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 1rem;
    /* More spacing */
    padding-left: 0;
}

.footer-col ul li a {
    color: #666;
    /* Muted text */
    transition: all 0.3s;
    font-weight: 400;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    /* Darker on hover */
    padding-left: 0;
    /* No movement */
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    width: auto;
    height: auto;
    border: none;
    /* Remove border */
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
    font-size: 1.2rem;
    /* Larger icons */
    padding: 0;
}

.social-links a:hover {
    background: none;
    color: var(--accent-color);
    transform: none;
}

/* Newsletter Form */
.newsletter-form {
    position: relative;
    border-bottom: 1px solid #ddd;
    /* Lighter border */
    padding-bottom: 10px;
    margin-top: 1rem;
    max-width: 100%;
}

.newsletter-form input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--primary-color);
    padding: 5px 30px 5px 0;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: #999;
    font-weight: 400;
}

.newsletter-form button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--accent-color);
    /* Accent color arrow */
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s;
    padding: 0;
}

.newsletter-form button:hover {
    transform: translateX(5px) translateY(-50%);
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 5rem;
    /* More separation */
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.85rem;
}

.payment-methods {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 1.8rem;
    color: #999;
    /* Muted payment icons */
}

.secure-badge {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid #e0e0e0;
    color: #666;
    font-weight: 500;
}

@media (max-width: 992px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

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

    .footer-col:first-child,
    .footer-col:last-child {
        grid-column: span 2;
    }


    /* Header Fixes */
    .header-top {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
        font-size: 1.5rem;
        color: var(--primary-color);
        order: 1;
        background: none;
        border: none;
        padding: 5px;
        flex-shrink: 0;
    }

    .unified-header .logo {
        display: block !important;
        order: 2;
        margin: 0;
        flex-grow: 1;
        text-align: left;
        padding-left: 10px;
    }

    .unified-header .logo img {
        height: 35px !important;
        width: auto !important;
    }

    .header-utilities {
        order: 3;
        gap: 0.8rem !important;
        flex-shrink: 0;
    }

    .wishlist-hide-mobile {
        display: none !important;
    }

    .cart-pill {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.9rem !important;
    }

    .nav-contact {
        display: none !important;
    }

    /* Mobile Menu Container Styles */
    .nav-links {
        display: none;
        /* Controlled by .active class */
        position: fixed;
        top: 60px;
        /* Adjust based on header height */
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: #ffffff;
        flex-direction: column;
        padding: 2rem 5%;
        gap: 1.5rem;
        text-align: center;
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 0;
        border-bottom: 1px solid #f5f5f5;
        width: 100%;
        display: block;
    }

    .nav-contact-mobile {
        display: flex !important;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid #f5f5f5;
        justify-content: center;
        gap: 10px;
        font-weight: 700;
        color: var(--accent-gold);
    }

    /* Auth links in nav: show on mobile (hidden on desktop above) */
    .nav-links .nav-auth-link,
    .nav-links a[href*="my-orders"],
    .nav-links a[href*="admin"] {
        display: block !important;
    }

    /* Hero Fixes */
    .hero {
        padding: 20px 0 !important;
    }

    .hero-grid-layout {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        gap: 20px !important;
    }

    .hero-main-slider {
        height: auto !important;
        min-height: 350px !important;
        padding: 30px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .hero-main-content {
        max-width: 100% !important;
        margin-bottom: 20px !important;
        z-index: 5;
    }

    .hero-main-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
        line-height: 1.2 !important;
    }

    .hero-main-content p {
        font-size: 0.9rem !important;
        margin: 0 auto 20px !important;
        max-width: 280px !important;
    }

    .hero-main-img {
        position: relative !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 70% !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .hero-promo-column {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .promo-card {
        padding: 15px !important;
        min-height: 150px !important;
    }

    .promo-title {
        font-size: 0.9rem !important;
        max-width: 100% !important;
    }

    .slider-controls {
        display: none !important;
        /* Simplify mobile view */
    }

    /* Features fix */
    .features-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .feature-item-pro {
        padding: 10px !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    .feature-item-pro img {
        width: 30px !important;
        margin-bottom: 5px !important;
    }

    .feature-item-pro h4 {
        font-size: 0.8rem !important;
    }

    .feature-item-pro p {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

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

    .cart-drawer {
        width: 100%;
        right: -100%;
    }

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

    .col-brand .logo {
        margin-left: auto;
        margin-right: auto;
    }

    .features-container {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* =========================================
   New Damilano-Style Sections (Redesign)
   ========================================= */

/* Collection Grid */
.section-collections {
    padding: 0;
    margin-bottom: 2rem;
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    height: 450px;
    /* Reduced from 600px */
}

.collection-item {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.collection-item .img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.collection-item.large {
    width: 50%;
}

.collection-column {
    width: 50%;
    display: flex;
    flex-direction: column;
}

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

.collection-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.collection-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    /* Reduced font size */
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.btn-link-underline {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.btn-link-underline:hover {
    opacity: 0.8;
}

/* Editorial Section */
.section-editorial {
    position: relative;
    height: 400px;
    /* Reduced from 70vh/500px */
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

.editorial-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.editorial-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    /* Subtle dimming */
}

.editorial-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.editorial-content .subtitle {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 10px;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: #fff;
    text-transform: uppercase;
}

.editorial-content h1 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-transform: uppercase;
}

.editorial-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-white-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btn-white-outline:hover {
    background: #fff;
    color: #000;
}

/* Premium Hero Luxury Styles */
.hero-luxury {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    filter: brightness(0.85);
    animation: luxuryBreath 25s ease-in-out infinite alternate;
}

@keyframes luxuryBreath {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.dark-depth {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-title-bold {
    font-family: var(--font-heading) !important;
    font-size: 5.2rem !important;
    /* Balanced to stay in one line */
    font-weight: 300 !important;
    letter-spacing: 4px !important;
    line-height: 1.2 !important;
    margin-bottom: 2rem !important;
    color: #fff !important;
    text-transform: uppercase;
    white-space: nowrap;
    /* Force one line on desktop */
}

.hero-desc-light {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    max-width: 650px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.hero-action-box {
    margin-top: 2.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-combined-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-combined-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-main-text {
    font-size: 0.7rem;
    /* Smaller font for elegance */
    letter-spacing: 2px;
    /* More compact */
    font-family: var(--font-body);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    display: block;
}

@media (max-width: 992px) {
    .hero-title-bold {
        font-size: 3.5rem !important;
        letter-spacing: -1px !important;
        white-space: normal !important;
    }

    .hero-luxury {
        height: 100vh !important;
        /* Keep it full screen for better luxury feel */
        min-height: 100vh;
    }
}

@media (max-width: 600px) {
    .hero-title-bold {
        font-size: 1.8rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem !important;
        white-space: normal !important;
    }

    .hero-desc-light {
        font-size: 0.85rem;
        letter-spacing: 1px;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .glow-on-hover {
        padding: 15px 30px;
        font-size: 0.75rem;
    }

    .editorial-content {
        padding: 1rem;
    }
}

/* Brand Narrative (Our Story) Styling */
.section-story {
    padding: 4rem 0;
    background-color: var(--secondary-bg);
}

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

.story-image-collage {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-main {
    width: 85%;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.collage-main::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--accent-color);
    z-index: -1;
}

.collage-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.collage-sub {
    position: absolute;
    width: 45%;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid #fff;
}

.collage-sub img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.collage-top {
    top: 0;
    right: -10%;
}

.collage-bottom {
    bottom: 0;
    left: -10%;
}

.story-content {
    padding-right: 2rem;
}

.story-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.story-title {
    font-size: 4rem;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    color: var(--primary-color);
}

.story-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
}

.story-signature {
    margin-top: 4rem;
}

.sig-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.5rem;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .section-story {
        padding: 5rem 0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .story-image-collage {
        padding: 2rem 10%;
        order: 2;
    }

    .collage-main img {
        height: 400px;
    }

    .collage-sub img {
        height: 180px;
    }

    .collage-top {
        right: 0;
    }

    .collage-bottom {
        left: 0;
    }

    .story-content {
        padding-right: 0;
        text-align: center;
        order: 1;
    }

    .story-title {
        font-size: 2.8rem;
    }
}

/* Shop Section Minimal */
.shop-section-minimal {
    padding: 0 0 5rem 0;
    background: #fff;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.5rem;
}

.section-title-minimal {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    color: var(--primary-color);
}

.shop-tabs-minimal {
    display: flex;
    gap: 2.5rem;
}

.shop-tabs-minimal a {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1.5px;
    padding-bottom: 5px;
    font-family: var(--font-body);
}

.shop-tabs-minimal a:hover,
.shop-tabs-minimal a.tab-active {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.shop-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns for larger luxury feel */
    gap: 40px;
}

/* Minimal Product Card Style */
.product-card-minimal {
    border: none !important;
    background: transparent !important;
    cursor: pointer;
}

.product-card-minimal:hover {
    box-shadow: none !important;
}

.product-card-minimal .product-image {
    border-radius: 0 !important;
    background: #f4f4f4;
    aspect-ratio: 3/4;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.product-card-minimal .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-minimal:hover .product-image img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.product-card-minimal .product-info {
    text-align: center;
    padding-top: 0.5rem;
}

.product-card-minimal h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem !important;
    /* Larger Elegant Type */
    font-weight: 400 !important;
    margin-bottom: 0.5rem !important;
    color: var(--primary-color) !important;
    letter-spacing: 0.5px;
}

.product-card-minimal .price {
    font-family: var(--font-body);
    font-size: 0.95rem !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
    letter-spacing: 1px;
}

.btn-black-outline {
    display: inline-block;
    padding: 14px 45px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    background: transparent;
}

.btn-black-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Craftsmanship Section */
.section-craftsmanship {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.craft-content {
    max-width: 700px;
    margin: 0 auto;
}

.craft-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.craft-title {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.craft-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 992px) {
    .collection-grid {
        height: auto;
        flex-direction: column;
    }

    .collection-item.large,
    .collection-column,
    .collection-item.small {
        width: 100%;
        height: 400px;
    }

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

@media (max-width: 576px) {

    .collection-item.large,
    .collection-item.small {
        height: 300px;
    }

    .editorial-content h2 {
        font-size: 2.2rem;
    }

    .section-header-flex {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }

    .shop-grid-clean {
        grid-template-columns: 1fr;
        /* Full width for mobile luxury */
    }
}

/* Production Showcase Section */
.section-production {
    padding: 0;
    position: relative;
    height: 600px;
    background: var(--primary-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

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

.production-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: transform 10s ease;
}

.section-production:hover .production-bg img {
    transform: scale(1.05);
    /* Slow zoom on hover */
}

.production-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 650px;
    margin-left: max(5%, (100% - 1320px) / 2);
    /* Align with container logic broadly */
    padding: 2rem;
}

.production-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-gold);
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
    border-radius: 50px;
}

.production-title {
    font-size: 3.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    /* Regular weight for elegance */
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
}

.production-desc {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    /* Slightly transparent white */
    line-height: 1.8;
    font-weight: 300;
}

.btn-gold-outline {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 14px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
}

.btn-gold-outline:hover {
    background: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}

@media (max-width: 992px) {
    .section-production {
        height: 500px;
    }

    .production-content {
        margin-left: 5%;
        margin-right: 5%;
        max-width: 100%;
        text-align: center;
    }

    .production-title {
        font-size: 2.8rem;
    }

    .btn-gold-outline {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .section-production {
        height: 450px;
    }

    .production-title {
        font-size: 2.2rem;
    }
}

/* Category Slider Section */
.section-category-slider {
    padding: 0;
    position: relative;
    background: #f4f5f7;
    /* Light background as seen in ref image usually */
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.category-track {
    display: flex;
    gap: 2px;
    /* Small gap between slices */
    overflow-x: auto;
    /* Allow scrolling if items exceed width */
    width: 100%;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.category-track::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.cat-slide {
    flex: 1;
    min-width: 33.333%;
    /* 3 items visible by default */
    height: 80vh;
    /* Tall vertical look */
    min-height: 600px;
    position: relative;
    background: #e3e3e3;
    /* Fallback */
    scroll-snap-align: start;
    display: flex;
    /* Centering content */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Alternating backgrounds or specific styles if needed */
.cat-slide:nth-child(odd) {
    background: #dcd7ce;
}

.cat-slide:nth-child(even) {
    background: #d3d3d3;
}

.cat-slide img {
    width: 85%;
    height: auto;
    object-fit: contain;
    max-height: 70%;
    transition: transform 0.6s ease;
}

.cat-slide:hover img {
    transform: scale(1.05);
}

.cat-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
    pointer-events: none;
    /* Let clicks pass through if needed, but button needs pointer events */
}

.cat-slide-content h3 {
    font-family: 'Montserrat', sans-serif;
    /* Or 'Cormorant' depending on strict preference */
    font-weight: 500;
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-shop-slide {
    display: inline-block;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
    pointer-events: auto;
    /* Enable clicking */
    transition: opacity 0.3s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-shop-slide:hover {
    opacity: 0.8;
    color: #fff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3rem;
    z-index: 20;
    cursor: pointer;
    padding: 0 20px;
    transition: color 0.3s;
}

.slider-arrow:hover {
    color: #fff;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .cat-slide {
        min-width: 50%;
    }
}

@media (max-width: 600px) {
    .cat-slide {
        min-width: 100%;
        height: 60vh;
        min-height: 400px;
    }
}

/* Collections in Motion Section */
.section-motion {
    padding: 3rem 0;
    /* Reduced padding */
    background: #fff;
    margin-bottom: 2rem;
}

.motion-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: #6d4c41;
    /* Brownish color as in image */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.motion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for a more focused look */
    gap: 30px;
    /* Increased gap for elegance */
    padding: 0;
}

.motion-item {
    position: relative;
    height: 550px;
    /* Taller for 2-column layout */
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.motion-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), filter 1.2s ease;
    opacity: 0.8;
    filter: grayscale(0.2) brightness(0.8);
}

.motion-item:hover img {
    transform: scale(1.08);
    opacity: 1;
    filter: grayscale(0) brightness(1);
}

.motion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(10px);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), padding-bottom 0.6s ease;
}

.motion-item:hover .motion-overlay {
    transform: translateY(0);
    padding-bottom: 2.5rem;
}

.motion-overlay.centered {
    height: 100%;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    /* Slight tint for full overlay */
}

.motion-overlay h3 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.motion-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.motion-desc-large {
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.motion-desc-large em {
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}


/* Responsive adjustments */
@media (max-width: 1200px) {
    .motion-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet for 4 items */
        gap: 15px;
    }

    .motion-item {
        height: 350px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .motion-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on mobile */
    }

    .motion-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .motion-grid {
        grid-template-columns: 1fr;
        /* Stack on very small screens */
        padding: 0 20px;
    }

    .motion-item {
        height: 300px;
    }
}

/* Video Background Section */
.section-editorial {
    position: relative;
    height: 600px;
    /* Or specific height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.editorial-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

video#editorial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    z-index: 1;
}

.editorial-content {
    position: relative;
    /* Ensure content is above video */
    z-index: 2;
    text-align: center;
    color: #fff;
    /* Ensure text is white */
}

/* Override existing editorial styles if necessary to center content */
.section-editorial .editorial-bg {
    display: none;

    /* Hide old bg div */
}

/* Parallax Banner Section (Restyled Luxury Intro) */
.section-luxury-intro.parallax-banner {
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    /* Slightly larger for zoom effect */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    animation: luxuryBreath 40s ease-in-out infinite alternate-reverse;
}

@keyframes luxuryZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.relative-z {
    position: relative;
    z-index: 10;
}

.luxury-intro-card {
    max-width: 800px;
    /* Wider for more elegance */
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.2);
    /* Darker subtle tint */
    backdrop-filter: blur(25px);
    /* Stronger blur for "professional" quality */
    -webkit-backdrop-filter: blur(25px);
    padding: 2rem 2.5rem;
    /* Ultra-compact */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Very delicate border */
    text-align: center;
    border-radius: 0;
    /* Keep it sharp and architectural */
}

.card-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.luxury-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    /* Scaled down for better proportion */
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1;
    /* Tighter line-height for luxury look */
    text-transform: uppercase;
    letter-spacing: -1px;
    /* Sophisticated tight kerning */
}

.luxury-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    /* Slightly smaller for elegance */
    color: rgba(255, 255, 255, 0.9);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    /* Drastically reduced margin to button */
    line-height: 2;
    /* Very breathable line height */
    font-weight: 300;
    letter-spacing: 0.5px;
}

.btn-luxury-outline {
    display: inline-block;
    padding: 18px 50px;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-luxury-outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-luxury-solid:hover {
    background: transparent;
    color: var(--primary-color);
}



/* Client Testimonials Section (Marquee / Slider) */
.section-testimonials {
    padding: 3rem 0;
    /* Reduced padding (chota size) */
    background: #f9f9f9;
    border-top: 1px solid #eee;
    overflow: hidden;
    /* Hide overflow for marquee */
}

.section-testimonials .container {
    max-width: 100%;
    /* Allow full width slider */
    padding: 0;
}

.section-testimonials .text-center {
    text-align: center;
}

.subtitle-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title-serif {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: normal;
}

.testimonial-slider-container {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

/* Gradient masks for fading effect */
.testimonial-slider-container::before,
.testimonial-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #f9f9f9, transparent);
}

.testimonial-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #f9f9f9, transparent);
}

.testimonial-track {
    display: flex;
    width: max-content;
    /* Fit content */
    animation: scroll 40s linear infinite;
    /* Marquee animation */
}

.testimonial-track:hover {
    animation-play-state: paused;
    /* Pause on hover */
}

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

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

    /* Move half way (duplicate set) */
}

.testimonial-card-compact {
    background: #fff;
    padding: 1.5rem 2rem;
    margin: 0 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-card-compact .stars {
    color: #c5a059;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.testimonial-card-compact .quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.testimonial-card-compact .author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-card-compact .role {
    font-weight: 400;
    color: var(--text-muted);
}

/* User review form (Voice of the Customer section) */
.review-form-wrap {
    max-width: 560px;
    margin: 2.5rem auto 0;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

.review-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.review-form-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.review-success-msg {
    background: rgba(39, 174, 96, 0.1);
    color: #1e8449;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-form .review-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.review-form-group {
    margin-bottom: 1rem;
}

.review-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
}

.review-form-group label .req {
    color: #c5a059;
}

.review-form-group input,
.review-form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
}

.review-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.review-rating-stars {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.review-rating-stars .star-label {
    cursor: pointer;
    margin: 0;
}

.review-rating-stars .star-label input {
    display: none;
}

.review-rating-stars .star {
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.15s;
}

.review-rating-stars .star-label input:checked~.star {
    color: #c5a059;
}

.review-rating-stars[data-rating="1"] .star-label:nth-child(1) .star,
.review-rating-stars[data-rating="2"] .star-label:nth-child(-n+2) .star,
.review-rating-stars[data-rating="3"] .star-label:nth-child(-n+3) .star,
.review-rating-stars[data-rating="4"] .star-label:nth-child(-n+4) .star,
.review-rating-stars[data-rating="5"] .star-label:nth-child(-n+5) .star {
    color: #c5a059;
}

.review-rating-stars .star-label:hover .star {
    color: #c5a059;
}

.review-rating-stars .star-label:hover~.star-label .star {
    color: #ddd;
}

.btn-review-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

.btn-review-submit:hover {
    background: #0c1322;
}

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

    .review-form-wrap {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 1.5rem;
    }
}

/* Features Section Simplified */
.section-features {
    padding: 1.5rem 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-top: 2rem;
}

.features-single-center {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.feature-item-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.payment-icons-display {
    display: flex;
    gap: 20px;
    font-size: 2.2rem;
    color: var(--accent-gold);
}

.payment-icons-display i {
    transition: transform 0.3s ease;
}

.payment-icons-display i:hover {
    transform: translateY(-5px) scale(1.1);
}

.feature-item-centered h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.feature-item-centered p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.feature-icon {
    font-size: 1.4rem;
    /* More delicate icon size */
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid #f8f8f8;
    /* Subtle border like in image */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    background: var(--accent-color);
    color: #fff;
    transform: rotateY(360deg);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #888;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 500px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* Utility classes */
.text-center {
    text-align: center !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

/* Featured Shop Section (Home) */
.section-shop {
    padding: 5rem 0;
    background: #fff;
}

.section-shop .container {
    max-width: 1300px;
    width: 92%;
    margin: 0 auto;
}

.section-shop .shop-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}

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

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

@media (max-width: 480px) {
    .section-shop .shop-grid {
        grid-template-columns: 1fr;
    }
}

/* Motion Section Video Background */
.motion-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}