@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

:root {
    /* Professional E-commerce Color Palette - Clean & Minimal */
    --primary-color: #1a1a1a; /* Deep charcoal - professional and modern */
    --primary-dark: #0a0a0a; /* Almost black for depth */
    --primary-light: #3a3a3a; /* Lighter charcoal for hover states */
    --secondary-color: #d4a574; /* Warm candle accent - earthy and premium */
    --secondary-dark: #b8936a; /* Darker warm accent */
    --secondary-light: #e8c19f; /* Lighter warm accent */
    --accent-color: #c9a882; /* Muted gold - elegant accent */
    --accent-dark: #a68d6b; /* Darker muted gold */
    --accent-light: #e6d5bf; /* Light beige */
    
    /* Neutral Colors - Professional E-commerce */
    --text-dark: #1a1a1a; /* Almost black for headings */
    --text-medium: #4a4a4a; /* Medium gray for body */
    --text-light: #6b6b6b; /* Light gray for secondary text */
    --text-muted: #9a9a9a; /* Muted gray for placeholders */
    
    /* Background Colors - Clean & Modern */
    --background-white: #ffffff;
    --background-light: #fafafa; /* Clean light gray */
    --background-cream: #f8f7f5; /* Warm neutral for product cards */
    --background-gray: #f5f5f5; /* Neutral gray */
    
    /* Border & Divider Colors - Minimal */
    --border-color: #e8e8e8; /* Subtle light border */
    --border-dark: #d0d0d0; /* Slightly darker border */
    --divider-color: #e5e5e5; /* Divider lines */
    
    /* Status Colors */
    --success-color: #10b981; /* Green for success */
    --error-color: #ef4444; /* Red for errors */
    --warning-color: #f59e0b; /* Amber for warnings */
    --info-color: #3b82f6; /* Blue for info */
    
    /* Shadows - More refined and modern */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 10px 25px -5px rgba(26, 77, 92, 0.2);
    
    /* Legacy shadow support */
    --shadow-light: var(--shadow-sm);
    --shadow-medium: var(--shadow-md);
    --shadow-heavy: var(--shadow-lg);
    
    /* Border Radius - Minimal & Clean */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --border-radius: var(--radius-sm); /* Minimal radius for professional look */
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: var(--transition-base);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--background-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 300; /* Lighter weight for modern look */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em; /* Subtle letter spacing */
}

.top-promo {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--background-white);
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    padding: 0.6rem 1rem;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: none;
    box-shadow: var(--shadow-sm);
}

header {
    background: var(--background-white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none; /* Clean, minimal header */
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.header-container {
    max-width: 1400px; /* Wider for professional e-commerce */
    margin: 0 auto;
    padding: 0 3rem; /* More generous spacing */
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 300; /* Lighter, more elegant */
    color: var(--primary-color); /* Solid color for professional look */
    text-decoration: none;
    letter-spacing: 2px; /* More spacing for elegance */
    text-transform: uppercase;
    white-space: nowrap;
    transition: var(--transition-base);
}

.logo:hover {
    color: var(--secondary-color);
    letter-spacing: 3px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex: 1;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400; /* Lighter weight */
    font-size: 0.8125rem;
    letter-spacing: 1.5px; /* More spacing for elegance */
    text-transform: uppercase;
    transition: var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

nav a:hover {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px; /* Thin line */
    background: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.header-actions a.wishlist-icon, .header-actions a.login-icon, .header-actions a.cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    background: var(--background-white);
    border-radius: var(--radius-full);
    width: 42px;
    height: 42px;
    transition: var(--transition-base);
    position: relative;
    text-decoration: none;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-xs);
}

.header-actions a.wishlist-icon:hover, .header-actions a.login-icon:hover, .header-actions a.cart-icon:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--background-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px) scale(1.05);
    border-color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    font-size: 0.7rem;
    padding: 3px 7px;
    border-radius: var(--radius-full);
    min-width: 20px;
    text-align: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--background-white);
}

.header-actions a.wishlist-icon:focus, .header-actions a.login-icon:focus, .header-actions a.cart-icon:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}
.header-actions a .cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
    font-weight: bold;
}

/* Admin Header Overrides */
header:has(.header-container a[href*="/admin/"]) {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.9rem 0;
    box-shadow: var(--shadow-lg);
}

header:has(.header-container a[href*="/admin/"]) .logo {
    color: white;
    font-size: 1.4rem;
}

header:has(.header-container a[href*="/admin/"]) nav {
    gap: 1.8rem;
}

header:has(.header-container a[href*="/admin/"]) nav a {
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 0.35rem 0;
}

header:has(.header-container a[href*="/admin/"]) nav a:hover {
    color: white;
    opacity: 1;
}

header:has(.header-container a[href*="/admin/"]) nav a::after {
    background: white;
}

header:has(.header-container a[href*="/admin/"]) .header-actions a {
    color: white;
    background: rgba(255,255,255,0.15);
    font-size: 0.85rem;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    width: auto;
    height: auto;
    transition: all 0.2s ease;
}

