:root {
    /* Modern Clean Palette (Refined) */
    --primary-color: #4D403D;
    /* Restored Brand Dark Brown/Grey - Softer than black */
    --primary-hover: #333333;

    --brand-color: #D98A7A;
    --accent-red: #E53935;

    --text-color: #444444;
    /* Soft Dark Grey */
    --light-text: #777777;

    --background-color: #FFFFFF;
    --card-bg: #FFFFFF;

    --border-color: #E0E0E0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    --font-main: 'Roboto', system-ui, -apple-system, sans-serif;
    --font-serif: 'Times New Roman', serif;

    --transition: all 0.2s ease;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

/* ================= QUICK VIEW MODAL ================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Darker overlay */
    z-index: 9999;
    /* Very high z-index to be above everything */
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex !important;
    /* Force display */
}

/* ================= HEADER (Makehub Style) ================= */
header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1000;
}

header.scrolled {
    background: rgba(243, 236, 232, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Header Light Mode for Dark Slides */
.header.header-light {
    background: transparent !important;
    box-shadow: none !important;
}

.header.header-light .logo-center a {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.header.header-light .icon-btn {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.header.header-light .btn-header-cta {
    background: #fff !important;
    color: var(--primary-color) !important;
}

/* Header Scrolled State - solid background with dark text */
.header.header-scrolled {
    background: rgba(243, 236, 232, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.header.header-scrolled .logo-center a {
    color: var(--text-color) !important;
    text-shadow: none !important;
}

.header.header-scrolled .icon-btn {
    color: var(--text-color) !important;
    text-shadow: none !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Left: Nav (Removed) */
/* .nav-left { ... } */

/* Center: Logo */
.logo-center {
    flex: 0 0 auto;
    text-align: left;
}

.logo-center a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    /* Better visibility on dark backgrounds */
}

.logo-center span {
    color: var(--primary-color);
}

/* Right: Actions */
.actions-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    flex: 1;
}

.icon-btn {
    font-size: 1.1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    /* Better visibility on dark backgrounds */
}

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

/* Cart Dropdown */
.cart-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    display: none;
    z-index: 1200;
    margin-top: 10px;
}

/* Invisible bridge to prevent dropdown from closing when moving mouse over the gap */
.cart-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Show on hover over wrapper */
.cart-wrapper:hover .cart-dropdown,
.cart-dropdown.active {
    display: block;
}

.cart-preview-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.cart-preview-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f9f9f9;
}

.cart-preview-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.cart-preview-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-preview-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-preview-title {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 4px;
    color: var(--text-color);
}

.cart-preview-price {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.cart-preview-total {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.btn-cart-view {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.2s;
}

.btn-cart-view:hover {
    background: var(--primary-hover);
}

.empty-cart-msg {
    text-align: center;
    color: #999;
    padding: 1rem 0;
}

.btn-header-cta {
    background: var(--primary-color);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s, background 0.3s;
}

.btn-header-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    font-size: 0.65rem;
    width: 16px;
    height: 16px;
    justify-content: center;
    align-items: center;
}

/* Mobile Toggle - Visible Always as Desktop Nav is removed */
.burger {
    display: block;
    border: none;
    background: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1010;
}

.burger-item,
.burger::before,
.burger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    left: 0;
    transition: 0.3s;
}

.burger::before {
    top: 0;
}

.burger-item {
    top: 50%;
    transform: translateY(-50%);
}

.burger::after {
    bottom: 0;
}

@media (max-width: 992px) {

    .btn-header-cta,
    .search-trigger {
        display: none;
    }

    .header-container {
        padding: 0 1rem;
    }

    /* Logo adjustment for mobile */
    .logo-center {
        position: static;
        transform: none;
        flex: 1;
        text-align: left;
    }
}


/* ================= HERO (Makehub Style Redesign) ================= */
.hero {
    position: relative;
    min-height: 100vh;
    /* Full viewport height */
    overflow: hidden;
    padding-top: 100px;
    /* Space for fixed header */
    display: flex;
    align-items: center;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.recommended-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Split Equal */
    gap: 2rem;
    align-items: center;
    width: 100%;
}

/* Left Content */
.hero-text-content {
    padding-right: 2rem;
}

.best-price-badge {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.best-price-badge i {
    color: var(--primary-color);
    /* Star color */
}

.hero-text-content h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    /* Large Headline */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    /* Make headline colored */
}

.hero-text-content h1 span {
    color: var(--text-color);
}

.hero-desc {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Mission/Vision Columns */
.hero-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-col h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.hero-col ul li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-col ul li i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

/* Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-shop-now {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    /* Pill */
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(217, 138, 122, 0.2);
}

.btn-shop-now:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-shop-now i {
    font-size: 0.7rem;
}

.call-us-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

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

.call-text span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
}

.call-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--light-text);
}


