:root {
    --primary-color: #1a1a1a;
    --accent-color: #8B6F47;
    /* Coffee brown */
    --accent-light: #C4A57B;
    /* Light coffee */
    --accent-dark: #5C4033;
    /* Dark roast */
    --bg-color: #ffffff;
    --bg-secondary: #f9f7f4;
    /* Warm off-white */
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    --text-color: #2c2c2c;
    --text-light: #666666;
    --border-color: #e8e4df;
    --font-main: 'Source Sans 3', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(139, 111, 71, 0.08);
    --shadow-md: 0 4px 16px rgba(139, 111, 71, 0.12);
    --shadow-lg: 0 8px 32px rgba(139, 111, 71, 0.16);
    --shadow-xl: 0 16px 48px rgba(139, 111, 71, 0.2);
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::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 ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.see-all-wrapper {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    margin-top: 30px;
}

.see-all-wrapper .btn {
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 11;
}

.see-all-wrapper a {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Header */
.site-header {
    background: linear-gradient(to bottom, #ffffff 0%, #fafaf8 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 4px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
}

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

.logo a img.logo-image {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.cart-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    color: var(--text-color);
    transition: color 0.3s ease;
}

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

.cart-btn .gift-icon-red {
    color: #dc2626;
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.4));
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: white;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Hero Gallery */
.hero-gallery {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--bg-gradient);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.main-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(196, 165, 123, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

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

.thumbnail-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.thumbnail-list::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-list::-webkit-scrollbar-track {
    background: transparent;
}

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

.thumbnail-list::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

.thumbnail-list img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.thumbnail-list img:hover {
    opacity: 0.8;
}

.thumbnail-list img.active {
    opacity: 1;
    border-color: var(--primary-color);
}

/* Hero Details */
.hero-details {
    flex: 1;
    max-width: 500px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-category {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 12px;
    line-height: 1.1;
    background: linear-gradient(135deg, #2c1810 0%, var(--primary-color) 50%, #5c4033 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(139, 111, 71, 0.2));
    position: relative;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2c1810 0%, transparent 100%);
    border-radius: 2px;
}

.cold-extraction-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e8f4ff 0%, #d4e9ff 100%);
    padding: 10px 18px;
    border-radius: 24px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.cold-extraction-badge i {
    color: #4a9eff;
    font-size: 15px;
    filter: drop-shadow(0 0 4px rgba(74, 158, 255, 0.3));
}

/* ThermoJet Badge (orange variant) */
.thermojet-badge {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%) !important;
    border-color: rgba(255, 152, 0, 0.2) !important;
}

.thermojet-badge i {
    color: #ff9800 !important;
    filter: drop-shadow(0 0 4px rgba(255, 152, 0, 0.3)) !important;
}

.product-tagline {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

.product-price-wrapper {
    margin-bottom: 30px;
}

.product-price-old {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
    margin-bottom: 4px;
}

.product-price {
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 50%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.product-highlights {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
}

.highlight-item i {
    font-size: 24px;
    color: var(--accent-color);
}

/* Color Picker */
.color-picker-section {
    margin-bottom: 30px;
}

.color-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.color-label span {
    color: var(--primary-color);
    font-weight: 600;
}

.color-swatches {
    display: flex;
    gap: 10px;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.color-swatch.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.product-actions {
    margin-bottom: 40px;
}

.add-to-cart-btn {
    width: 100%;
    max-width: 300px;
    height: 48px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: white;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Specs Section */
.specs-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fafaf8 0%, #f5f3ef 100%);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.specs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-light) 50%, transparent 100%);
}

.specs-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Wider columns */
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.spec-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.spec-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-icon img {
    width: 100%;
    height: auto;
    max-height: 40px;
}

.spec-content {
    flex: 1;
}

.spec-content h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.spec-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 4px;
}

/* Modals */
.cart-modal,
.checkout-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: flex-end;
    /* Cart slides from right */
    z-index: 1000;
}

.cart-modal.active,
.checkout-modal.active {
    display: flex;
}

.cart-content {
    background: white;
    width: 400px;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

.checkout-modal {
    justify-content: center;
    align-items: center;
}

.checkout-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    width: 500px;
    max-width: 90%;
    animation: fadeIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

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

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.cart-item-gift-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 8px;
}

.cart-item-gift-icon .gift-icon-red {
    font-size: 32px;
    color: #dc2626;
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.4));
}

.cart-item-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.cart-item-color {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.cart-item-price {
    font-size: 14px;
    color: var(--text-light);
}

.gift-badge {
    background-color: var(--accent-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 5px;
}

.gift-icon-red {
    color: #dc2626;
    font-size: 20px;
    margin-left: 8px;
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.4));
    vertical-align: middle;
}

.cart-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
    text-align: center;
}

/* Form */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    background-color: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(139, 111, 71, 0.1);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23555' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 42px;
    position: relative;
    overflow: visible;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(139, 111, 71, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%238B6F47' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {

    /* Header */
    .site-header {
        padding: 18px 0 !important;
    }
    
    .header-container {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        position: relative;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        order: 2;
        flex-shrink: 0;
        margin: 0 auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hamburger-menu {
        display: flex;
        order: 1;
        flex-shrink: 0;
        z-index: 101;
    }

    .header-actions {
        order: 3;
        flex-shrink: 0;
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: var(--shadow-xl);
        transition: left 0.3s ease;
        z-index: 100;
        padding-top: 80px;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
    }

    .main-nav li {
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav a {
        display: block;
        padding: 20px 30px;
        font-size: 16px;
    }

    /* Mobile Overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 99;
    }

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

    /* Hero Section */
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }

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

    .hero-details {
        max-width: 100% !important;
        padding-top: 0 !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .hero-details > * {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .product-category {
        font-size: 10px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        width: 100% !important;
    }

    .product-title {
        font-size: 32px !important;
        margin-bottom: 14px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }

    .product-title::after {
        width: 60px !important;
        height: 3px !important;
        bottom: -6px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    .product-price-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .product-price-wrapper > * {
        text-align: center !important;
    }

    .cold-extraction-badge,
    .thermojet-badge {
        margin-left: auto !important;
        margin-right: auto !important;
        display: inline-flex !important;
        justify-content: center !important;
    }

    .color-picker-section {
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .color-label {
        text-align: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .color-swatches {
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        display: flex !important;
    }

    .product-actions {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .add-to-cart-btn {
        width: 100% !important;
        max-width: 300px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .product-price {
        font-size: 32px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .product-price-old {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .product-price-old {
        font-size: 16px;
    }

    .product-price-wrapper {
        margin-bottom: 20px;
    }

    /* Color Picker */
    .color-swatches {
        justify-content: center;
        gap: 8px;
    }

    .color-swatch {
        width: 35px;
        height: 35px;
    }

    /* Thumbnail List */
    .thumbnail-list {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .thumbnail-list img {
        width: 60px;
        height: 60px;
    }

    /* Features Section */
    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .feature-text h3 {
        font-size: 24px;
    }

    .feature-text p {
        font-size: 15px;
    }

    .feature-image {
        order: -1;
    }

    /* Specifications Section */
    .specs-section {
        padding: 60px 0;
    }

    .specs-section h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .spec-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .spec-icon {
        flex-shrink: 0;
    }

    .spec-icon img {
        width: 40px;
        height: 40px;
    }

    .spec-content h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .spec-content p,
    .spec-list li {
        font-size: 14px;
    }

    /* Cart */
    .cart-content {
        width: 100%;
    }

    /* Products Grid - Slider on Mobile */
    /* Default: Regular grid for category pages (machines.html, brewers.html, coffee.html) - 1 column */
    .products-collection .products-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 20px !important;
        overflow: visible !important;
        scroll-snap-type: none !important;
        -webkit-overflow-scrolling: auto !important;
    }

    /* Override: Slider only for homepage sections with wrapper */
    .products-slider-wrapper .products-grid {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 10px !important;
        padding: 0 16px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }

    .products-slider-wrapper .products-grid::-webkit-scrollbar {
        display: none;
    }

    .products-slider-wrapper .products-grid .product-card {
        flex: 0 0 88% !important;
        max-width: 88% !important;
        width: 88% !important;
        scroll-snap-align: start;
        margin-right: 0;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
        padding: 0;
        box-sizing: border-box;
        flex-shrink: 0;
    }
    
    /* Ensure first card has left padding and last card has right padding */
    .products-slider-wrapper .products-grid .product-card:first-child {
        scroll-margin-left: 16px;
    }
    
    .products-slider-wrapper .products-grid .product-card:last-child {
        scroll-margin-right: 16px;
    }

    /* Product cards for category pages - apply homepage card design */
    .products-collection .products-grid .product-card {
        display: flex !important;
        flex-direction: column !important;
        flex: none !important;
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 20px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid #f0f0f0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        margin-right: 0 !important;
        scroll-snap-align: none !important;
        background: white !important;
        overflow: hidden !important;
    }

    .products-collection .products-grid .product-card-link {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        height: 100% !important;
        text-decoration: none !important;
    }

    .products-slider-wrapper .products-grid .product-card-link {
        display: flex;
        flex-direction: column;
        padding: 20px !important;
        box-sizing: border-box;
        height: 100%;
        text-decoration: none;
        color: inherit;
    }

    .products-slider-wrapper .products-grid .product-card:first-child {
        margin-left: 0;
    }

    .products-slider-wrapper .products-grid .product-card:last-child {
        margin-right: 0;
    }

    .products-slider-wrapper .products-grid .product-card:hover {
        transform: none;
    }

    .products-slider-wrapper .products-grid .product-card-image {
        margin-bottom: 24px !important;
        border-radius: 16px;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .products-slider-wrapper .products-grid .product-card-content {
        padding: 0;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    .products-slider-wrapper .products-grid .product-card-title {
        margin-bottom: 12px !important;
        padding-right: 60px;
        word-wrap: break-word;
    }

    .products-slider-wrapper .products-grid .product-card-tagline {
        margin-bottom: 16px !important;
    }
    
    .products-slider-wrapper .products-grid .product-card-features {
        margin-bottom: 20px !important;
    }

    .products-slider-wrapper .products-grid .product-card-footer {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding-top: 20px !important;
        border-top: 1px solid var(--border-color) !important;
        margin-top: auto !important;
        width: 100%;
        box-sizing: border-box;
        gap: 16px !important;
    }

    /* Container adjustments for mobile slider */
    .products-collection .container {
        padding: 0 !important;
        max-width: 100% !important;
    }

    .products-collection .products-slider-wrapper {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .products-collection .products-slider-wrapper .products-grid {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Slider Navigation Arrows */
    .products-slider-wrapper {
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        z-index: 1;
    }

    .see-all-wrapper {
        position: relative;
        z-index: 10;
        pointer-events: auto !important;
        margin-top: 30px !important;
        padding: 0 20px;
    }

    .see-all-wrapper .btn {
        pointer-events: auto !important;
        cursor: pointer !important;
        text-decoration: none;
        display: inline-block;
        position: relative;
        z-index: 11;
    }

    .see-all-wrapper a {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 11;
    }

    .products-collection .container > .see-all-wrapper {
        padding: 0 20px !important;
        margin-top: 30px !important;
        margin-bottom: 20px !important;
        position: relative;
        z-index: 10 !important;
        pointer-events: auto !important;
        width: 100%;
        box-sizing: border-box;
    }

    .slider-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(139, 111, 71, 0.25);
        backdrop-filter: blur(10px);
    }

    .slider-nav-btn:hover {
        background: var(--accent-color);
        color: white;
        box-shadow: 0 6px 16px rgba(139, 111, 71, 0.35);
        transform: translateY(-50%) scale(1.05);
    }

    .slider-nav-btn:active {
        transform: translateY(-50%) scale(0.95);
    }

    .slider-nav-btn.prev {
        left: 12px;
    }

    .slider-nav-btn.next {
        right: 12px;
    }

    /* Position arrows at the image level, not overlapping text */
    .products-slider-wrapper {
        position: relative;
    }

    .slider-nav-btn {
        top: 180px; /* Position at image center level */
    }

    .slider-nav-btn i {
        font-size: 18px;
        color: var(--accent-color);
        transition: color 0.3s ease;
    }

    .slider-nav-btn:hover i {
        color: white;
    }

    .slider-nav-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
        pointer-events: none;
    }

    /* Hide slider navigation on desktop */
    @media (min-width: 769px) {
        .slider-nav-btn {
            display: none !important;
        }

    .products-grid {
            display: grid !important;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
            overflow-x: visible !important;
            padding: 0 !important;
        }

        .products-grid .product-card {
            flex: none !important;
            max-width: none !important;
            margin-right: 0 !important;
        }
    }

    /* Homepage Hero */
    .homepage-hero {
        padding: 60px 0;
    }

    .hero-expert-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .hero-expert-container::before {
        border-radius: 20px;
    }

    .hero-expert-image {
        max-width: 100%;
    }

    .hero-expert-image::before {
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        filter: blur(15px);
    }

    .hero-expert-image img {
        border-radius: 20px;
        border-width: 2px;
    }

    .hero-expert-content {
        text-align: center;
        padding: 20px;
        border-radius: 15px;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
        margin-bottom: 18px !important;
    }

    .hero-title::after {
        width: 60px !important;
        height: 3px !important;
        bottom: -6px !important;
    }

    .hero-subtitle {
        font-size: 14px;
        padding-left: 12px;
        border-left-width: 2px;
        margin-bottom: 20px;
    }

    .hero-subtitle::before {
        width: 2px;
    }

    /* Section Titles */
    .section-header-with-image {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 40px;
    }

    .section-header-image {
        flex: 0 0 auto;
        max-width: 250px;
        margin: 0 auto;
    }

    .section-header-container {
        padding: 20px;
        margin-bottom: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .section-header-container::before {
        display: none;
    }

    .products-collection .container {
        padding: 0 !important;
        max-width: 100% !important;
    }

    .products-collection .container > .section-header-container {
        margin: 0 20px 30px 20px;
        padding-bottom: 0;
    }
    
    .products-collection .container > .products-slider-wrapper {
        margin-bottom: 40px;
    }

    .products-collection .container > .see-all-wrapper {
        padding: 0 20px;
        margin-top: 30px;
        margin-bottom: 20px;
        position: relative;
        z-index: 10;
        pointer-events: auto;
    }

    .section-header-content {
        text-align: center;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .section-header-content::before {
        display: none;
    }

    .section-title {
        font-size: 32px !important;
        text-align: center;
        margin-bottom: 14px !important;
    }

    .section-title::after {
        width: 60px !important;
        height: 3px !important;
        bottom: -6px !important;
    }

    .section-subtitle {
        text-align: center;
        padding-left: 12px;
        border-left-width: 2px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .section-subtitle::before {
        width: 2px;
    }

    .section-title {
        font-size: 32px !important;
        text-align: center;
        margin-bottom: 14px !important;
    }

    .section-title::after {
        width: 60px !important;
        height: 3px !important;
        bottom: -6px !important;
    }

    .section-subtitle {
        font-size: 16px;
        padding: 0 20px;
        text-align: center;
    }

    /* Brands Section Homepage */
    .brands-grid-homepage {
        gap: 15px;
        overflow: visible;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-top: 40px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .brand-logo-homepage {
        padding: 15px 10px;
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(50% - 8px);
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
    }

    .brand-logo-homepage img {
        max-width: calc(100% - 20px);
        max-height: 45px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    /* Product Card */
    .product-card-title {
        font-size: 20px;
    }

    .product-card-price {
        font-size: 24px;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .add-to-cart-btn {
        width: 100%;
    }

    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 50px 0;
    }

    .feature-row {
        margin-bottom: 50px;
    }

    .feature-image img {
        border-radius: 8px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .product-title {
        font-size: 28px !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }

    .product-title::after {
        width: 50px !important;
        height: 2px !important;
        bottom: -5px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .hero-details {
        text-align: center !important;
        align-items: center !important;
    }

    .hero-details > * {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .product-category {
        text-align: center !important;
    }

    .product-price-wrapper {
        align-items: center !important;
    }

    .color-picker-section {
        text-align: center !important;
    }

    .product-actions {
        justify-content: center !important;
    }

    .product-price {
        font-size: 28px;
    }

    /* Brewer and Coffee Hero Mobile */
    .brewer-hero .hero-container,
    .coffee-hero .hero-container {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 30px 20px !important;
        text-align: center !important;
    }

    .brewer-image img,
    .coffee-image img {
        max-width: 100% !important;
        width: 100% !important;
    }

    .brewer-hero .hero-details,
    .coffee-hero .hero-details {
        width: 100% !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .brewer-hero .hero-details > *,
    .coffee-hero .hero-details > * {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .brewer-hero .product-category,
    .coffee-hero .product-category {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .brewer-hero .product-title,
    .coffee-hero .product-title {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .brewer-hero .product-title::after,
    .coffee-hero .product-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .brewer-hero .product-price-wrapper,
    .coffee-hero .product-price-wrapper {
        align-items: center !important;
        justify-content: center !important;
    }

    .brewer-description,
    .coffee-description {
        text-align: center !important;
        font-size: 14px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .brewer-hero .product-actions,
    .coffee-hero .product-actions {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .product-price-old {
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .section-title {
        font-size: 18px;
    }

    .specs-section h2 {
        font-size: 28px;
    }

    .feature-text h3 {
        font-size: 20px;
    }

    .feature-text p {
        font-size: 14px;
    }

    .cold-extraction-badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    .color-swatch {
        width: 32px;
        height: 32px;
    }

    .thumbnail-list img {
        width: 50px;
        height: 50px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .spec-icon img {
        width: 32px;
        height: 32px;
    }

    .spec-content h4 {
        font-size: 14px;
    }

    .spec-content p,
    .spec-list li {
        font-size: 13px;
    }
}

/* Homepage Styles */
.homepage-hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--accent-light);
    box-shadow: 0 4px 30px rgba(139, 111, 71, 0.08);
}

.homepage-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 165, 123, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.homepage-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 111, 71, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-expert-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    border: 2px solid rgba(139, 111, 71, 0.1);
    box-shadow: 
        0 10px 40px rgba(139, 111, 71, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.hero-expert-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 50%, var(--accent-light) 100%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-expert-container:hover::before {
    opacity: 0.1;
}

.hero-expert-image {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.hero-expert-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.2;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.hero-expert-image:hover::before {
    opacity: 0.3;
}

.hero-expert-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 20px 60px rgba(139, 111, 71, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.hero-expert-image:hover img {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 25px 70px rgba(139, 111, 71, 0.35),
        0 12px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-expert-content {
    flex: 1;
    text-align: left;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(139, 111, 71, 0.1);
    box-shadow: 
        0 4px 20px rgba(139, 111, 71, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.hero-expert-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 2px 0 0 2px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 50%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(139, 111, 71, 0.2));
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    padding-left: 20px;
    border-left: 3px solid var(--accent-light);
    position: relative;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
    opacity: 0.5;
}

/* Products Collection */
.products-collection {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--accent-light);
    box-shadow: 0 4px 30px rgba(139, 111, 71, 0.08);
}

.products-collection::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 165, 123, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.products-collection::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 111, 71, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 40px;
    background: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.section-header-container::before {
    display: none;
}

.section-header-container:hover::before {
    display: none;
}

.section-header-with-image {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-image {
    flex: 0 0 300px;
    max-width: 300px;
}

.section-header-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.section-header-content {
    flex: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(139, 111, 71, 0.1);
    box-shadow: 
        0 4px 20px rgba(139, 111, 71, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.section-header-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 2px 0 0 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    text-align: left;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 50%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(139, 111, 71, 0.2));
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: left;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    padding-left: 20px;
    border-left: 3px solid var(--accent-light);
    position: relative;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color) 0%, transparent 100%);
    opacity: 0.5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Brands Section Homepage */
.brands-section-homepage {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.brands-grid-homepage {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.brands-carousel-track {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.brand-logo-homepage {
    padding: 20px 30px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.brand-logo-homepage img {
    max-width: calc(100% - 20px);
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.brand-logo-homepage:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 111, 71, 0.15);
    border-color: var(--accent-light);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--bg-gradient);
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.product-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #2c1810 0%, var(--primary-color) 50%, #5c4033 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(44, 24, 16, 0.3));
    position: relative;
}

.product-card-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    border-radius: 2px;
}

.product-card-tagline {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 40px;
}

.product-card-features {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-card-features span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
    background: var(--bg-secondary);
    padding: 6px 12px;
    border-radius: 16px;
}

.product-card-features i {
    color: var(--accent-color);
    font-size: 13px;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    gap: 16px;
}

.product-card-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Ensure price stays on one line */
.product-card-price-wrapper .product-card-price {
    white-space: nowrap;
    display: inline-block;
}

.product-card-price-wrapper .product-card-price-old {
    white-space: nowrap;
    display: inline-block;
}

.product-card-price-old {
    font-size: 16px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
    line-height: 1;
}

.product-card-price {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 50%, var(--accent-light) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
}

/* Стили для цены со скидкой (когда есть старая цена) */
.product-card-price-wrapper:has(.product-card-price-old) .product-card-price,
.product-card-price-old + .product-card-price {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 25%, #f97316 50%, #ef4444 75%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.product-card-cta {
    font-size: 14px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.2);
}

.product-card-cta::after {
    content: '\f061';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.product-card-link:hover .product-card-cta {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 111, 71, 0.3);
}

.product-card-link:hover .product-card-cta::after {
    transform: translateX(4px);
}

/* Checkout Page */
.checkout-section {
    padding: 60px 0 100px;
    background: var(--bg-secondary);
    min-height: calc(100vh - 200px);
}

.checkout-title {
    font-family: var(--font-heading);
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-color);
}

/* Order Summary */
.order-summary {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-gift-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    border-radius: 8px;
}

.order-item-gift-icon .gift-icon-red {
    font-size: 40px;
    color: #dc2626;
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.4));
}

.order-item-details {
    flex: 1;
}

.order-item-details h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.order-item-color {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.order-item-quantity {
    font-size: 13px;
    color: var(--text-light);
}

.order-item-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
}

.order-totals {
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.order-total-final {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 10px;
}

.shipping-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.shipping-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 15px;
}

.shipping-info-header i {
    font-size: 18px;
    color: var(--accent-color);
}

.shipping-info-details {
    padding-left: 28px;
}

.shipping-info-details p {
    margin: 4px 0;
    font-size: 14px;
    color: var(--text-light);
}

.shipping-info-details p strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Gift Coffee Selection */
.gift-coffee-selection {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.coffee-selection-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.coffee-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.coffee-selection-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.coffee-selection-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.coffee-selection-card.selected {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fef7ed 0%, #fffbf0 100%);
    box-shadow: 0 4px 16px rgba(139, 111, 71, 0.2);
}

.coffee-selection-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 8px;
    background: var(--bg-gradient);
}

.coffee-selection-card h4 {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 0;
    font-family: var(--font-main);
}

/* Delivery Form */
.delivery-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.delivery-form h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.btn-place-order {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 10px;
}

/* Order Success Modal */
.order-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-success-modal.active {
    display: flex;
    opacity: 1;
    animation: fadeInModal 0.3s ease;
}

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

.order-success-content {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.25);
    transform: scale(0.9);
    animation: scaleIn 0.3s ease forwards;
    border: 2px solid var(--border-color);
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

.order-success-logo {
    margin: 0 auto 20px;
    max-width: 180px;
    animation: fadeInDown 0.5s ease 0.1s both;
}

.order-success-logo img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: checkmarkPop 0.5s ease 0.3s both;
    box-shadow: 0 4px 16px rgba(139, 111, 71, 0.3);
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.order-success-icon i {
    font-size: 50px;
    color: white;
}

.order-success-title {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--accent-dark);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.order-success-message {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.order-success-details {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #f5f2ed 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.order-success-details p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-color);
}

.order-success-details p:last-child {
    margin-bottom: 0;
}

.order-success-details i {
    color: var(--accent-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.order-success-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
}

.order-success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 111, 71, 0.4);
}

/* Order Error Modal */
.order-error-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-error-modal.active {
    display: flex;
    opacity: 1;
    animation: fadeInModal 0.3s ease;
}

.order-error-content {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    animation: scaleIn 0.3s ease forwards;
}

.order-error-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: checkmarkPop 0.5s ease 0.2s both;
}

.order-error-icon i {
    font-size: 50px;
    color: white;
}

.order-error-title {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    color: #dc2626;
}

.order-error-message {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
}

.order-error-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.order-error-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

/* Responsive Checkout */
@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checkout-title {
        font-size: 32px;
    }

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

    .order-summary {
        position: static;
    }

    .gift-coffee-selection {
        margin-top: 15px;
        padding-top: 15px;
    }

    .coffee-selection-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .coffee-selection-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 12px;
    }

    .coffee-selection-card {
        padding: 8px;
        border-radius: 10px;
    }

    .coffee-selection-card img {
        height: 70px;
        margin-bottom: 8px;
        padding: 6px;
    }

    .coffee-selection-card h4 {
        font-size: 10px;
        line-height: 1.2;
        word-break: break-word;
    }

    /* Extra small screens */
    @media (max-width: 480px) {
        .coffee-selection-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .coffee-selection-card {
            padding: 10px;
        }

        .coffee-selection-card img {
            height: 80px;
        }

        .coffee-selection-card h4 {
            font-size: 11px;
        }

        .coffee-selection-title {
            font-size: 15px;
        }

        .gift-coffee-selection {
            margin-top: 12px;
            padding-top: 12px;
        }
    }

    .order-item {
        flex-wrap: wrap;
        gap: 12px;
    }

    .order-item img,
    .order-item-gift-icon {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .order-item-details {
        flex: 1;
        min-width: calc(100% - 82px);
    }

    .order-item-details h4 {
        font-size: 15px;
    }

    .order-item-price {
        font-size: 15px;
        width: 100%;
        text-align: right;
        margin-top: 8px;
    }

    .order-summary {
        padding: 20px;
    }

    .order-summary h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .delivery-form {
        padding: 20px;
    }

    .delivery-form h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .order-success-content {
        padding: 40px 30px;
        width: 95%;
    }

    .order-success-logo {
        max-width: 150px;
    }

    .order-success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }

    .order-success-icon i {
        font-size: 40px;
    }

    .order-success-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .order-success-message {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .order-success-details {
        padding: 15px;
        margin-bottom: 25px;
    }

    .order-success-details p {
        font-size: 13px;
    }

    .order-error-content {
        padding: 40px 30px;
        width: 95%;
    }

    .order-error-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .order-error-icon i {
        font-size: 40px;
    }

    .order-error-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .order-error-message {
        font-size: 14px;
        margin-bottom: 25px;
    }
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a2a1f 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-light) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 40px;
    margin-bottom: 40px;
    margin-left: 20%;
    max-width: calc(80% - 20%);
}

.footer-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 18px;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-light) 0%, transparent 100%);
    border-radius: 1px;
}

.footer-section p {
    margin: 8px 0;
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-light);
    transform: translateX(5px);
}

.footer-section a.lang-link {
    display: inline-block;
    padding: 6px 12px;
    margin: 2px 0;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-section a.lang-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.footer-section a.lang-link.active {
    background: rgba(196, 165, 123, 0.2);
    color: var(--accent-light);
    font-weight: 600;
}

.footer-section i {
    margin-right: 8px;
    color: var(--accent-light);
    filter: drop-shadow(0 0 4px rgba(255, 200, 100, 0.3));
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    text-align: center;
    margin-left: 20%;
    max-width: calc(80% - 20%);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.85;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.site-footer p {
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        text-align: left;
        margin-left: 0;
        max-width: 100%;
        padding: 0 20px;
    }

    .footer-section {
        text-align: left;
        padding: 20px;
    }

    .footer-section h3 {
        text-align: left;
    }

    .footer-section h3::after {
        left: 0;
    }

    .footer-bottom {
        margin-left: 0;
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--accent-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.08;
    pointer-events: none;
}

.coffee-bean {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.coffee-bean-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.coffee-bean-2 {
    top: 30%;
    right: 10%;
    animation-delay: 1.5s;
}

.coffee-bean-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

.coffee-bean-4 {
    bottom: 10%;
    right: 5%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.cookie-banner-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.cookie-banner-icon {
    font-size: 48px;
    flex-shrink: 0;
    animation: bounce 2s ease-in-out infinite;
}

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

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin: 0 0 8px 0;
}

.cookie-banner-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.cookie-banner-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent-color);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.3);
}

.cookie-btn-reject {
    background: #f5f5f5;
    color: var(--text-color);
}

.cookie-btn-reject:hover {
    background: #e8e8e8;
}

.cookie-btn-customize {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.cookie-btn-customize:hover {
    background: var(--accent-light);
}

.cookie-btn-primary {
    background: var(--accent-color);
    color: white;
}

.cookie-btn-primary:hover {
    background: var(--accent-dark);
}

.cookie-btn-secondary {
    background: #f5f5f5;
    color: var(--text-color);
}

.cookie-btn-secondary:hover {
    background: #e8e8e8;
}

/* Cookie Customize Modal */
.cookie-customize-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.cookie-customize-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-customize-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-customize-modal.show .cookie-customize-content {
    transform: scale(1);
}

.cookie-customize-header {
    padding: 25px 30px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-customize-header h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-color);
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.cookie-modal-close:hover {
    color: var(--primary-color);
}

.cookie-customize-body {
    padding: 25px 30px;
}

.cookie-option {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-option:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--accent-color);
}

.cookie-switch input:focus + .cookie-slider {
    box-shadow: 0 0 1px var(--accent-color);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-option-text strong {
    display: block;
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.cookie-option-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.cookie-customize-footer {
    padding: 20px 30px;
    border-top: 1px solid #e8e8e8;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-customize-content {
        max-height: 95vh;
    }

    .cookie-customize-header,
    .cookie-customize-body,
    .cookie-customize-footer {
        padding: 20px;
    }

    .cookie-customize-footer {
        flex-direction: column-reverse;
    }

    .cookie-customize-footer .cookie-btn {
        width: 100%;
    }

    .coffee-bean {
        font-size: 30px;
    }
}