header:has(.header-container a[href*="/admin/"]) .header-actions a:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 77, 92, 0.75), rgba(15, 53, 64, 0.85)), url('https://m.media-amazon.com/images/I/715HSC508ML.jpg') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Premium Hero */
.hero-premium {
    background: linear-gradient(135deg, rgba(26, 77, 92, 0.8), rgba(15, 53, 64, 0.9)), url('https://m.media-amazon.com/images/I/715HSC508ML.jpg') center/cover no-repeat;
    min-height: 90vh;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(230,126,34,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 700px;
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300; /* Lighter, more elegant */
    margin: 1.5rem 0;
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--background-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 3px; /* More spacing for elegance */
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300; /* Lighter weight */
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-outline {
    background: transparent;
    border: 1px solid white; /* Thinner border */
    color: white;
    transition: var(--transition);
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color); /* Use primary color on hover */
    border-color: white;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color); /* Solid color, no gradient */
    color: white;
    box-shadow: none; /* Minimal shadow */
    font-weight: 400;
    border: 1px solid var(--primary-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: none; /* No transform for clean look */
    box-shadow: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.95);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Contact Page */
.contact-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem;
    width: 100%;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, rgba(26, 77, 92, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
    border-radius: var(--radius-full);
    border: 1px solid rgba(26, 77, 92, 0.1);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 300; /* Lighter, more elegant */
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 2px; /* More spacing */
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Featured Collections */
.featured-collections {
    background: linear-gradient(135deg, rgba(243,156,18,0.03), rgba(230,126,34,0.03));
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-collection-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition-base);
    background: var(--background-white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.featured-collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.featured-img {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.featured-collection-card:hover .featured-img img {
    transform: scale(1.08);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
}

.featured-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.featured-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.shop-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: var(--transition);
}

.featured-collection-card:hover .shop-link {
    transform: translateX(8px);
}

/* Best Sellers Grid */
.best-sellers {
    background: var(--background-light);
}

.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.bestseller-card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    border: 1px solid var(--border-color);
}

.bestseller-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.bestseller-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.5px;
}

.product-image-link {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--background-cream);
}

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

.bestseller-card:hover .product-image {
    transform: scale(1.1);
}

.bestseller-info {
    padding: 1.5rem;
}

.bestseller-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-stars {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-stars span {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.bestseller-info .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-footer .product-price {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1.15rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    background: var(--background-white);
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    background: var(--background-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Testimonials Showcase */
.testimonials-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-quote {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.testimonial-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
}

.cta-box {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.cta-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 700;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--background-white);
}

.stat-item {
    padding: 1.5rem;
    transition: var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(26, 77, 92, 0.08) 0%, rgba(230, 126, 34, 0.08) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(26,77,92,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Collection Hero */
.collection-hero {
    background: linear-gradient(180deg, rgba(243,156,18,0.04), rgba(243,156,18,0.02));
    padding: 2.25rem 0 1.5rem;
}
.collection-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.collection-hero .breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.collection-hero .breadcrumb a { color: var(--text-dark); text-decoration: none; }
.collection-hero .breadcrumb .current { color: var(--text-light); }
.collection-hero .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0.1rem 0 0.4rem;
}
.collection-hero .hero-content p { color: var(--text-light); margin: 0; }

/* Collection Container with Sidebar */
.collection-container {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    align-items: flex-start;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Filter Sidebar */
.filter-sidebar {
    flex: 0 0 250px;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.filter-group:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.filter-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-bottom: 1rem;
    text-align: left;
}

.filter-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.toggle-icon {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1;
    transition: var(--transition);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.filter-options.collapsed {
    max-height: 0;
    opacity: 0;
    margin: 0;
}

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

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.price-inputs input {
    width: 80px;
    padding: 0.4rem 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
}

.price-inputs span {
    color: var(--text-dark);
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-options label:hover {
    color: var(--secondary-color);
}

.filter-options input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

/* Collection Content - Clean Layout */
.collection-content {
    flex: 1;
    min-width: 0;
}

/* Collection Section - Enhanced Design */
.collection-section {
    padding: 3rem 0 5rem;
    background: var(--background-white); /* Clean white background */
    min-height: 80vh;
}

.collection-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .collection-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .filter-sidebar {
        order: 2;
    }
    
    .collection-content {
        order: 1;
    }
}

/* Product Grid - Enhanced Professional Design */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem 2rem;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem 1rem;
    }
}

/* Product Card - Enhanced Professional Design */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    height: 100%;
}

.product-card {
    background: var(--background-white);
    border-radius: 16px; /* More rounded for modern look */
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05); /* Layered shadows */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.08); /* Subtle border */
    height: 100%;
}

.product-card-link:hover .product-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
    border-color: rgba(0, 0, 0, 0.12);
}

/* Product Media - Enhanced Styling */
/* Product Media - Enhanced with Visual Interest */
.product-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.product-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.product-media::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-link:hover .product-media::before {
    opacity: 1;
}

.product-card-link:hover .product-media::after {
    opacity: 1;
}

