/* ===========================
   GLOBAL STYLES & VARIABLES
   =========================== */

:root {
    --primary-green: #a4ff00;
    --dark-bg: #0f0f0f;
    --light-gray: #f5f5f5;
    --dark-gray: #1a1a1a;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --border-light: #e0e0e0;
    --accent-green: #8fcc00;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 8px 24px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-green);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-green);
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icons a {
    color: var(--text-dark);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-icons a:hover {
    color: var(--primary-green);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}
.mobile-nav {
    display: none;
}
/* Responsive */
@media (max-width: 768px) {
    .remove{
        display: none;
    }
    .nav { display: none; } /* إخفاء القائمة العادية */

    .mobile-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        border-top: 1px solid var(--border-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
        border-radius: 18px;
        box-shadow: var(--shadow);
    }

    .mobile-nav.active {
            max-height: 500px; /* ارتفاع ديناميكي حسب عدد العناصر */
        }

    .mobile-nav ul {
        flex-direction: column;
        gap: 15px;
        list-style: none;
        padding: 10px 0;
        text-align: center;
    }

    .mobile-nav ul li a {
        color: var(--text-dark);
        text-decoration: none;
        font-size: 16px;
        display: block;
        padding: 8px 0;
    }

    .mobile-nav ul li a:hover {
        color: var(--primary-green);
    }

    .hamburger {
        display: flex;
    }


    .header .header-icons {
        gap: 15px;
    }
    .mobile-account {
        padding: 4px 8px;
        border: none;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
        text-align: center;
        background-color: transparent;
        color: var(--primary-green);
        border: 2px solid var(--primary-green);
    }

}


/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 200px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 500px;
}
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, #9CFF2E 0%, #39B500 100%);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(164, 255, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--text-dark);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 10px 24px;
    margin-top: 20px;
}

.btn-secondary-outline:hover {
    background-color: var(--primary-green);
    color: var(--text-dark);
}
.shop-now-btn {

    width: fit-content;

}

.shop-now-button:hover {
    background: linear-gradient(to top, #c6ff40, var(--primary-green));
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(164, 255, 0, 0.4);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    /* height: auto; */
    object-fit: cover;
    border-radius: 20px;
}

/* ===========================
   OFFERS BANNER SECTION
   =========================== */

.offers-banner-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    padding: 40px 0;
    position: relative;
}

.offers-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 20px;
}

