/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --clr-bg: #FAF8F5; /* Warm Ivory */
    --clr-text: #2C2A29; /* Charcoal */
    --clr-primary: #B25A42; /* Terracotta */
    --clr-primary-hover: #964a34;
    --clr-secondary: #1F3F34; /* Mughal Green */
    --clr-accent: #D4AF37; /* Soft Gold */
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.section-padding {
    padding: var(--spacing-xl) 10%;
}

/* ===== UTILITIES & BUTTONS ===== */
.btn-primary, .btn-secondary, .btn-primary-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--clr-primary);
    color: #fff;
    border: 1px solid var(--clr-primary);
}

.btn-primary:hover {
    background-color: var(--clr-primary-hover);
    border-color: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(178, 90, 66, 0.3);
}

.btn-secondary {
    background-color: var(--clr-secondary);
    color: #fff;
    border: 1px solid var(--clr-secondary);
}

.btn-secondary:hover {
    background-color: #152b23;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(31, 63, 52, 0.3);
}

.btn-primary-outline {
    background-color: transparent;
    color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
}

.btn-primary-outline:hover {
    background-color: var(--clr-primary);
    color: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 10%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 10%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 1px;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--clr-primary);
    transition: var(--transition-smooth);
}

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

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    padding: 0 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding-top: 5rem; /* offset for navbar */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(250, 248, 245, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--clr-secondary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.glass-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.glass-card h3 {
    font-size: 1.1rem;
    color: var(--clr-primary);
    margin-bottom: 0.3rem;
}

.glass-card p {
    font-size: 0.9rem;
    color: #666;
}

/* ===== COLLECTION SECTION ===== */
.collection {
    background-color: #fff;
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.product-card {
    group: product;
}

.product-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    margin-bottom: 1.5rem;
    background-color: var(--clr-bg);
}

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

.placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
}

.placeholder-text {
    font-family: var(--font-heading);
    color: #999;
    font-size: 1.2rem;
    font-style: italic;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 63, 52, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-image-container:hover .overlay {
    opacity: 1;
}

.btn-view {
    background: #fff;
    color: var(--clr-text);
    border: none;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.product-image-container:hover .btn-view {
    transform: translateY(0);
}

.btn-view:hover {
    background: var(--clr-primary);
    color: #fff;
}

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

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    display: block;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-notes {
    font-size: 0.9rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.product-price {
    font-weight: 600;
    color: var(--clr-text);
}

/* ===== CRAFTSMANSHIP SECTION ===== */
.craftsmanship {
    padding: var(--spacing-xl) 10%;
    background-color: var(--clr-secondary);
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
}

.craftsmanship::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
}

.craft-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.craft-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--clr-accent);
}

.craft-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ddd;
}

.craft-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.craft-features li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.craft-features svg {
    color: var(--clr-accent);
}

.craft-features span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #111;
    color: #eee;
    padding: var(--spacing-xl) 10% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #999;
}

.footer-links h3, .footer-newsletter h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #999;
}

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

.footer-newsletter p {
    color: #999;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #333;
    background: #222;
    color: #fff;
    border-radius: 4px;
    outline: none;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    border-color: var(--clr-primary);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--clr-primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: var(--clr-primary-hover);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

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

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .glass-card {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
    }
    
    .nav-links {
        display: none; /* simple mobile menu hidden for now */
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .craft-features {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ===== MULTI-PAGE ADDITIONS ===== */
.page-header {
    padding-top: 8rem;
    padding-bottom: 2rem;
    text-align: center;
    background-color: var(--clr-bg);
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Product Detail Grid */
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding-top: 8rem;
}

.product-image-large img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.product-info-large {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.product-description p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 2.5rem 0;
}

/* Order Form */
.order-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--clr-secondary);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--clr-bg);
    transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(178, 90, 66, 0.1);
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #555;
    cursor: not-allowed;
    border-color: #eee;
}

.order-success {
    text-align: center;
    padding: 2rem;
    background-color: #f8fffb;
    border: 1px solid #d1ebd8;
    border-radius: 8px;
}

.order-success h3 {
    color: var(--clr-secondary);
    margin-bottom: 1rem;
}

.order-success p {
    color: #555;
}

.not-available {
    text-align: center;
    padding: 3rem;
    background-color: #fafafa;
    border-radius: 8px;
    border: 1px dashed #ccc;
}

