/* pure.css - Custom Design System for Frubi */

:root {
    --primary: #3CB878;
    --primary-dark: #2e915d;
    --text-dark: #1D1D1B;
    --text-muted: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-grotesk: 'Space Grotesk', sans-serif;
    --font-handy: 'Caveat', cursive;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 900;
}

.font-handy {
    font-family: var(--font-handy);
}

.font-grotesk {
    font-family: var(--font-grotesk);
}

/* Layout Components */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
.top-banner {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    word-wrap: break-word;
}

header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #F3F4F6;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: lowercase;
    transition: color 0.3s;
}

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

.logo,
.logo a,
.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: flex;
    align-items: center;
}

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

.icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #EF4444;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid white;
    z-index: 10;
}

.mobile-menu-toggle {
    display: none;
}

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

/* Hero Section */
.hero {
    height: 90vh;
    height: 90dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

#hero-video {
    z-index: 2;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-static-img {
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-typography {
    margin-bottom: 2rem;
    line-height: 0.7;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 50px);
    color: #1D1D1B;
    letter-spacing: -0.025em;
    margin-bottom: 0;
    line-height: 1.1;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: clamp(3.5rem, 10vw, 96px);
    color: var(--primary);
    letter-spacing: -0.05em;
    line-height: 0.9;
    margin: 0;
}

.hero-bottom-text {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    line-height: 1;
    margin-top: 0.5rem;
}

.hero-pentru {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.25rem, 3vw, 28px);
    color: #1D1D1B;
    text-transform: lowercase;
}

.hero-tine {
    font-family: var(--font-handy);
    font-weight: 700;
    font-size: clamp(2.5rem, 8vw, 80px);
    color: #1D1D1B;
    line-height: 1;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 15px -3px rgba(60, 184, 120, 0.3);
    transition: transform 0.3s, background 0.3s;
}

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

/* Product Grid */
.products-section {
    padding: 1rem 0 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    color: var(--primary);
    font-size: 1.6rem;
    display: block;
    margin-bottom: -0.5rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    font-family: var(--font-serif);
    color: var(--text-dark);
    font-weight: 900;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title-wrapper {
    margin-bottom: 4rem;
}

/* Product Grid - Frubi.ro Style */
.products-section {
    padding: 1rem 0 5rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
}

.mt-shop-grid-item {
    position: relative;
    transition: 0.4s;
    margin-bottom: 2rem;
}

.mt-shop-grid-img {
    border-radius: 500px;
    border: 1px solid #D7FFD9;
    background-color: #fff;
    margin: 0 12px;
    margin-bottom: -56px;
    position: relative;
    z-index: 2;
    text-align: center;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(60, 184, 120, 0.05);
}

.mt-shop-grid-content {
    border-radius: 16px;
    border: 1px solid #E8FFEB;
    background: linear-gradient(180deg, #F3FFF4 0%, #FFF 48.1%);
    padding: 70px 20px 20px 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.mt-shop-grid-item:hover .mt-shop-grid-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.05);
}

.mtflash__product-ratting {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #FBBF24;
}


.mt-shop-grid-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.mt-shop-grid-item:hover .mt-shop-grid-img img {
    transform: scale(1.1);
}

.mt-shop-grid-content {
    border-radius: 16px;
    border: 1px solid #E8FFEB;
    background: linear-gradient(180deg, #F3FFF4 0%, #FFF 48.1%);
    padding: 70px 20px 20px 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.mtflash__product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.mtfeature__product-price {
    display: flex;
    flex-direction: column;
}

.mtfeature__product-price span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #17AF26;
    font-family: var(--font-grotesk);
}

.mtfeature__product-price del {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.mtflash__product-ratting {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #FDD057;
}

.mtflash__product-review-number {
    color: var(--text-muted);
    font-weight: 500;
}

.product-discount-badge {
    color: #DC2626;
    /* Red color */
    font-weight: 700;
    font-size: 0.85rem;
    background-color: #FEE2E2;
    padding: 2px 6px;
    border-radius: 4px;
}

.product-short-description {
    font-size: 12px;
    color: var(--text-dark);
    /* Changed from muted to dark for better visibility */
    margin-bottom: 10px;
    line-height: 1.5;
    /* Removed line clamp to show full description if needed, or increased it */
    display: block;
}

.mtfeature__product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.2;
    display: block;
    /* Changed from -webkit-box to block to allow natural height */
    /* Removed min-height and clamping to reduce whitespace */
    font-family: 'Quicksand', sans-serif;
}

.mtfeature__product-price span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #17AF26;
    font-family: 'Lora', serif;
}


.mtfeature__product-title a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s;
}