/* Right Image */
.hero-image-right {
    position: relative;
    height: 100%;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    /* Added aspect ratio */
    border-radius: 20px;
    /* Light rounding */
    /* Add mask effect if possible, for now just clean fit */
}


/* Categories */
.categories {
    padding: 4rem 5% 1rem;
    /* Reduced bottom padding */
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 500;
    color: var(--text-color);
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    /* Space from banner */
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    min-width: 90px;
    padding: 10px;
    /* Added padding area */
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item.active {
    /* Removed boxy background */
    background: transparent;
    border-color: transparent;
}

.category-item.active .cat-icon {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(197, 139, 111, 0.4);
    transform: scale(1.1);
}

.category-item.active span {
    font-weight: 700;
    color: var(--primary-color);
}

.cat-icon {
    width: 70px;
    /* Slightly larger for better touch targets */
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    /* Strict margin: 0 side margins */
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.category-item:hover .cat-icon {
    transform: scale(1.05);
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.category-item span {
    font-weight: 500;
}

/* Products */
.products-section {
    padding: 2rem 5% 4rem;
    /* Increased top padding slightly to 2rem */
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    /* Space from category icons */
}

/* ================= PRODUCT CARD HOVER ACTIONS ================= */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.2s;
    border: 1px solid #e8e8e8;
    /* Thin grey border */
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    /* Subtle shadow */
}

/* Hover State for Card */
.product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    /* Slightly stronger shadow on hover */
    transform: translateY(-2px);
    border-color: #d0d0d0;
    z-index: 2;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #f5f5f5;
    padding: 10px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: #D98A7A;
    /* Forkosmo coral accent */
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: #4D403D;
    /* Forkosmo brown text */
    min-height: 2.8rem;
    /* Consistent height for titles */
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f5f5f5;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
}

.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #999;
    margin-left: 0.5rem;
}

.add-btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #D98A7A;
    /* Forkosmo coral */
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    font-size: 1.2rem;
}

.add-btn:hover {
    background: #c77a6a;
    /* Darker coral on hover */
    transform: scale(1.05);
}

/* Footer */
footer {
    background: white;
    color: var(--text-color);
    padding: 4rem 5% 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
    /* Space from products above */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

.footer-col ul li {
    max-height: 100vh;
    overflow: hidden;
    /* Account for fixed header if needed, though usually banners go behind or start at top */
    padding-top: 0;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    z-index: 1;
}

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

/* Background Images */
.slide-bg-desktop,
.slide-bg-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg-mobile {
    display: none;
}

/* Slide Content Overlay */
.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    /* Ensure content is above bg */
}

/* Optional overlay to make text readable */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 5;
}

.slide-text {
    color: #fff;
    max-width: 600px;
    padding: 2rem;
}