.product-media img,
.product-image {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

/* Fallback for broken images */
.product-media img[src*=".jpg"],
.product-media img[src*=".png"],
.product-media img[src*=".svg"] {
    background-color: var(--background-light);
}

.product-card-link:hover .product-media img {
    transform: scale(1.08); /* More noticeable scale */
}

/* Product Overlay - Professional */
.product-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.wishlist-btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 300;
}

.wishlist-btn:hover {
    background: var(--error-color);
    border-color: var(--error-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.product-hover-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: all 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    z-index: 5;
}

.product-card:hover .product-hover-actions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.quick-add-form {
    display: flex;
    justify-content: center;
}

.btn-add-cart {
    background: var(--background-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.product-media-link {
    display: block;
    text-decoration: none;
}

.product-title-link {
    text-decoration: none;
    color: inherit;
}

.product-title-link:hover .product-title {
    color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

/* Product Content - Enhanced Design */
/* Product Content - Enhanced Layout */
.product-content {
    padding: 1.75rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    background: var(--background-white);
}

.product-title {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    text-transform: none;
    transition: color 0.3s ease;
    min-height: 3em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title-link:hover .product-title {
    color: var(--primary-color);
}

/* Product Rating - Minimal */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
}

/* Stars - Enhanced Style */
.stars {
    color: #fbbf24; /* Golden stars */
    font-size: 0.9375rem;
    letter-spacing: 2px;
    line-height: 1;
}

.review-count {
    font-size: 0.8125rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
    font-weight: 400;
    margin-left: 0.25rem;
}

/* Product Price Section - Enhanced Design */
.product-price-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    font-family: var(--font-body);
    line-height: 1;
}

.inline-cart-form {
    display: inline-flex;
}

/* Cart Button - Enhanced */
.btn-cart-icon {
    background: var(--background-white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-cart-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(26, 77, 92, 0.3);
}

/* Quick View Modal */
.quick-view-modal { display: none; }
.quick-view-modal[aria-hidden="false"] { display: block; }
.qvm-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6,12,23,0.55);
    z-index: 2000;
}
.qvm-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(1000px, 96%);
    background: #fff;
    border-radius: 14px;
    z-index: 2001;
    box-shadow: 0 30px 80px rgba(12,29,50,0.2);
    overflow: hidden;
}
.qvm-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}
.qvm-body { display: flex; gap: 1.2rem; padding: 1.6rem; align-items: flex-start; }
.qvm-image { flex: 0 0 44%; display:flex; align-items:center; justify-content:center; }
.qvm-image img { width:100%; height:auto; border-radius:8px; object-fit:contain; }
.qvm-info { flex: 1 1 56%; }
.qvm-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin: 0 0 0.5rem; }
.qvm-desc { color: var(--text-light); margin-bottom: 0.75rem; }
.qvm-price { color: var(--secondary-color); font-weight: 800; font-size: 1.15rem; margin-bottom: 0.9rem; }
.qvm-addtocart .btn { width: 160px; }

@media (max-width: 800px) {
    .qvm-body { flex-direction: column; }
    .qvm-image { width: 100%; }
    .qvm-info { width: 100%; }
}

/* Cart Page / Drawer styling */
.cart-page .cart-layout { display: flex; gap: 2rem; align-items: flex-start; padding: 2rem 0; }
.cart-left { flex: 1 1 60%; }
.cart-drawer { flex: 0 0 420px; background: #fff; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: 0 12px 36px rgba(12,29,50,0.06); padding: 1rem; position: relative; }
.cart-drawer-header { display:flex; justify-content:space-between; align-items:center; padding: 0.25rem 0 0.75rem; border-bottom: 1px solid #f3f3f3; }
.cart-drawer-header h3 { margin:0; font-size:1.15rem; }
.cart-count { color: var(--text-light); font-size:0.95rem; }
.cart-empty { padding: 2rem; text-align:center; color:var(--text-light); }
.cart-items { max-height: 58vh; overflow:auto; padding:0.5rem 0; }
.cart-item { display:flex; gap: 0.8rem; align-items:center; padding: 0.9rem 0; border-bottom: 1px solid #fafafa; }
.cart-item img { width:84px; height:84px; object-fit:cover; border-radius:8px; flex: 0 0 84px; }
.cart-item-info { flex:1; }
.cart-item-title { font-weight:700; color:var(--text-dark); margin-bottom:4px; }
.cart-item-price { color:var(--text-light); font-size:0.95rem; margin-bottom:8px; }
.cart-item-actions { display:flex; gap:0.5rem; align-items:center; font-size:0.95rem; }
.qty-btn { display:inline-flex; width:30px; height:30px; align-items:center; justify-content:center; border-radius:6px; background:#fff; border:1px solid var(--border-color); text-decoration:none; color:var(--text-dark); }
.qty { min-width:28px; text-align:center; font-weight:600; }
.remove-link { margin-left:8px; color:var(--text-light); font-size:0.9rem; text-decoration:none; }
.cart-item-sub { font-weight:800; color:var(--secondary-color); }
.cart-footer { border-top:1px solid #f3f3f3; padding-top:0.9rem; margin-top:0.8rem; }
.cart-summary { margin-bottom:0.8rem; }
.summary-row { display:flex; justify-content:space-between; padding:6px 0; }
.summary-row.small { color:var(--text-light); font-size:0.9rem; }
.btn-checkout { display:block; width:100%; text-align:center; padding:0.9rem; border-radius:10px; font-weight:800; }

@media (max-width: 900px) {
    .cart-page .cart-layout { flex-direction: column-reverse; }
    .cart-drawer { width: 100%; }
}

/* ========================================
   ENHANCED CART PAGE V2 - Modern Minimalist Design
   ======================================== */

.cart-page-v2 {
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background-white) 100%);
    min-height: 85vh;
    padding: 3rem 0 5rem;
}

/* Page Header */
.cart-page-header {
    text-align: left;
    margin-bottom: 3rem;
    padding-bottom: 0;
    border-bottom: none;
}

.cart-page-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 0.4rem;
    letter-spacing: -0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cart-page-subtitle {
    color: var(--text-medium);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Empty Cart State */
.cart-empty-state {
    text-align: center;
    padding: 6rem 2rem;
    background: white;
    border-radius: 0;
    max-width: 600px;
    margin: 3rem auto;
    box-shadow: none;
    border: none;
}

.cart-empty-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.15;
}

.cart-empty-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
    letter-spacing: -0.3px;
}

.cart-empty-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0 0 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

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

.btn-lg:hover::before {
    left: 100%;
}

.btn-lg:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Cart Layout V2 */
.cart-layout-v2 {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

/* Cart Items Section */
.cart-items-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
}

.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
}

.cart-items-header h2 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.continue-shopping-link {
    color: var(--text-light);
    text-decoration: underline;
    font-weight: 400;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0;
}

.continue-shopping-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Cart Items List */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-top: none;
}