.mt-shop-grid-item:hover .mtfeature__product-title a {
    color: var(--primary);
}

.mtfeature__product-pricing-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.mtfeature__product-cate {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mtfeature__product-cate span:not(:last-child)::after {
    content: ' • ';
    margin: 0 4px;
}

.btn-add-to-cart-small {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: var(--primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(60, 184, 120, 0.2);
}

.btn-add-to-cart-small:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(60, 184, 120, 0.3);
}

.btn-add-to-cart-small i {
    font-size: 0.9rem;
}


.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.4)), var(--hover-bg, url('/assets/background-afina.jpeg'));
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.product-card:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

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

.product-card:hover .product-name,
.product-card:hover .product-description {
    color: white;
}

/* Clean Product Card Variants */
.product-card {
    background-color: white;
}

/* Card V1 - Floating + Original BG */
.card-v1::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--hover-bg, url('/assets/background-afina.jpeg'));
}

/* Card V2 - Inset + Blueberry BG (Original Colors) */
.card-v2::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--hover-bg, url('/assets/background-afina.jpeg'));
}

/* Card V3 - Inset + Blueberry BG (Original Colors) */
.card-v3::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), var(--hover-bg, url('/assets/background-afina.jpeg'));
}

/* Hover general */
.product-card:hover::before {
    opacity: 1;
}

.product-card:hover .product-name,
.product-card:hover .product-description {
    color: white;
}

.product-card:hover .add-to-cart {
    background: white;
    color: var(--primary);
}

/* Remove old variant styles to avoid conflicts */
.product-card-red,
.product-card-blue {
    background-color: white !important;
}