.offer-slide {
    display: none;
    background: linear-gradient(90deg, #9CFF2E 0%, #39B500 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-dark);
    animation: slideIn 0.5s ease;
}

.offer-slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.offer-content i {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.offer-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.offer-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.offer-code {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.offer-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-green);
    width: 30px;
    border-radius: 5px;
}

/* ===========================
   FEATURED PRODUCTS SECTION
   =========================== */

.featured-products-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.featured-products-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 0 0;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-image-wrapper img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.original-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.gst-info {
    font-size: 12px;
    color: var(--text-muted);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.product-rating i {
    color: var(--primary-green);
    font-size: 14px;
}

.view-btn,
.add-to-cart {
    width: 100%;
    justify-content: center;
    padding: 12px;
    margin-bottom: 10px;
}

.view-btn {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.view-btn:hover {
    background-color: var(--primary-green);
    color: var(--text-dark);
}

.home-add-to-cart-btn {
    background: linear-gradient(to bottom, #c6ff40, var(--primary-green));
    color: var(--text-dark);
    border: 1px solid #8fcc00;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.home-add-to-cart-btn:hover {
    background: linear-gradient(to top, #c6ff40, var(--primary-green));
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(164, 255, 0, 0.4);
}

.browse-all-container {
    text-align: center;
}

.browse-all-btn {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browse-all-btn:hover {
    background-color: var(--primary-green);
    color: var(--text-dark);
}

/* ===========================
   FLAVORS CAROUSEL SECTION
   =========================== */

.flavors-carousel-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.flavors-carousel-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.flavors-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.slider-btn {
    background: linear-gradient(to bottom, #c6ff40, var(--primary-green));
    color: var(--text-dark);
    border: 2px solid transparent;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: linear-gradient(to top, #c6ff40, var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(164, 255, 0, 0.4);
}

.flavors-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 10px 0;
}

.flavors-track::-webkit-scrollbar {
    height: 6px;
}

.flavors-track::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 10px;
}

.flavors-track::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.flavor-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.flavor-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.flavor-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.flavor-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.flavor-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
    margin-top: 5px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.about-features .feature-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.about-features .feature-item:hover {
    background-color: var(--light-gray);
    transform: translateX(5px);
}

.about-features .feature-item i {
    font-size: 32px;
    color: var(--primary-green);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #c6ff40, var(--primary-green));
    border-radius: 12px;
    color: var(--text-dark);
}

.about-features .feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.about-features .feature-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ===========================
   FAQ SECTION
   =========================== */

.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   CONTACT US SECTION
   =========================== */

.contact-us-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-us-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
}

.contact-method i {
    font-size: 32px;
    color: var(--primary-green);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #c6ff40, var(--primary-green));
    border-radius: 12px;
    color: var(--text-dark);
}

.contact-details h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-details p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.contact-details span {
    font-size: 12px;
    color: #999999;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(164, 255, 0, 0.1);
}

.send-btn{
    margin-top: 10px;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background-color: #0a0a0a;
    color: var(--text-light);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #999999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-green);
}

.footer-brand p {
    font-size: 14px;
    color: #999999;
    line-height: 1.8;
    margin: 15px 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-green);
    color: var(--text-dark);
    border-color: var(--primary-green);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    font-size: 13px;
    color: #666666;
    text-align: center;
}

.contact-info,
.disclaimers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.disclaimers p {
    font-size: 12px;
}

.disclaimers i {
    color: var(--primary-green);
    font-size: 12px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .flavors-track {
        flex-wrap: wrap;
    }

    .flavor-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 150px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav ul {
        gap: 15px;
        font-size: 12px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .featured-products-section h2,
    .flavors-carousel-section h2,
    .about-section h2,
    .faq-section h2,
    .contact-us-section h2 {
        font-size: 28px;
    }

    .nav ul {
        display: none;
    }

    .header-icons {
        gap: 10px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


.about-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.about-images .image-item {
  flex: 1 1 45%;
  max-width: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-images .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-images .image-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-images .image-item:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .about-images {
    flex-direction: column;
    gap: 20px;
  }

  .about-images .image-item {
    max-width: 100%;
  }
}

/* ===========================
   CART
   =========================== */


/* Main Content - Empty Cart */
.main-content {
    padding: 80px 0 100px 0;
    text-align: center;
}

.empty-cart-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
}

.cart-icon-large {
    color: var(--text-muted);
    font-size: 4rem;
    margin-bottom: 20px;
}

.empty-cart-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.empty-cart-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.cart-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Cart items on the left, summary on the right (LTR) */
    gap: 30px;
}

/* Cart Items List */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.item-image {
    width: 80px;
    height: 80px;
    background-color: #f9f9f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px; /* Space between image and details (LTR) */
}

.item-image img {
    max-width: 100%;
    max-height: 100%;
}

.item-details {
    flex-grow: 1;
}

.item-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: start;
}

.item-flavor {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-align: start;

}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    width: fit-content;
}

.quantity-btn {
    background: none;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
}

.quantity-value {
    padding: 0 15px;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-weight: 700;
}

.item-price-info {
    text-align: right; /* Prices aligned to the right (end of the container) (LTR) */
    margin-left: 20px;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.remove-item:hover {
    color: var(--secondary-color);
}

.item-total-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.item-unit-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Order Summary */
.order-summary {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    height: fit-content;
}

.order-summary h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.summary-line span:last-child {
    font-weight: 700;
}

.shipping-price {
    color: var(--primary-color);
}

.total-line {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    font-size: 1.2rem;
}

.total-price {
    color: var(--primary-color);
}

.btn-checkout {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
    /* Gradient effect from image */
    background-image: linear-gradient(to right, #90EE90, #7CFC00);
}

.btn-checkout:hover {
    background-image: linear-gradient(to right, #7CFC00, #90EE90);
}

.continue-shopping-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

.continue-shopping-link:hover {
    color: var(--primary-color);
}
/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr; /* Stack items and summary vertically */
    }

    .order-summary {
        order: -1; /* Move summary to the top on smaller screens */
    }
}

@media (max-width: 600px) {
    .cart-item {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .item-image {
        margin-right: 10px; /* Adjusted for LTR */
        margin-left: 0;
    }

    .item-details {
        flex-basis: 60%;
    }

    .item-price-info {
        flex-basis: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        margin-left: 0; /* Adjusted for LTR */
        padding-top: 10px;
        border-top: 1px solid var(--border-color);
    }

    .remove-item {
        margin-bottom: 0;
    }


}

.custom-radio {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.custom-radio:checked {
  border-color: var(--primary-green);
}

.custom-radio:checked::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
}