.not-available p {
    margin-bottom: 1.5rem;
    color: #666;
}

@media (max-width: 900px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 6rem;
    }
    
    .product-info-large {
        padding: 2rem;
    }
}

/* ===== CHECKOUT PAGE ADDITIONS ===== */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--clr-text);
}

.radio-label input[type="radio"] {
    width: auto;
    cursor: pointer;
    accent-color: var(--clr-primary);
}

.bank-details {
    background-color: #fafafa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px dashed #ccc;
    margin-bottom: 1.5rem;
}

.bank-details p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

.bank-card {
    background: #fff;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid var(--clr-primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.bank-card p {
    margin-bottom: 0.3rem;
    color: var(--clr-text);
}

/* ===== CART & PRODUCT OPTIONS ===== */
.size-option {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    background: #fff;
    color: #555;
}

.size-option:hover {
    border-color: var(--clr-primary);
}

.size-option.active {
    border-color: var(--clr-primary);
    background: var(--clr-primary);
    color: #fff;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0; right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--clr-bg);
    z-index: 2000;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}
.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.cart-header h2 {
    font-size: 1.5rem;
    color: var(--clr-secondary);
}
.cart-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}
.cart-close-btn:hover {
    color: var(--clr-primary);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}
.cart-item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    background: #eee;
}
.cart-item-details {
    flex: 1;
}
.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--clr-secondary);
}
.cart-item-size {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
}
.cart-item-price {
    font-weight: 500;
    color: var(--clr-primary);
}
.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}
.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}
.cart-item-remove:hover {
    color: var(--clr-primary);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: #fff;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-text);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.contact-form-container, .contact-info-container {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.contact-form-container h3, .contact-info-container h3 {
    font-size: 2rem;
    color: var(--clr-secondary);
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #faf8f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 0.3rem;
}

.contact-details a {
    font-size: 1.1rem;
    color: var(--clr-text);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.contact-details a:hover {
    color: var(--clr-primary);
}

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

.social-links a {
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: #fff;
    background: var(--clr-primary);
    transform: translateY(-3px);
}

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

/* ===== STORY PAGE ===== */
.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-content {
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 3rem;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
}

.dropcap::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 0.8;
    padding-top: 0.2rem;
    padding-right: 0.5rem;
    color: var(--clr-primary);
}

.story-highlight {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--clr-background);
    border-left: 4px solid var(--clr-primary);
    border-radius: 0 8px 8px 0;
}

.story-highlight blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--clr-secondary);
    text-align: center;
}

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

.story-features .feature-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.story-features svg {
    margin-bottom: 1rem;
}

.story-features h4 {
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.story-features p {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .story-content {
        padding: 2rem;
    }
    .story-features {
        grid-template-columns: 1fr;
    }
    .story-hero-img {
        height: 250px;
    }
}

/* ===== HERO SLIDER ===== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content .eyebrow {
    color: #f0e6d2;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.slide-content .hero-title {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-content .hero-subtitle {
    color: #ddd;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-secondary-light {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}
.btn-secondary-light:hover {
    background: #fff;
    color: var(--clr-primary);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: rgba(255,255,255,0.3);
}

.prev-btn { left: 2rem; }
.next-btn { right: 2rem; }

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Transparent Navbar on Home Page */
.page-home .navbar {
    background: transparent;
    box-shadow: none;
}
.page-home .navbar .brand-logo, 
.page-home .navbar .nav-links a, 
.page-home .navbar .cart-open-btn,
.page-home .navbar .btn-primary-outline {
    color: #fff;
}
.page-home .navbar .btn-primary-outline {
    border-color: rgba(255,255,255,0.5);
}
.page-home .navbar .btn-primary-outline:hover {
    background: #fff;
    color: var(--clr-primary);
}

.page-home .navbar.scrolled {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.page-home .navbar.scrolled .brand-logo, 
.page-home .navbar.scrolled .nav-links a, 
.page-home .navbar.scrolled .cart-open-btn {
    color: var(--clr-secondary);
}
.page-home .navbar.scrolled .btn-primary-outline {
    color: var(--clr-secondary);
    border-color: var(--clr-secondary);
}
.page-home .navbar.scrolled .btn-primary-outline:hover {
    background: var(--clr-secondary);
    color: #fff;
}

@media (max-width: 768px) {
    .slide-content .hero-title {
        font-size: 3rem;
    }
    .slider-btn {
        display: none;
    }
}