/* Individual Cart Item V2 */
.cart-item-v2 {
    display: grid;
    grid-template-columns: 160px 1fr 100px;
    gap: 2rem;
    padding: 2rem;
    background: var(--background-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    border-bottom: none;
    transition: var(--transition-base);
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.cart-item-v2:last-child {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.cart-item-v2:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.cart-item-image-wrapper {
    position: relative;
}

.cart-item-image {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 0;
    background: var(--background-cream);
    border: none;
}

/* Cart Item Details */
.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
}

.cart-item-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Cart Item Attributes */
.cart-item-attributes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.attr-label {
    color: var(--text-medium);
    font-weight: 400;
    min-width: 60px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 0.75rem;
}

.attr-value {
    color: var(--text-dark);
    font-weight: 500;
}

.cart-item-variant {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0.25rem 0;
    display: block;
    font-weight: 400;
}

.cart-item-variant::before {
    content: "";
    display: none;
}

.cart-item-price-mobile {
    display: none;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Cart Item Controls Section */
.cart-item-controls {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.qty-label {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-medium);
    font-weight: 400;
    margin-right: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Cart Item Footer */
.cart-item-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.cart-item-qty-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: all 0.2s ease;
}

.cart-item-qty-controls:hover {
    border-color: transparent;
    background: transparent;
}

.qty-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 0;
    background: var(--background-white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.qty-btn-v2:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.qty-display {
    min-width: 35px;
    text-align: center;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.cart-item-remove {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-light);
    text-decoration: underline;
    font-size: 0.75rem;
    font-weight: 400;
    transition: all 0.2s ease;
    padding: 0;
    border-radius: 0;
    border: none;
    cursor: pointer;
    margin-top: 0;
    letter-spacing: 0.2px;
    text-transform: none;
}

.cart-item-remove:hover {
    color: var(--primary-color);
    background: transparent;
    border-color: transparent;
    text-decoration: underline;
}

.cart-item-remove svg {
    stroke: currentColor;
    width: 13px;
    height: 13px;
}

/* Cart Item Pricing */
.cart-item-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0;
    text-align: right;
    min-width: 100px;
}

.cart-item-price-desktop {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: none;
}

.cart-item-subtotal {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Order Summary Section */
.cart-summary-section {
    position: sticky;
    top: 120px;
}

.cart-summary-card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 20px;
}

.cart-summary-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 2rem;
    padding-bottom: 0;
    border-bottom: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cart-summary-details {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 0.85rem;
}

.summary-label {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 400;
}

.summary-value {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
}

.summary-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.summary-divider {
    display: none;
}

.summary-total {
    padding: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
}

.summary-total .summary-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 600;
    text-transform: uppercase;
}

.summary-total .summary-value {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.btn-checkout-v2 {
    display: block;
    width: 100%;
    padding: 1.2rem;
    text-align: center;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-base);
    margin: 2rem 0 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

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

.btn-checkout-v2:hover::before {
    left: 100%;
}

.btn-checkout-v2:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

/* Cart Benefits */
.cart-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    display: none;
}

.cart-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 400;
}

.cart-benefit-item svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
    width: 18px;
    height: 18px;
}

/* Promo Code Section */
.promo-code-section {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1.5rem;
}