.slide-subtitle {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.slide-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-slide {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-slide:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Navigation Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    /* Or centered */
    display: flex;
    gap: 15px;
    z-index: 20;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    width: 30px;
    border-radius: 12px;
    background: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-slider {
        height: 600px;
        /* Tablet height */
        margin-top: 60px;
        /* Header spacing if needed */
    }

    .slide-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        /* Mobile height - use svh to account for browser navigation */
        height: 100svh;
        height: 100dvh;
        /* Fallback */
        height: 100vh;
        /* Fallback for older browsers */
        max-height: none;
        min-height: 550px;
        margin-top: 0;
    }

    .slide-bg-desktop {
        display: none;
    }

    .slide-bg-mobile {
        display: block;
        height: 100svh;
        height: 100dvh;
        height: 100vh;
        object-fit: cover;
        object-position: top center;
    }

    .slide-content {
        align-items: flex-start;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .slide::after {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 40%);
    }

    .slide-text {
        text-align: left;
        margin: 0;
        padding: 1.5rem;
        max-width: 90%;
    }

    .slide-text h1 {
        font-size: 1.7rem;
        line-height: 1.15;
        margin-bottom: 0.6rem;
    }

    .slide-text .slide-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .slide-text .slide-features li {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .slider-controls {
        display: none;
    }

    .slider-dots {
        bottom: 25px;
    }
}


.footer-col ul li a {
    color: var(--light-text);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 2rem;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-image-right {
        display: none !important;
    }

    .hero {
        min-height: auto !important;
        padding-bottom: 2rem;
    }

    .hero-container-split {
        display: flex;
        flex-direction: column;
        height: auto !important;
        min-height: 0 !important;
        padding-top: 2rem;
        padding-bottom: 0;
        gap: 1rem;
    }

    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .hero-image-right {
        order: -1;
        /* Image first on mobile */
        min-height: 300px;
    }

    /* Mobile Text Adjustments */
    @media (max-width: 768px) {
        .hero-text-content h1 {
            font-size: 2rem;
        }

        .hero-col h3 {
            font-size: 1rem;
            /* Smaller Mission/Vision title */
            margin-bottom: 0.5rem;
        }

        .hero-col ul li {
            font-size: 0.8rem;
            /* Smaller text */
            margin-bottom: 0.3rem;
        }

        .hero-columns {
            margin-bottom: 0.5rem;
            /* Drastically reduce gap before phone */
            gap: 1rem;
        }

        .hero-actions {
            margin-top: 0;
            /* ensure no extra space */
            padding-top: 0;
        }

        /* Smaller Phone Icon on Mobile */
        .phone-icon-circle {
            width: 35px;
            height: 35px;
            font-size: 0.9rem;
        }

        .call-text span {
            font-size: 0.75rem;
        }

        .call-text strong {
            font-size: 0.9rem;
        }
    }
}

/* ================= PRODUCT PAGE REDESIGN (KylieOpt Style) ================= */
.product-main-info {
    display: flex;
    flex-direction: column;
}

.product-title-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
}

.product-meta-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #666;
}

.meta-link {
    color: #2ba2da;
    text-decoration: none;
    border-bottom: 1px dashed #2ba2da;
}

.meta-link:hover {
    border-bottom-style: solid;
}

.divider {
    color: #ccc;
}