.product-card-red::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background-image: linear-gradient(rgba(220, 38, 38, 0.8), rgba(220, 38, 38, 0.8)), url('/assets/background-afina.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

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

.product-card-red .product-name,
.product-card-red .product-description {
    color: white;
}

.product-card-red .product-description {
    opacity: 0.9;
}

.product-card-red .add-to-cart {
    background: white;
    color: #DC2626;
}

.product-card-red .add-to-cart:hover {
    background: #f0f0f0;
}

/* Inset Card Variant */
.product-card-inset {
    overflow: hidden;
}

.product-card-inset .product-img-wrapper {
    position: relative;
    top: 0;
    transform: scale(1);
    margin: 0;
    height: 350px;
    padding: 20px;
}

.product-card-inset .product-img-wrapper img {
    object-fit: contain;
}

/* Blue Card Variant */
.product-card-blue {
    background-color: #1E40AF;
    color: white;
    overflow: hidden;
}

.product-card-blue::before {
    opacity: 0;
    background-image: linear-gradient(rgba(30, 64, 175, 0.8), rgba(30, 64, 175, 0.8)), url('/assets/background-afina.jpeg');
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

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

.product-card-blue .product-name,
.product-card-blue .product-description {
    color: white;
}

.product-card-blue .product-description {
    opacity: 0.9;
}

.product-card-blue .product-img-wrapper {
    position: relative;
    top: 0;
    transform: scale(1);
    margin: 0;
    height: 350px;
    padding: 20px;
    background: transparent;
}

.product-card-blue .product-img-wrapper img {
    object-fit: contain;
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: 0.3s;
    position: absolute;
    top: -160px;
    transform: scale(1.4);
    pointer-events: none;
    user-select: none;
}

.product-img-custom {
    transform: scale(1.4);
    margin-left: -30px;
    margin-top: 10px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.product-image-colider {
    width: 100%;
    height: 280px;
}

.product-content {
    padding: 1.5rem;
    text-align: left;
}

.product-name {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    transition: color 0.3s ease-in-out;
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    transition: color 0.3s ease-in-out;
    height: 3.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-family: var(--font-grotesk);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: block;
}

.add-to-cart {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-family: var(--font-grotesk);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(60, 184, 120, 0.2);
}

.add-to-cart::after {
    content: '\f07a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
}

.add-to-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(60, 184, 120, 0.3);
}

/* Product Stars */
.panel-produs-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.star {
    width: 20px;
    height: 20px;
    background-color: #E5E7EB;
    /* gray-200 */
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.fill {
    background-color: #FBBF24;
    /* yellow-400 */
}

/* Discount Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-content {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    padding: 3rem;
    text-align: center;
    animation: popupFadeIn 0.3s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-video {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.popup-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close-popup {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

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

.popup-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    text-align: center;
    text-transform: uppercase;
    -webkit-appearance: none;
    appearance: none;
    background-color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .products-section {
        padding-top: 0 !important;
    }
}

/* Feature Belt */
/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        padding-bottom: env(safe-area-inset-bottom);
        gap: 1.5rem;
        transition: 0.3s ease-in-out;
        z-index: 100;
        box-shadow: var(--shadow-lg);
    }

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

    .nav-divider {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 60vh;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .product-grid {
        padding-top: 120px;
        column-gap: 1.5rem;
        row-gap: 140px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-img-wrapper {
        top: -100px;
        transform: scale(1.15);
    }

    .product-image-colider {
        height: 220px;
    }
}

@media (max-width: 700px) {
    .product-grid {
        row-gap: 180px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-image-colider {
        height: 200px;
    }

    .product-img-wrapper {
        top: -160px;
        transform: scale(1.3);
    }
}

/* Out of Stock Styles */
.mt-shop-grid-item.out-of-stock {
    opacity: 0.9;
}

.out-of-stock-badge-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(239, 68, 68, 0.95);
    color: white;
    padding: 8px 16px;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 4px;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    white-space: nowrap;
}

.btn-add-to-cart-small.disabled {
    background-color: #94a3b8;
    box-shadow: none;
    cursor: not-allowed;
}

.btn-add-to-cart-small.disabled:hover {
    transform: none;
    background-color: #94a3b8;
}

@media (max-width: 768px) {
    .out-of-stock-badge-grid {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Cart Drawer Modernized */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

.cart-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    flex-shrink: 0;
}

.cart-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    font-family: var(--font-grotesk);
    letter-spacing: -0.02em;
}

.close-cart {
    background: #F3F4F6;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-cart:hover {
    color: white;
    background: var(--text-dark);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background-color: #FAFAFA;
}

/* Free Shipping Box */
.free-shipping-box {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.free-shipping-box.success {
    background: #F0FDF4;
    border-color: #BBF7D0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.free-shipping-box.success .fs-icon {
    width: 40px;
    height: 40px;
    background: #DCFCE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16A34A;
    margin-bottom: 0.5rem;
}

.fs-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.fs-progress {
    width: 100%;
    height: 6px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}

.fs-bar {
    height: 100%;
    background: linear-gradient(90deg, #3CB878, #34D399);
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
}

/* Empty State */
.empty-cart-state {
    text-align: center;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.empty-cart-state i {
    font-size: 4rem;
    color: #E5E7EB;
    margin-bottom: 1rem;
}

.btn-continue {
    background: none;
    border: 2px solid var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-continue:hover {
    background: var(--text-dark);
    color: white;
}

/* Cart Item Modern */
.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    transition: transform 0.2s;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.cart-item-img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    background: #F9FAFB;
    padding: 5px;
    flex-shrink: 0;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.cart-item-price-row {
    margin-bottom: 0.75rem;
}

.cart-item-price {
    font-family: var(--font-grotesk);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cart-item-controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F3F4F6;
    padding: 4px;
    border-radius: 50px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--text-dark);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.qty-btn:active {
    transform: scale(0.9);
}

.qty-val {
    font-weight: 700;
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.remove-item-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
}

.remove-item-btn:hover {
    color: #EF4444;
}

.cart-footer {
    padding: 2rem;
    background: #fff;
    border-top: 1px solid #F3F4F6;
    flex-shrink: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: var(--font-grotesk);
}

.checkout-btn {
    width: 100%;
    background: var(--text-dark);
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn::after {
    content: '\f178';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s;
}

.checkout-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(60, 184, 120, 0.4);
}

.checkout-btn:hover::after {
    transform: translateX(5px);
}


/* End of Cart Drawer Styles */

.cart-overlay.active .cart-container {
    transform: translateX(0);
}

/* Product Detail Page Styles */
.product-page-container {
    padding-top: 40px;
    padding-bottom: 80px;
    min-height: 60vh;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Gallery */
.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #E8FFEB;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px -10px rgba(60, 184, 120, 0.1);
}

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

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

/* Info Panel */
.product-info-panel {
    padding-top: 20px;
}

.product-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    color: var(--text-dark);
}

.product-meta-row {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sep {
    color: #ddd;
}

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

.price-box {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-current {
    font-family: var(--font-grotesk);
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.25rem;
}

.product-description-full {
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4B5563;
}

/* Actions */
.product-actions-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    padding: 5px;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

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

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    -moz-appearance: textfield;
    appearance: textfield;
}

.btn-lg-add {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 15px 30px;
}

/* Benefits */
.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 30px;
    border-top: 1px solid #F3F4F6;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.benefit-item i {
    color: var(--primary);
    background: #E8FFEB;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 900px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-main-image {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .product-page-title {
        font-size: 2rem;
    }

    .product-actions-row {
        flex-direction: column;
    }

    .quantity-selector {
        width: 100%;
        justify-content: space-between;
    }

    .quantity-selector input {
        width: 100%;
    }
}

/* =========================================
   Aronia Redesign Styles (Added for new layout)
   ========================================= */

.aronia-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-reviews-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-reviews-row .stars {
    color: #ffb800;
    font-size: 1.1rem;
}

.product-reviews-row .reviews-count {
    font-size: 0.95rem;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
}

.contact-stock-row {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 15px 0 25px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.phone-link {
    color: #000;
    text-decoration: none;
}

.phone-link:hover {
    color: #E21B22;
    /* Red highlight on hover */
}

.in-stock-label {
    color: #2e7d32;
}

/* Updated benefits list acting as short desc */
.aronia-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aronia-benefits-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.aronia-benefits-list li i {
    color: #E21B22;
    /* Use a red check or green check, aronia uses red/crimson accents */
    margin-top: 4px;
}

/* Aronia action buttons */
.btn-aronia {
    background-color: #E21B22 !important;
    /* Aronia red button */
    border-color: #E21B22 !important;
    text-transform: uppercase;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
}

.btn-aronia:hover {
    background-color: #cc181f !important;
}

/* Aronia-style prices */
.aronia-style .price-box {
    display: flex;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.aronia-style .price-current {
    font-size: 2.5rem !important;
    font-weight: 800;
    color: #E21B22;
    /* Big red price */
    line-height: 1;
}

.aronia-style .price-old {
    font-size: 1.4rem !important;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

/* Accordion custom styling */
.product-extra-details .accordion-button {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    background-color: #f9f9f9;
}

.product-extra-details .accordion-button:not(.collapsed) {
    color: #E21B22;
    background-color: #fff1f2;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.product-extra-details .accordion-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    background-color: #fff;
}

/* =========================================
   About Us Page Styles
   ========================================= */

.about-us-page {
    background-color: #fdfdfd;
    padding-bottom: 80px;
}

.about-page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.about-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.about-grid p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.about-geo-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-geo-img:hover {
    transform: translateY(-5px);
}

/* =========================================
   Enhanced Navigation Styles
   ========================================= */

/* Making the navbar a bit more "interesting" */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-links a {
    position: relative;
    padding: 5px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Animated underline effect */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.nav-actions {
    gap: 15px;
}

.nav-actions .icon-btn {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
}

.nav-actions .icon-btn:hover {
    transform: scale(1.15) rotate(-5deg);
    color: var(--primary);
}

/* =========================================
   Production Process Styles
   ========================================= */

.production-process {
    max-width: 800px;
    margin: 0 auto;
}

.production-visual {
    position: relative;
    padding: 20px 0;
    margin-bottom: 40px;
}

.process-icon-box {
    width: 70px;
    height: 70px;
    background: #fdfdfd;
    border: 3px solid #6eb344;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #432E54;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.process-line {
    flex: 1;
    height: 3px;
    background: repeating-linear-gradient(to right, #ccc, #ccc 6px, transparent 6px, transparent 12px);
    position: relative;
    z-index: 1;
}

.production-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    padding: 10px 0;
    transition: transform 0.3s;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-number {
    width: 45px;
    height: 45px;
    background: #71b24e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(113, 178, 78, 0.3);
}

.step-text {
    font-size: 1.2rem;
    color: #444;
    font-weight: 400;
}

.whatsapp-float-btn {
    position: fixed;
    height: 50px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 9000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 10px;
}

.whatsapp-float-btn i {
    font-size: 24px;
}

.whatsapp-float-btn:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    color: #FFF;
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        height: 45px;
        padding: 0 16px;
        font-size: 14px;
    }

    .whatsapp-float-btn i {
        font-size: 20px;
    }
}