.promo-code-toggle {
    cursor: pointer;
}

.promo-code-toggle summary {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
    padding: 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.promo-code-toggle summary:hover {
    color: var(--primary-color);
}

.promo-code-toggle summary::-webkit-details-marker {
    display: none;
}

.promo-code-toggle summary::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: 400;
}

.promo-code-toggle[open] summary::after {
    content: "−";
}

.promo-code-input-wrapper {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.promo-code-input {
    flex: 1;
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
    font-weight: 400;
    color: var(--text-dark);
}

.promo-code-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(50,50,50,0.08);
}

.promo-code-input::placeholder {
    color: var(--text-light);
}

.btn-apply-promo {
    padding: 0.85rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-apply-promo:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0;
    display: none;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.2s ease;
}

.trust-badge:hover {
    border-color: transparent;
    background: transparent;
}

.trust-badge svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
    width: 20px;
    height: 20px;
}

.trust-badge-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.trust-badge-desc {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin: 0;
    font-weight: 400;
}

/* Responsive Design for Cart */
@media (max-width: 1024px) {
    .cart-layout-v2 {
        grid-template-columns: 1fr 360px;
    }
}

@media (max-width: 768px) {
    .cart-page-v2 {
        padding: 2rem 0 3rem;
    }

    .cart-page-title {
        font-size: 2.2rem;
    }

    .cart-layout-v2 {
        grid-template-columns: 1fr;
    }

    .cart-item-v2 {
        grid-template-columns: 120px 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .cart-item-image {
        width: 120px;
        height: 120px;
    }

    .cart-item-pricing {
        grid-column: 2;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cart-item-price-desktop {
        display: none;
    }

    .cart-item-price-mobile {
        display: block;
    }

    .cart-summary-section {
        position: static;
    }
}

.cart-item-subtotal {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Order Summary Section */
.cart-summary-section {
    position: sticky;
    top: 100px;
}

.cart-summary-card {
    background: #fff;
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
    border: 1px solid #e5e5e5;
}

.cart-summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.cart-summary-details {
    margin-bottom: 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.summary-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.summary-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.summary-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 0;
}

.summary-total {
    padding: 1rem 0 0.5rem;
}

.summary-total .summary-label {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 700;
}

.summary-total .summary-value {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 800;
}

.btn-checkout-v2 {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-checkout-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Cart Benefits */
.cart-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.cart-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.cart-benefit-item svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
}

/* Promo Code Section */
.promo-code-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.25rem;
}

.promo-code-toggle {
    cursor: pointer;
}

.promo-code-toggle summary {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-code-toggle summary::-webkit-details-marker {
    display: none;
}

.promo-code-toggle summary::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 700;
}

.promo-code-toggle[open] summary::after {
    content: "−";
}

.promo-code-input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.promo-code-input {
    flex: 1;
    padding: 0.75rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.promo-code-input:focus {
    border-color: var(--primary-color);
}

.btn-apply-promo {
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-apply-promo:hover {
    background: var(--secondary-color);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.trust-badge svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
}

.trust-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.trust-badge-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cart-layout-v2 {
        grid-template-columns: 1fr 380px;
    }
}

@media (max-width: 900px) {
    .cart-layout-v2 {
        grid-template-columns: 1fr;
    }

    .cart-summary-section {
        position: static;
    }

    .cart-item-v2 {
        grid-template-columns: 90px 1fr;
        gap: 1rem;
    }

    .cart-item-pricing {
        grid-column: 2;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.75rem;
    }

    .cart-item-price-desktop {
        display: none;
    }

    .cart-item-price-mobile {
        display: block;
    }

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

@media (max-width: 640px) {
    .cart-page-v2 {
        padding: 1.5rem 0 3rem;
    }

    .cart-page-title {
        font-size: 1.75rem;
    }

    .cart-items-section {
        padding: 1.25rem;
    }

    .cart-summary-card {
        padding: 1.5rem;
    }

    .cart-item-v2 {
        grid-template-columns: 80px 1fr;
        padding: 1rem;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-name {
        font-size: 1rem;
    }

    .cart-item-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .cart-items-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* Product detail styles - Professional E-commerce Design */
.product-detail-section {
    background: #fff;
    padding: 0;
}

.pd-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.pd-breadcrumb {
    font-size: 0.85rem;
    color: #777;
    letter-spacing: 0.4px;
    margin-bottom: 18px;
}

.pd-breadcrumb a {
    color: #555;
    text-decoration: none;
}

.pd-breadcrumb a:hover {
    color: #111;
}

.pd-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Gallery */
.pd-gallery-wrapper {
    display: flex;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.pd-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pd-thumb {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    background: #fff;
    padding: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.pd-thumb:hover,
.pd-thumb.active {
    border-color: #ddd;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-main-image {
    flex: 1;
    background: #f8f5f2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 600px;
}

.pd-main-image img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
}

/* Right Side - Details */
.pd-details-wrapper {
    padding: 20px 0;
}

.pd-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.pd-chip {
    padding: 6px 10px;
    border: 1px solid #e4e0db;
    border-radius: 16px;
    font-size: 0.78rem;
    color: #6b5a4e;
    background: #f8f5f2;
}

.pd-product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.pd-pricing {
    margin-bottom: 30px;
}

.pd-current-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
}

.pd-tax-info {
    font-size: 0.75rem;
    color: #999;
    margin-left: 8px;
}

/* Product Description */
.pd-description {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-left: 3px solid #d9b6b9;
    border-radius: 4px;
}

.pd-description p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Scent Selector */
.pd-scent-selector {
    margin-bottom: 30px;
}

.pd-colour-selector {
    margin-bottom: 30px;
}

.pd-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #333;
}

.pd-scent-options,
.pd-colour-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pd-scent-btn,
.pd-colour-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border-radius: 2px;
}

/* Color button specific styles */
.pd-colour-btn {
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pd-colour-btn .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

.pd-scent-btn:hover,
.pd-scent-btn.active,
.pd-colour-btn:hover,
.pd-colour-btn.active {
    border-color: #333;
}

.pd-colour-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.pd-colour-btn.active {
    border-width: 3px;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #333;
}

/* Quantity Row */
.pd-quantity-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    width: fit-content;
}

.pd-qty-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-qty-minus {
    border-radius: 2px 0 0 2px;
}

.pd-qty-plus {
    border-radius: 0 2px 2px 0;
}

.pd-qty-btn:hover {
    background: #f5f5f5;
}

.pd-qty-input {
    width: 60px;
    height: 44px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    font-size: 0.95rem;
    font-weight: 600;
    background: #fff;
}

/* Action Buttons */
.pd-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.pd-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px 16px;
}

.pd-highlight-list li {
    position: relative;
    padding-left: 16px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.pd-highlight-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b3a3a;
    font-weight: 700;
}

.pd-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.pd-info-card {
    padding: 14px 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

.pd-origin-section {
    padding: 14px 16px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
    margin-bottom: 24px;
}

.pd-info-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pd-info-value {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

.pd-btn-add,
.pd-btn-buy {
    width: 100%;
    padding: 16px 32px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.pd-btn-add {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
}

.pd-btn-add:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pd-btn-buy {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: #fff;
}

.pd-btn-buy:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Collapsible Section */
.pd-collapsible {
    border-top: 1px solid #e8e8e8;
    padding: 20px 0;
    margin-bottom: 10px;
}

.pd-collapsible summary {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pd-collapsible summary::-webkit-details-marker {
    display: none;
}

.pd-collapsible summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
}

.pd-collapsible[open] summary::after {
    content: '−';
}

.pd-collapsible-content {
    padding-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
}

/* Description Section */
.pd-description-section {
    border-top: 1px solid #e8e8e8;
    padding-top: 20px;
}

.pd-description-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.pd-specs {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.pd-details-list {
    margin: 20px 0;
}

.pd-details-list p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.pd-details-list strong {
    font-weight: 600;
    color: #333;
}

/* Share Section */
.pd-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.pd-share-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
}

.pd-share-icons {
    display: flex;
    gap: 10px;
}

.pd-share-icons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}

.pd-share-icons a:hover {
    color: #333;
}

/* Responsive Design */
@media (max-width: 980px) {
    .pd-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pd-gallery-wrapper {
        position: static;
        flex-direction: column-reverse;
    }
    
    .pd-thumbnails {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .pd-thumb {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
    
    .pd-main-image {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .pd-container {
        padding: 20px 15px;
    }
    
    .pd-product-title {
        font-size: 1.25rem;
    }
    
    .pd-main-image {
        padding: 20px;
        min-height: 350px;
    }
}

/* Mini cart drawer styles - Professional E-commerce */
.mini-cart-drawer { 
    display: none; 
    position: fixed;
    inset: 0;
    z-index: 2100;
}

.mini-cart-drawer[aria-hidden="false"] { 
    display: block;
    animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from { 
        transform: translateX(100%);
        opacity: 0;
    }
    to { 
        transform: translateX(0);
        opacity: 1;
    }
}

.mcd-backdrop { 
    position: fixed; 
    inset: 0; 
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 2100;
    cursor: pointer;
}

.mcd-panel { 
    position: fixed; 
    top: 0; 
    right: 0; 
    height: 100vh; 
    width: 420px; 
    background: #fff; 
    z-index: 2101; 
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex; 
    flex-direction: column;
    animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mcd-close { 
    position: absolute; 
    top: 20px; 
    right: 20px; 
    background: #f5f5f5;
    border: none; 
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 18px; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #666;
    font-weight: 300;
    line-height: 1;
}

.mcd-close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

.mcd-header { 
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.mcd-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem;
}

.mcd-count {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.mcd-body { 
    padding: 0;
    overflow-y: auto; 
    flex: 1;
    background: #fff;
}

.mcd-body::-webkit-scrollbar {
    width: 6px;
}

.mcd-body::-webkit-scrollbar-track {
    background: transparent;
}

.mcd-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.mcd-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.mcd-items { 
    display: flex; 
    flex-direction: column; 
    gap: 0;
    padding: 0;
    min-height: 200px;
}

.mcd-empty-state {
    display: block;
    width: 100%;
}

/* Enhanced Mini Cart Item - Matching Main Cart Design */
.mcd-item-v2 {
    display: flex !important;
    gap: 1rem;
    background: var(--background-white);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 120px;
    flex-shrink: 0;
}

.mcd-item-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.mcd-item-v2:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.mcd-item-v2:hover::before {
    opacity: 1;
}

.mcd-item-image-wrap {
    flex-shrink: 0;
    position: relative;
}

.mcd-item-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-md);
    background: var(--background-cream);
    border: 2px solid var(--border-color);
    transition: var(--transition-base);
    box-shadow: var(--shadow-xs);
}

.mcd-item-v2:hover .mcd-item-img {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

.mcd-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 0.5rem;
}

.mcd-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.mcd-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mcd-item-attributes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.mcd-item-scent {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: var(--background-light);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.mcd-item-scent::before {
    content: "🌸";
    font-size: 0.9rem;
}

.mcd-item-colour {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: var(--background-light);
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.mcd-item-colour::before {
    content: "🎨";
    font-size: 0.9rem;
}

.mcd-remove-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.mcd-remove-btn:hover {
    background: #fee2e2;
    color: #dc2626;
}

.mcd-remove-btn svg {
    stroke: currentColor;
    width: 14px;
    height: 14px;
}

.mcd-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.mcd-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-light);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.25rem;
}

.mcd-qty-btn-v2 {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    background: var(--background-white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition-base);
}

.mcd-qty-btn-v2:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-xs);
}

.mcd-qty-btn-v2:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.mcd-qty-num {
    min-width: 32px;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.mcd-item-subtotal {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2px;
}

.mcd-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    display: block;
}

.mcd-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.mcd-empty-text {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mcd-empty-subtext {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.mcd-footer { 
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    bottom: 0;
}

.mcd-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mcd-subtotal-label {
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mcd-total-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.mcd-footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mcd-footer-buttons .btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
}

.mcd-footer-buttons .btn-primary {
    background: #1a4d5c;
    color: #fff;
    border: none;
}

.mcd-footer-buttons .btn-primary:hover {
    background: #0f3540;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 77, 92, 0.3);
}

.mcd-footer-buttons .btn-secondary {
    background: transparent;
    color: #4b5563;
    border: 1px solid #e5e7eb;
}

.mcd-footer-buttons .btn-secondary:hover {
    border-color: #1a4d5c;
    color: #1a4d5c;
    background: #f9fafb;
}

.mcd-continue-shopping {
    text-align: center;
    margin-top: 0.5rem;
}

.mcd-continue-shopping a {
    color: #6b7280;
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mcd-continue-shopping a:hover {
    color: #1a4d5c;
}

@media (max-width: 600px) {
    .mcd-panel { width: 100%; max-width: 420px; }
}

.product-price {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-top: 6px;
}

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

/* Responsive breakpoints for product grid with sidebar */
@media (min-width: 1400px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1100px) and (max-width: 1399px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) and (max-width: 1099px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .filter-sidebar { flex: 0 0 220px; padding: 1.25rem; }
}

@media (min-width: 600px) and (max-width: 899px) {
    .collection-container { flex-direction: column; }
    .filter-sidebar { 
        flex: 1 1 auto;
        width: 100%;
        position: static;
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    .filter-group { margin-bottom: 0; flex: 1 1 200px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 599px) {
    .collection-container { flex-direction: column; }
    .filter-sidebar { 
        flex: 1 1 auto;
        width: 100%;
        position: static;
    }
    .product-grid { grid-template-columns: repeat(1, 1fr); }
    .product-card { border-radius: 12px; }
}

/* Filter Sidebar - Enhanced */
.filter-sidebar {
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

/* Filter Group - Enhanced */
.filter-group {
    margin-bottom: 1.5rem;
}

.filter-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.filter-toggle:hover {
    border-bottom-color: var(--border-color);
}

.filter-title {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.toggle-icon {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.filter-toggle:hover .toggle-icon {
    color: var(--primary-color);
}

.filter-options {
    padding: 1.25rem 0 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.filter-options label {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.filter-options label:hover {
    color: var(--primary-color);
}

/* Collection Cards */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collection-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
}

.collection-card:hover {
    transform: scale(1.02);
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.collection-content {
    color: white;
}

.collection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.collection-description {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.testimonial-card {
    background: var(--background-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--border-color);
}

.testimonial-stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonials-grid .stars {
    display: inline-block;
    margin: 0 auto 0.2rem;
    color: var(--accent-color);
}

.testimonials-grid p {
    color: var(--text-dark);
    line-height: 1.65;
    font-size: 0.96rem;
    margin: 0 auto;
}

.testimonials-grid .testimonial-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.5;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    transition: var(--transition-base);
    font-weight: 400;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-grid,
    .collection-grid,
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   CHECKOUT PAGE - Professional Design
   ======================================== */

.checkout-page {
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background-white) 100%);
    min-height: 80vh;
    padding: 2rem 0 4rem;
}

/* Checkout Header */
.checkout-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.checkout-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 1.5rem;
    letter-spacing: -0.5px;
}

/* Checkout Steps */
.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 1.5rem;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #999;
    font-size: 0.95rem;
    font-weight: 500;
}

.checkout-step.active {
    color: var(--primary-color);
}

.checkout-step.completed {
    color: #10b981;
}

.step-number {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.checkout-step.active .step-number {
    background: var(--primary-color);
    color: #fff;
}

.checkout-step.completed .step-number {
    background: #10b981;
    color: #fff;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.step-connector.active {
    background: var(--primary-color);
}

/* Checkout Empty State */
.checkout-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
    max-width: 500px;
    margin: 3rem auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.checkout-empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.checkout-empty-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
}

.checkout-empty-text {
    color: var(--text-light);
    font-size: 1.05rem;
    margin: 0 0 2rem;
}

/* Checkout Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
}

/* Checkout Form Section */
.checkout-form-section {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.25rem;
}

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

.form-row:has(.form-group:nth-child(2)) {
    grid-template-columns: 1fr 1fr;
}

.form-row:has(.form-group:nth-child(3)) {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 169, 109, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
}

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

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
    position: relative;
    z-index: 10;
}

/* Checkout Summary */
.checkout-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.summary-items::-webkit-scrollbar {
    width: 6px;
}

.summary-items::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.summary-items::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.summary-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fafbfc;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.summary-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #fff;
}

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

.summary-item-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.summary-item-scent {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0 0 0.25rem;
}

.summary-item-qty {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.summary-item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    white-space: nowrap;
}

.summary-totals {
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.summary-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.benefit-item svg {
    flex-shrink: 0;
    stroke: var(--primary-color);
}

/* ========================================
   CHECKOUT STEP 2 - REVIEW ORDER
   ======================================== */

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

.review-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.review-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin: -0.5rem 0 1rem;
}

.review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.review-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.review-edit-link {
    font-size: 0.95rem;
    color: #fff;
    background: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.review-edit-link::before {
    content: "✎";
    font-size: 1rem;
}

.review-edit-link:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224, 169, 109, 0.3);
}

.review-card-body {
    padding: 1.5rem;
}

/* Review Info Grid */
.review-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.review-info-item {
    display: flex;
    flex-direction: column;
}

.review-info-item.full-width {
    grid-column: 1 / -1;
}

.review-info-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-info-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

/* Review Items List */
.review-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fafbfc;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.review-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #fff;
}

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

.review-item-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
}

.review-item-scent,
.review-item-qty,
.review-item-price {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0 0 0.25rem;
}

.review-item-subtotal {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--secondary-color);
    white-space: nowrap;
}

/* Review Totals */
.review-totals {
    display: flex;
    flex-direction: column;
}

.review-total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.review-total-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.review-total-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.review-total-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.review-total-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 0.5rem 0;
}

.review-total-final {
    padding: 1rem 0 0.5rem;
    border-top: 2px solid var(--border-color);
    margin-top: 0.5rem;
}

.review-total-final .review-total-label {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 700;
}

.review-total-final .review-total-value {
    font-size: 1.5rem;
    color: var(--secondary-color);
    color: var(--primary-color);
}

/* ========================================
   CHECKOUT STEP 3 - PLACE ORDER
   ======================================== */

.place-order-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.place-order-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.place-order-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin: -0.5rem 0 1rem;
}

/* Confirmation Box */
.confirmation-box {
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
    border: 2px solid #e0a96d;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.confirmation-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.confirmation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
}

.confirmation-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Quick Summary */
.quick-summary {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.quick-summary-item:last-child {
    border-bottom: none;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
    margin-top: 0.5rem;
}

.quick-summary-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.quick-summary-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.quick-summary-total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.btn-place-order {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkout Success Page */
.checkout-success {
    background: #fafbfc;
    min-height: 80vh;
    padding: 4rem 0;
}

.success-card {
    background: #fff;
    border-radius: 16px;
    padding: 4rem 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.success-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 1rem;
}

.success-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0 0 0.75rem;
}

.success-subtext {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0 0 2.5rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr 380px;
    }
}

@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

    .checkout-steps {
        gap: 0;
    }

    .step-label {
        display: none;
    }

    .step-connector {
        width: 40px;
        margin: 0 0.5rem;
    }

    .form-row:has(.form-group:nth-child(2)),
    .form-row:has(.form-group:nth-child(3)) {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .review-info-grid {
        grid-template-columns: 1fr;
    }

    .review-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-item-subtotal {
        align-self: flex-end;
        margin-top: -1rem;
    }
}

@media (max-width: 640px) {
    .checkout-page {
        padding: 1.5rem 0 3rem;
    }

    .checkout-title {
        font-size: 1.75rem;
    }

    .checkout-form-section {
        padding: 1.5rem;
    }

    .summary-card {
        padding: 1.5rem;
    }

    .success-card {
        padding: 2.5rem 1.5rem;
    }

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-dark);
}