.product-categories-list {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-categories-list a {
    color: #2ba2da;
    text-decoration: none;
}

/* Price & Buy Block */
.product-price-block-new {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-container {
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d32f2f;
    /* Red Price */
    line-height: 1;
}

.currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d32f2f;
}

.stock-status {
    color: #4caf50;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.purchase-actions-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Qty Selector */
.quantity-selector {
    display: flex;
    border: 1px solid #ccc;
    height: 48px;
}

.quantity-selector button {
    width: 40px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #555;
    font-weight: bold;
}

.quantity-selector button:hover {
    background: #e0e0e0;
}

.quantity-selector input {
    width: 50px;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    outline: none;
}

/* Buy Button - Rectangular */
.btn-buy-rect {
    background: #d32f2f;
    color: white;
    border: none;
    height: 48px;
    padding: 0 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.2s;
    border-radius: 2px;
}

.btn-buy-rect:hover {
    background: #b71c1c;
}

.one-click-buy a {
    font-size: 0.9rem;
    color: #333;
    text-decoration: underline;
}

.one-click-buy a:hover {
    text-decoration: none;
}

.product-short-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Tabs */
.product-tabs {
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.tab-headers {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid #ddd;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
    line-height: 1.6;
    color: #444;
}

.tab-content.active {
    display: block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 250px;
}

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

/* Missing Product Layout Styles */
.breadcrumbs {
    padding: 1rem 5%;
    font-size: 0.85rem;
    color: #666;
    max-width: 1400px;
    margin: 100px auto 0;
}

.breadcrumbs a {
    color: #333;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 0.5rem;
    color: #ccc;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 45% 50%;
    gap: 5%;
    padding: 1rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Gallery */
.product-gallery {
    border: 1px solid #e0e0e0;
    padding: 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery img {
    max-width: 100%;
    max-height: 500px;
}

@media (max-width: 768px) {
    .product-detail-container {
        display: block;
        /* Switch to block to avoid grid complications if any */
        width: 100%;
        max-width: 100vw;
        padding: 0 1rem 2rem 1rem;
        /* Clear bottom padding definition */
        margin: 0;
        box-sizing: border-box;
    }

    .product-gallery {
        margin-bottom: 2rem;
        width: 100%;
        border: 1px solid #eee;
        /* Ensure border is within box */
    }

    .buy-row-main {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .btn-buy-red-rect {
        flex: 1;
        /* Make button grow to fill space */
        min-width: 120px;
    }

    .stock-status-green {
        width: 100%;
        /* Force new line if needed or adjust auto */
        margin-top: 0.5rem;
    }

    .product-gallery img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* ================= PIXEL PERFECT KYLIEOPT MATCH ================= */

/* Title & Links */
.product-title-large {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    font-family: 'Arial', sans-serif;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.product-meta-top {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.meta-link-top {
    background: #f1f1f1;
    padding: 2px 8px;
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    border-radius: 2px;
}

.product-articul {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1.5rem;
}

/* Grey Price Box */
.price-box-grey {
    background: #f8f9fa;
    /* Light grey bg */
    padding: 2rem;
    border-radius: 4px;
    /* Slight radius */
    margin-bottom: 1.5rem;
}

.price-row-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.current-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    /* Black */
    line-height: 1;
}

.old-price-small {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.badge-discount-yellow {
    background: #FFEB3B;
    /* Bright Yellow */
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
}

/* Buy Row Inside Box */
.buy-row-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-block-white {
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    height: 40px;
    align-items: center;
    border-radius: 3px;
}

.qty-block-white button {
    background: transparent;
    border: none;
    width: 30px;
    height: 100%;
    cursor: pointer;
    font-weight: bold;
    color: #333;
}

.qty-block-white input {
    width: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
}

.btn-buy-red-rect {
    background: #E53935;
    /* Strong Red */
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    height: 40px;
    padding: 0 2rem;
    cursor: pointer;
    transition: 0.2s;
    border-radius: 3px;
}

.btn-buy-red-rect:hover {
    background: #d32f2f;
}

.stock-status-green {
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Actions Below Box */
.actions-row-secondary {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.action-icon-link {
    color: #E53935;
    /* Red color matching ref */
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-icon-link:hover {
    text-decoration: underline;
}

/* Promo Buttons */
.promo-buttons-row {
    display: flex;
    border: 1px solid #eee;
    margin-bottom: 2rem;
}

.btn-promo-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-right: 1px solid #eee;
    background: #fcfcfc;
}

.btn-promo-tab:last-child {
    border-right: none;
}

.btn-promo-tab:hover {
    background: #f0f0f0;
}

/* FIX: Missing Hover Action Styles */
.hover-actions-overlay {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

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

.action-btn-circle {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.2s;
    font-size: 1.1rem;
}

.action-btn-circle:hover {
    background: #E53935;
    color: white;
}

/* Modal Content Styles */
.modal-content {
    background: #fff;
    width: 900px;
    max-width: 95%;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.qv-articul {
    font-size: 0.85rem;
    color: #999;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.qv-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.qv-image-col img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.qv-details-col {
    display: flex;
    flex-direction: column;
}

.qv-details-col h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.qv-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 1rem 0;
    line-height: 1.5;
}

.qv-price-block {
    margin: 1rem 0;
}

.modal-footer {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    text-align: center;
}

.btn-link-simple {
    border: 1px solid #ddd;
    padding: 10px 20px;
    text-decoration: none;
    color: #666;
    border-radius: 4px;
    font-size: 0.9rem;
    background: #f9f9f9;
    display: inline-block;
}

.btn-link-simple:hover {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 1.5rem;
    }
}

/* Ingredients List Styles */
.ingredients-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredients-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.ingredients-list li:last-child {
    border-bottom: none;
}

/* Ingredients Section Styles */
.ingredients-section {
    padding: 1rem 0;
}

.ingredients-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.inci-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #888;
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {

    /* Hide Secondary Actions */
    .actions-row-secondary {
        display: none !important;
    }

    /* Main Layout: Sidebar + Content */
    .main-content-wrapper {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start;
        flex-wrap: nowrap !important;
        gap: 0.5rem;
        padding-top: 0.25rem;
        /* Reduced gap from banner */
        box-sizing: border-box;
    }

    /* Sticky Sidebar for Categories */
    .categories-sidebar {
        flex: 0 0 70px;
        /* Rigid width */
        width: 70px;
        position: -webkit-sticky;
        position: sticky;
        top: 140px;
        /* Increased sticky offset */
        margin-top: 0 !important;
        /* Removed gap */
        z-index: 30;
        /* Increased from 80px to clear header safely */
        /* Below fixed header */
        height: auto;
        max-height: calc(100vh - 110px);
        /* Adjust max-height */
        overflow-y: auto;
        padding-right: 5px;
        padding-top: 0px;
        /* Reduced to move icons up and balance spacing */
        /* Custom scrollbar hiding */
        scrollbar-width: none;
    }

    .categories-sidebar::-webkit-scrollbar {
        display: none;
    }

    .categories-sidebar .section-title {
        display: none;
    }

    .category-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        /* More space between categories */
        align-items: center;
        width: 100%;
    }

    .category-item {
        width: 100%;
        min-width: unset;
        min-height: unset;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .category-item span {
        font-size: 0.65rem;
        /* Smaller font to fit */
        display: block;
        margin-top: 5px;
        line-height: 1.1;
        width: 100%;
        overflow-wrap: break-word;
    }

    .cat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Products Area */
    .products-area {
        flex: 1 1 auto;
        /* Allow grow and shrink */
        min-width: 0;
        /* CRITICAL for flex child shrinking */
        width: auto;
        margin-left: 0.5rem;
        /* Minimal gap from categories */
        margin-top: 0;
        /* Aligned with categories */
    }

    .product-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        width: 100%;
    }

    .product-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .product-card .product-title {
        font-size: 0.7rem;
        min-height: auto;
        line-height: 1.2;
    }

    .product-card .product-category {
        font-size: 0.55rem;
    }

    .product-card .price {
        font-size: 0.85rem;
    }

    .product-card .old-price {
        font-size: 0.65rem;
    }

    .product-card .product-info {
        padding: 0.5rem;
    }

    .product-card .product-image {
        height: 110px;
    }

    .product-card .add-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    width: 100%;
    /* Desktop height */
    height: 800px;
    max-height: 100vh;
    overflow: hidden;
    /* Account for fixed header if needed, though usually banners go behind or start at top */
    padding-top: 0;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    z-index: 1;
}

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

/* Background Images */
.slide-bg-desktop,
.slide-bg-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg-mobile {
    display: none;
}

/* Slide Content Overlay */
.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    /* Ensure content is above bg */
}

/* Optional overlay to make text readable */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 5;
}

.slide-text {
    color: #fff;
    max-width: 600px;
    padding: 2rem;
}

.slide-subtitle {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.slide-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-slide {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-slide:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Navigation Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    /* Or centered */
    display: flex;
    gap: 15px;
    z-index: 20;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

/* Dark Text Variation for Light Slides */
.slide-text.text-dark {
    color: #4a3b32 !important;
    text-shadow: none !important;
    text-align: left;
}

.slide-text.text-dark h1 {
    font-family: 'Montserrat', sans-serif !important;
    color: #4a3b32 !important;
    text-shadow: none !important;
    text-transform: uppercase;
    font-size: 3.5rem;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    /* Compact spacing */
    font-weight: 700;
}

.slide-text.text-dark .slide-subtitle {
    font-family: 'Montserrat', sans-serif !important;
    color: #6d5849 !important;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 1rem !important;
    /* Compact spacing */
    display: block;
}

.slide-text.text-dark p {
    color: #4a3b32 !important;
    font-family: 'Montserrat', sans-serif !important;
}

.slide-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 !important;
    /* Compact spacing */
}

.slide-features li {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 500;
    color: #5e4b41 !important;
    margin-bottom: 0.5rem !important;
    /* Compact spacing */
    line-height: 1.4 !important;
}

/* Button spacing */
.btn-slide {
    margin-top: 2rem !important;
    /* Compact spacing */
    font-family: 'Montserrat', sans-serif !important;
}

/* Slide Price Display */
.slide-price {
    margin: 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.slide-price .price-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c85a5a;
    margin-right: 1rem;
}

.slide-price .price-old {
    font-size: 1.5rem;
    font-weight: 400;
    color: #888;
    text-decoration: line-through;
}

/* Light Text Variation for Dark Slides */
.slide-text.text-light {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    text-align: left;
}

.slide-text.text-light h1 {
    font-family: 'Montserrat', sans-serif !important;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    text-transform: uppercase;
    font-size: 3.5rem;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    font-weight: 700;
}

.slide-text.text-light .slide-subtitle {
    font-family: 'Montserrat', sans-serif !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 1rem !important;
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-text.text-light .slide-features li {
    color: #fff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-text.text-light .slide-price .price-new {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text.text-light .slide-price .price-old {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Beige Button (like cart icon background) */
.btn-slide.btn-beige {
    background: var(--primary-color) !important;
    /* Beige/brown like cart */
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

.btn-slide.btn-beige:hover {
    background: #b07e5a !important;
    /* Slightly darker on hover */
    border-color: #b07e5a !important;
}

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

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    width: 30px;
    border-radius: 12px;
    background: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-slider {
        height: 600px;
        /* Tablet height */
        margin-top: 60px;
        /* Header spacing if needed */
    }

    .slide-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        /* Mobile height - use svh to account for browser navigation */
        height: 100svh;
        height: 100dvh;
        /* Fallback */
        height: 100vh;
        /* Fallback for older browsers */
        max-height: none;
        min-height: 550px;
        margin-top: 0;
    }

    .slide-bg-desktop {
        display: none;
    }

    .slide-bg-mobile {
        display: block;
        height: 100svh;
        height: 100dvh;
        height: 100vh;
        object-fit: cover;
        object-position: top center;
    }

    .slide-content {
        align-items: flex-start;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .slide::after {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 40%);
    }

    .slide-text {
        text-align: left;
        margin: 0;
        padding: 1.5rem;
        max-width: 90%;
    }

    .slide-text h1 {
        font-size: 1.7rem !important;
        line-height: 1.15 !important;
        margin-bottom: 0.6rem !important;
    }

    .slide-text .slide-subtitle {
        font-size: 0.95rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 0.5rem !important;
    }

    .slide-text .slide-features li {
        font-size: 1rem !important;
        margin-bottom: 0.35rem !important;
    }

    .slide-text.text-dark .slide-features li,
    .slide-text.text-light .slide-features li {
        font-size: 1rem !important;
        margin-bottom: 0.35rem !important;
    }

    .slide-price .price-new {
        font-size: 1.6rem !important;
    }

    .slide-price .price-old {
        font-size: 0.95rem !important;
    }

    .btn-slide {
        font-size: 0.85rem !important;
        padding: 0.75rem 1.8rem !important;
    }

    .slider-controls {
        display: none;
    }

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

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: 0.3s;
    }

    .dot.active {
        width: 28px;
        border-radius: 10px;
        background: #fff;
    }
}

/* ================= CART & CHECKOUT PAGES ================= */

/* Cart Breadcrumbs */
.cart-breadcrumbs {
    padding: 100px 5% 20px;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #666;
}

.cart-breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.cart-breadcrumbs a:hover,
.cart-breadcrumbs a.active {
    color: var(--primary-color);
}

.cart-breadcrumbs span {
    margin: 0 0.5rem;
    color: #ccc;
}

/* Cart Page Layout */
.cart-page {
    padding: 0 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.cart-items-section {
    background: #fff;
}

.cart-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cart-header-row h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.clear-cart-link {
    color: #666;
    text-decoration: underline;
    font-size: 0.9rem;
}

.clear-cart-link:hover {
    color: var(--primary-color);
}

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

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr 120px 120px;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    position: relative;
}

.cart-item-name {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.cart-item-category {
    font-size: 0.8rem;
    color: #999;
}

.cart-item-stock {
    font-size: 0.85rem;
    color: #4caf50;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.cart-item-remove:hover {
    color: #e53935;
}

.cart-item-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    text-align: center;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cart-item-qty button {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: 0.2s;
}

.cart-item-qty button:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.cart-item-qty span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

/* Cart Empty */
.cart-empty-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    color: #999;
}

.btn-continue-shopping {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
}

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

.summary-box {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    font-size: 0.95rem;
    color: #666;
    border-bottom: 1px solid #eee;
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #333;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
    transition: 0.2s;
}

.btn-checkout:hover {
    background: var(--primary-color);
}

.referral-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 1.5rem;
}

.referral-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.referral-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Delivery Form */
.delivery-form {
    margin-top: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

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

.form-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
}

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

/* Delivery Info Box */
.delivery-info-box {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.delivery-info-icon {
    font-size: 1.5rem;
}

.delivery-info-text p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.delivery-info-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 0.85rem;
}

/* Delivery Carriers */
.delivery-method-tabs {
    margin-bottom: 1rem;
}

.method-tab {
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 0.9rem;
    cursor: pointer;
}

.method-tab.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.delivery-carriers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.carrier-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    min-width: 100px;
    text-align: center;
    transition: 0.2s;
}

.carrier-option:hover,
.carrier-option:has(input:checked) {
    border-color: var(--primary-color);
    background: #faf5f3;
}

.carrier-option input {
    display: none;
}

.carrier-name {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.carrier-price {
    font-size: 0.8rem;
    color: #666;
}

.delivery-type {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.delivery-type label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-select-point {
    padding: 0.8rem 1.5rem;
    border: 1px solid #333;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.btn-select-point:hover {
    background: #333;
    color: #fff;
}

/* Mobile Cart */
@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }

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

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

    .cart-item-price,
    .cart-item-qty {
        grid-column: 2;
        justify-content: flex-start;
    }

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