/* Simple Delivery Banner */
.simple-delivery-banner {
    background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%);
    padding: 12px 0;
    text-align: center;
}

.simple-delivery-banner p {
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Scientific Studies Section */
.scientific-studies {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.scientific-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,235,59,0.3), transparent);
}

.scientific-studies .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #ffeb3b;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.scientific-studies .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffeb3b, #ff9800);
    border-radius: 2px;
}

.studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.study-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffeb3b, #ff9800);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.study-card:hover::before {
    transform: scaleX(1);
}

.study-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,235,59,0.3);
    box-shadow: 0 15px 35px rgba(255,235,59,0.1);
}

.study-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffeb3b, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 8px 20px rgba(255,235,59,0.3);
}

.study-content h3 {
    color: #ffeb3b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.study-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.study-source {
    margin-top: auto;
}

.source-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
}

.source-badge i {
    color: #ffeb3b;
    font-size: 0.9rem;
}

.studies-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-item i {
    color: #ffeb3b;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .scientific-studies {
        padding: 60px 0;
    }
    
    .scientific-studies .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .study-card {
        padding: 25px;
    }
    
    .study-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .study-content h3 {
        font-size: 1.2rem;
    }
    
    .trust-indicators {
        gap: 25px;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
}

/* Ingredients Transparency Section */
.ingredients-transparency {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    position: relative;
}

.ingredients-transparency .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #ffeb3b;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.ingredients-transparency .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffeb3b, #ff9800);
    border-radius: 2px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.ingredient-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffeb3b, #ff9800);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ingredient-card:hover::before {
    transform: scaleX(1);
}

.ingredient-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,235,59,0.3);
    box-shadow: 0 15px 35px rgba(255,235,59,0.1);
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffeb3b, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 8px 20px rgba(255,235,59,0.3);
}

.ingredient-content h3 {
    color: #ffeb3b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ingredient-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ingredient-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefit-tag {
    background: rgba(255,235,59,0.15);
    color: #ffeb3b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255,235,59,0.3);
    transition: all 0.3s ease;
}

.benefit-tag:hover {
    background: rgba(255,235,59,0.25);
    transform: translateY(-2px);
}

.quality-promise {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 1rem;
}

.promise-item i {
    color: #ffeb3b;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .ingredients-transparency {
        padding: 60px 0;
    }
    
    .ingredients-transparency .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .ingredient-card {
        padding: 25px;
    }
    
    .ingredient-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .ingredient-content h3 {
        font-size: 1.2rem;
    }
    
    .quality-promise {
        gap: 20px;
        padding: 30px 20px;
    }
    
    .promise-item {
        font-size: 0.9rem;
    }
}

/* Power Reviews Banner (Trustpilot Styling) */
.power-reviews-banner {
    background: linear-gradient(135deg, #00b67a 0%, #005638 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #00a652;
}

.power-reviews-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.power-reviews-banner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-30px) translateY(-30px); }
}

.power-reviews-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.trustpilot-logo i {
    color: #fff;
    font-size: 20px;
}

.trustpilot-logo span {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.power-reviews-stars {
    display: flex;
    gap: 6px;
    font-size: 28px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.power-reviews-stars i {
    animation: pulse 2s ease-in-out infinite;
}

.power-reviews-stars i:nth-child(2) { animation-delay: 0.2s; }
.power-reviews-stars i:nth-child(3) { animation-delay: 0.4s; }
.power-reviews-stars i:nth-child(4) { animation-delay: 0.6s; }
.power-reviews-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.power-reviews-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.power-reviews-rating {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
    line-height: 1;
}

.power-reviews-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    margin-top: 5px;
}

.power-reviews-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.power-reviews-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 16px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.power-reviews-badge:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.power-reviews-badge i {
    color: #fff;
    font-size: 16px;
}

.power-reviews-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .power-reviews-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 0 20px;
    }
    
    .trustpilot-logo {
        order: -1;
    }
    
    .power-reviews-rating {
        font-size: 2.5rem;
    }
    
    .power-reviews-text {
        font-size: 1rem;
    }
    
    .power-reviews-stars {
        font-size: 24px;
    }
    
    .power-reviews-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .power-reviews-badge {
        padding: 8px 12px;
    }
    
    .power-reviews-badge span {
        font-size: 0.8rem;
    }
}

/* Production Showcase Styles */
.production-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.production-carousel {
    margin-top: 60px;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.production-slide {
    min-width: 100%;
    position: relative;
    height: 400px;
}

.production-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    padding: 40px 30px 30px;
    color: white;
}

.slide-overlay h4 {
    color: #ffeb3b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.slide-overlay p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 235, 59, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #ffeb3b;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

@media (max-width: 768px) {
    .production-slide {
        height: 300px;
    }
    
    .slide-overlay {
        padding: 30px 20px 20px;
    }
    
    .slide-overlay h4 {
        font-size: 1.2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
}

/* Production Gallery Styles */
.production-gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 235, 59, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.gallery-caption h4 {
    color: #ffeb3b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-caption p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .production-gallery {
        padding: 60px 0;
    }
}

/* Snipcart Styling */
#snipcart {
    /* ----------------- 
        Colors
    ----------------- */
    --color-default: hsl(0, 0%, 90%);
    --color-alt: hsl(0, 0%, 60%);
    --color-icon: #ffeb3b;
    --color-success: hsl(144, 50%, 55%);
    --color-error: hsl(6, 55%, 60%);

    --color-link: #ffeb3b;
    --color-link-hover: hsl(0, 0%, 100%);
    --color-link-active: var(--color-link);
    --color-link-focus: var(--color-link);

    --color-input: hsl(0, 0%, 85%);
    --color-input-hover: var(--color-input);
    --color-input-focus: var(--color-input);
    --color-input-checked: var(--color-input);
    --color-input-disabled: var(--color-alt);
    --color-input-error: var(--color-error);
    --color-inputLabel: hsl(0, 0%, 90%);
    --color-inputLabel-hover: var(--color-inputLabel);
    --color-inputLabel-focus: var(--color-inputLabel);
    --color-inputIcon: var(--color-alt);
    --color-inputIcon-hover: var(--color-default);
    --color-inputIcon-focus: var(--color-inputIcon);
    --color-inputIcon-checked: var(--color-default);
    --color-inputIcon-error: var(--color-error);
    --color-inputPlaceholder: hsl(0, 0%, 60%);

    --color-buttonPrimary: #121212;
    --color-buttonPrimary-hover: #ffffff;
    --color-buttonPrimary-active: var(--color-buttonPrimary);
    --color-buttonPrimary-focus: var(--color-buttonPrimary);
    --color-buttonPrimary-disabled: var(--color-alt);
    --color-buttonPrimary-success: var(--color-buttonPrimary);
    --color-buttonPrimary-error: var(--color-buttonPrimary);

    --color-buttonSecondary: var(--color-icon);
    --color-buttonSecondary-hover: #ffeb3b;
    --color-buttonSecondary-active: var(--color-buttonSecondary);
    --color-buttonSecondary-focus: var(--color-buttonSecondary);
    --color-buttonSecondary-disabled: hsl(210, 10%, 25%);
    --color-buttonSecondary-success: var(--color-success);
    --color-buttonSecondary-error: var(--color-error);

    --color-buttonDanger: var(--color-error);
    --color-buttonDanger-hover: hsl(6, 55%, 70%);
    --color-buttonDanger-active: var(--color-buttonDanger);
    --color-buttonDanger-focus: var(--color-buttonDanger);
    --color-buttonDanger-disabled: hsl(210, 10%, 25%);
    --color-buttonDanger-success: var(--color-default);
    --color-buttonDanger-error: var(--color-default);

    --color-badge: var(--color-link);
    --color-badge-active: var(--color-link);
    --color-badge-disabled: var(--color-alt);

    /* ----------------- 
        Border colors
    ----------------- */
    --borderColor-default: hsla(0, 0%, 100%, 0.1);
    --borderColor-error: hsl(6, 55%, 30%);

    --borderColor-link: currentColor;
    --borderColor-link-hover: currentColor;
    --borderColor-link-active: currentColor;
    --borderColor-link-focus: currentColor;

    --borderColor-input: hsla(0, 0%, 100%, 0.15);
    --borderColor-input-hover: #ffeb3b;
    --borderColor-input-focus: var(--borderColor-input-hover);
    --borderColor-input-checked: var(--borderColor-input-hover);
    --borderColor-input-disabled: hsl(210, 10%, 20%);
    --borderColor-input-error: var(--borderColor-error);

    --borderColor-buttonPrimary: transparent;
    --borderColor-buttonPrimary-hover: transparent;
    --borderColor-buttonPrimary-focus: transparent;
    --borderColor-buttonPrimary-disabled: transparent;
    --borderColor-buttonPrimary-success: transparent;
    --borderColor-buttonPrimary-error: transparent;

    --borderColor-buttonSecondary: transparent;
    --borderColor-buttonSecondary-hover: transparent;
    --borderColor-buttonSecondary-focus: transparent;
    --borderColor-buttonSecondary-disabled: transparent;
    --borderColor-buttonSecondary-success: transparent;
    --borderColor-buttonSecondary-error: transparent;

    --borderColor-badge: transparent;
    --borderColor-badge-active: transparent;
    --borderColor-badge-disabled: transparent;

    /* ----------------- 
        Background colors
    ----------------- */
    --bgColor-default: #000;
    --bgColor-alt: #1f1f1f;
    --bgColor-success: hsl(144, 70%, 15%);
    --bgColor-error: hsl(6, 50%, 15%);
    --bgColor-info: hsl(64, 55%, 15%);

    --bgColor-modal: hsl(210, 10%, 7%);
    --bgColor-modalVeil: hsla(210, 10%, 7%, 0.75);

    --bgColor-link: none;
    --bgColor-link-hover: none;
    --bgColor-link-active: none;
    --bgColor-link-focus: hsl(210, 55%, 10%);

    --bgColor-input: hsl(210, 10%, 10%);
    --bgColor-input-hover: var(--bgColor-input);
    --bgColor-input-focus: var(--bgColor-input);
    --bgColor-input-checked: var(--borderColor-input-hover);
    --bgColor-input-disabled: hsl(210, 10%, 14%);
    --bgColor-input-error: var(--bgColor-input);
    --bgColor-input-autofill: hsl(210, 60%, 15%);

    --bgColor-buttonPrimary: #ffeb3b;
    --bgColor-buttonPrimary-hover: hsl(0, 0%, 0%);
    --bgColor-buttonPrimary-active: var(--bgColor-buttonPrimary);
    --bgColor-buttonPrimary-focus: var(--bgColor-buttonPrimary);
    --bgColor-buttonPrimary-disabled: hsl(210, 10%, 25%);
    --bgColor-buttonPrimary-success: hsl(144, 66%, 30%);
    --bgColor-buttonPrimary-error: hsl(6, 60%, 35%);

    --bgColor-buttonSecondary: var(--bgColor-info);
    --bgColor-buttonSecondary-hover: hsl(210, 100%, 3%);
    --bgColor-buttonSecondary-active: var(--bgColor-buttonSecondary);
    --bgColor-buttonSecondary-focus: var(--bgColor-buttonSecondary);
    --bgColor-buttonSecondary-disabled: hsl(210, 10%, 9%);
    --bgColor-buttonSecondary-success: var(--bgColor-success);
    --bgColor-buttonSecondary-error: var(--bgColor-error);

    --bgColor-buttonDanger: var(--bgColor-error);
    --bgColor-buttonDanger-hover: hsl(6, 50%, 18%);
    --bgColor-buttonDanger-active: var(--bgColor-buttonDanger);
    --bgColor-buttonDanger-focus: var(--bgColor-buttonDanger);
    --bgColor-buttonDanger-disabled: hsl(210, 10%, 9%);
    --bgColor-buttonDanger-success: hsl(144, 66%, 30%);
    --bgColor-buttonDanger-error: hsl(6, 60%, 35%);

    --bgColor-badge: hsl(210, 55%, 10%);
    --bgColor-badge-active: hsl(64, 55%, 15%);
    --bgColor-badge-disabled: hsl(210, 10%, 11%);

    /* ----------------- 
        Shadows
    ----------------- */
    --shadow-default: 0px 20px 24px -20px hsla(0, 0%, 0%, 0.5);
    --shadow-tooltip: 0px 8px 16px #ffeb3b;

    --shadow-link-focus: 0px 6px 4px -3px hsla(200, 90%, 40%, 0.5);

    --shadow-input-hover: none;
    --shadow-input-focus: 0px 5px 10px -3px hsla(200, 90%, 40%, 0.3);
    --shadow-input-checked: none;

    --shadow-buttonPrimary-hover: 0px 10px 4px -8px hsla(0, 0%, 0%, 0.5);
    --shadow-buttonPrimary-active: none;
    --shadow-buttonPrimary-focus: 0px 0px 6px 2px hsl(200, 90%, 40%);

    --shadow-buttonSecondary-hover: 0px 10px 4px -8px hsla(0, 0%, 0%, 0.2);
    --shadow-buttonSecondary-active: none;
    --shadow-buttonSecondary-focus: 0px 0px 6px 2px hsla(200, 90%, 40%, 0.8);

    --shadow-buttonDanger-hover: 0px 10px 4px -8px hsla(0, 0%, 0%, 0.25);
    --shadow-buttonDanger-active: none;
    --shadow-buttonDanger-focus: 0px 0px 6px 2px hsla(6, 55%, 60%);
}

/* Snipcart specific styling */
.snipcart-customer-signin {
    color: var(--light);
    font-size: 1.25rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.snipcart-customer-signin:hover {
    color: var(--primary);
}

/* Modern CSS Reset */
:root {
    /* Color Palette */
    --primary: #ffeb3b;
    --primary-dark: #fbc02d;
    --dark: #121212;
    --dark-light: #1f1f1f;
    --light: #e0e2e5;
    --accent: #60a8eb;
    --gray: #a0a0a0;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
}

/* Order Soon Overlay */
.order-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.order-soon-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255,235,59,0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255,152,0,0.03) 0%, transparent 50%);
    animation: subtleFloat 25s ease-in-out infinite;
}

@keyframes subtleFloat {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.overlay-content {
    text-align: center;
    max-width: 700px;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
}

.overlay-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(255,235,59,0.08), rgba(255,235,59,0.04));
    border: 1px solid rgba(255,235,59,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 3.5rem;
    color: #ffeb3b;
    box-shadow: 0 0 30px rgba(255,235,59,0.1),
                0 0 60px rgba(255,235,59,0.05),
                inset 0 0 30px rgba(255,235,59,0.02);
    animation: gentleFloat 8s ease-in-out infinite;
    position: relative;
}

.overlay-icon::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: conic-gradient(from 0deg, transparent, rgba(255,235,59,0.05), transparent, rgba(255,152,0,0.05), transparent);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.overlay-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: #ffeb3b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 4px 8px rgba(0,0,0,0.4) 0 0 20px rgba(255,235,59,0.2); }
    to { text-shadow: 0 4px 8px rgba(0,0,0,0.4) 0 0 30px rgba(255,235,59,0.4); }
}

.overlay-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 1px;
}

.overlay-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.85);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.feature-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,235,59,0.08), rgba(255,235,59,0.04));
    border: 1px solid rgba(255,235,59,0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffeb3b;
    box-shadow: 0 0 20px rgba(255,235,59,0.08),
                inset 0 0 15px rgba(255,235,59,0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,235,59,0.15), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.feature-item:hover .feature-icon::before {
    animation: iconShine 0.5s ease;
}

@keyframes iconShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
    border-color: rgba(255,235,59,0.2);
    box-shadow: 0 0 30px rgba(255,235,59,0.15),
                inset 0 0 20px rgba(255,235,59,0.05);
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
    .overlay-content {
        padding: 40px 30px;
        max-width: 95%;
    }
    
    .overlay-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .overlay-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
    
    .overlay-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
        letter-spacing: 0.5px;
    }
    
    .overlay-features {
        gap: 35px;
        margin-bottom: 30px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

/* Existing styles continue below */
.coming-soon-text {
    text-align: center;
    margin: 40px 0;
}

.coming-soon-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #ffeb3b;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.coming-soon-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

@media (max-width: 768px) {
    .coming-soon-text h2 {
        font-size: 2.5rem;
    }
    
    .coming-soon-text p {
        font-size: 1rem;
    }
}

/* Existing styles continue below */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--light);
}

h1 { 
    font-size: 2.5rem; 
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 0.02em;
}

h2 { 
    font-size: 2rem; 
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 0.03em;
}

h3 { 
    font-size: 1.5rem; 
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 0.04em;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--light);
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--dark-light);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(255, 235, 59, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--light);
    color: var(--light);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.0);
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
}

.menu-close{
    display: none;
}
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height:50px;
    width: auto;
    transition: transform 0.3s ease;
    margin-right: var(--spacing-md);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    
}

.logo-img:hover {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--light);
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Bebas Neue';
    font-size: 1.5rem;
    
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Rainbow Mix It Navigation */
.main-nav a.mix-it-nav {
    font-weight: 600;
    background: linear-gradient(90deg, #ff6b6b, #ff8e53, #feca57, #48dbfb, #ff9ff3);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    font-family: 'Bebas Neue';
    text-shadow:none;
}

.main-nav a.mix-it-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e53, #feca57, #48dbfb, #ff9ff3);
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

.main-nav a.mix-it-nav:hover::after,
.main-nav a.mix-it-nav.active::after {
    width: 100%;
    background-position: 100% 50%;
}

.main-nav a.mix-it-nav:hover,
.main-nav a.mix-it-nav.active {
    transform: translateY(-1px);
    filter: brightness(1.1);
    background-position: 100% 50%;
}

.cart-icon {
    position: relative;
    font-size: 1.25rem;
    
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    margin-left: 5px;
}
 .account-link {
        position: relative;
        font-size: 1.25rem;
        
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
        margin-left: 5px;
    }

/* Make cart icon inherit header-icon styles */


.cart-icon:hover {
    color: #ffeb3b;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary);
    color: var(--dark);
    font-size: 0.625rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    
    position: relative;
    height: 95vh;
    min-height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
    transform: scale(1.1) rotate(2deg);
    filter: blur(3px) brightness(0.7);
}

.slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1) rotate(0deg);
    filter: blur(0) brightness(1);
}

.slide.prev-slide {
    transform: scale(0.9) rotate(-2deg) translateX(-100%);
    opacity: 0;
}

.slide.next-slide {
    transform: scale(0.9) rotate(2deg) translateX(100%);
    opacity: 0;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 0.02em;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    color: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.slide.active h2 {
    transform: translateY(0);
    opacity: 1;
}

.slide p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 500;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slide.active p {
    transform: translateY(0);
    opacity: 1;
}

.slide .btn {
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
    background: var(--primary);
    color: var(--dark);
    font-weight: 600;
    font-family: 'Bebas Neue';
    font-size: 1.25rem;
}

.slide.active .btn {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.slide .btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.4);
}

/* Candy particle effects */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 235, 59, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(78, 205, 196, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active::after {
    opacity: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 2rem;
}

.slider-nav.next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Special Lemon Slide Styling */
.slide:nth-child(4) {
    position: relative;
}

.slide:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(255, 235, 59, 0.1) 0%, 
        rgba(255, 193, 7, 0.05) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.slide:nth-child(4).active::before {
    animation: lemonGlow 3s ease-in-out infinite;
}

@keyframes lemonGlow {
    0%, 100% { 
        background: radial-gradient(circle at center, 
            rgba(255, 235, 59, 0.1) 0%, 
            rgba(255, 193, 7, 0.05) 50%, 
            transparent 100%);
    }
    50% { 
        background: radial-gradient(circle at center, 
            rgba(255, 235, 59, 0.2) 0%, 
            rgba(255, 193, 7, 0.1) 50%, 
            transparent 100%);
    }
}


.slide .slide-content h2{
    font-size: 3.5rem;
}
.slide .slide-content p{
    font-family: "Bebas neue";
    font-size:1.5rem;
    
    font-weight: 500;
    text-shadow: none;
    font-style:bold;
}


@keyframes lemonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}



/* Adventure & Performance Section */
.adventure-performance {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--dark-light), rgba(31, 31, 31, 0.8));
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.performance-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.performance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 235, 59, 0.2);
    border: 1px solid rgba(255, 235, 59, 0.3);
}

.performance-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.performance-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.performance-card:hover .performance-img img {
    transform: scale(1.05);
}

.performance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.performance-card:hover .performance-overlay {
    opacity: 1;
}

.performance-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.performance-card:hover .performance-icon {
    transform: scale(1);
}

.performance-content {
    padding: 2rem;
}

.performance-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.performance-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    max-width: 300px;
}

.loading-candies {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.candy-item {
    font-size: 2.5rem;
    animation: candyFloat 2s ease infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.candy-item:nth-child(1) { --i: 0; }
.candy-item:nth-child(2) { --i: 1; }
.candy-item:nth-child(3) { --i: 2; }
.candy-item:nth-child(4) { --i: 3; }
.candy-item:nth-child(5) { --i: 4; }

@keyframes candyFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        filter: brightness(1);
    }
    25% { 
        transform: translateY(-20px) rotate(5deg) scale(1.1);
        filter: brightness(1.2) hue-rotate(30deg);
    }
    50% { 
        transform: translateY(-30px) rotate(-5deg) scale(1.2);
        filter: brightness(1.3) hue-rotate(60deg);
    }
    75% { 
        transform: translateY(-20px) rotate(3deg) scale(1.1);
        filter: brightness(1.2) hue-rotate(30deg);
    }
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ff8e53, #feca57, #48dbfb, #ff9ff3);
    background-size: 200% 200%;
    border-radius: 2px;
    animation: progressMove 2s ease infinite;
}

@keyframes progressMove {
    0% { 
        width: 0%;
        background-position: 0% 50%;
    }
    100% { 
        width: 100%;
        background-position: 0% 50%;
    }
}

/* Enhanced Mobile Optimizations */
@media (max-width: 768px) {
    /* Better Touch Targets */
    .btn {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    /* Better Mobile Menu */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .menu-close {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--light);
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }
    
    .main-nav.active .menu-close {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        font-family: 'Bebas Neue', cursive;
        font-weight: 600;
        color: var(--light);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }
    
    .main-nav a:hover {
        color: var(--primary);
    }
    
    /* Mobile Menu Toggle */
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
    }
    
    
    
    .product-img img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    /* Improved Typography */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    /* Better Spacing */
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Touch-Friendly Footer */
    .footer-section {
        margin-bottom: 30px;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better Form Elements */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }
    
    /* Improved Hero Section */
    .hero-content {
        text-align: center;
        padding: 20px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    /* Better Product Detail */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-images {
        order: 1;
    }
    
    .product-info {
        order: 2;
    }
    
    
    
    .snipcart-checkout {
        min-width: 44px;
        min-height: 44px;
    }
}

@media (max-width: 576px) {
    /* Extra Small Screens */
    .slide .btn{
        margin-top: 200px
    }
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    /* Better Mobile Menu */
    .main-nav {
        width: 90%;
    }
    
    /* Improved Product Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Better Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-content {
        padding: 10px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* Hide loading screen on mobile */
@media (max-width: 768px) {
    .loading-screen {
        display: none !important;
    }
}

/* Bundles Section - Modern Card Layout with Images */
.bundles-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.bundles-section .section-subtitle {
    text-align: center;
    color: var(--light);
    opacity: 0.8;
    margin-top: -2rem;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.bundles-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.bundle-card {
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bundle-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.bundle-title-link {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bundle-title-link:hover {
    color: var(--primary);
}

.bundle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 235, 59, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bundle-card.large {
    grid-row: span 1;
}

.bundle-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1), rgba(255, 107, 107, 0.1));
}

.bundle-card.large .bundle-image {
    height: 240px;
}

.bundle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 0.3s ease;
}

.bundle-card:hover .bundle-image img {
    transform: scale(1.05);
}

.bundle-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.bundle-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    background: linear-gradient(135deg, var(--success), #45a049);
}

.bundle-tag.bestseller {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: var(--dark);
}

.bundle-tag.limited {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.bundle-tag.custom {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.bundle-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bundle-card.large .bundle-info {
    padding: 2rem;
}

.bundle-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.bundle-card.large .bundle-info h3 {
    font-size: 2rem;
}

.bundle-desc {
    color: var(--light);
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.bundle-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.bundle-includes.compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.include-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 235, 59, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--light);
}

.include-item i {
    color: var(--primary);
}

.bundle-includes.compact span {
    color: var(--light);
    opacity: 0.9;
    font-size: 0.95rem;
}

.bundle-price-box {
    margin-top: auto;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.free-shipping {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(76, 175, 80, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 600;
}

.free-shipping i {
    font-size: 0.8rem;
}

.bundle-price-box .old-price {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.bundle-price-box .new-price {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 0.02em;
}

.bundle-card.large .bundle-price-box .new-price {
    font-size: 2.2rem;
}

.bundle-price-box .savings {
    background: rgba(76, 175, 80, 0.2);
    color: var(--success);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .bundles-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bundle-card.large {
        grid-column: span 2;
    }
    
    .bundle-image {
        height: 220px;
        object-fit: cover;
    }
    
    .bundle-card.large .bundle-image {
        height: 260px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .bundles-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle-card.large {
        grid-column: span 1;
    }
    
    .bundle-image {
        height: 180px;
    }
    
    .bundle-card.large .bundle-image {
        height: 200px;
    }
}

/* Disabled Product Links */
.product-link-disabled {
    cursor: not-allowed;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.product-link-disabled img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.product-link-disabled:hover img {
    opacity: 0.8;
}

.product-title-disabled {
    color: var(--text-secondary);
    cursor: not-allowed;
    text-decoration: none;
}

.product-title-disabled:hover {
    color: var(--text-secondary);
    text-decoration: none;
}

/* Sold Out Badge */
.product-badge.sold-out {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    max-width: 500px;
    margin: 0 auto;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    margin: 0 0 0.5rem 0;
}

.cookie-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-end;
    flex-shrink: 0;
}

.language-switcher {
    display: flex;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 0.2rem;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
}

.lang-btn.active {
    background: var(--primary);
    color: var(--dark);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.6rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary);
    color: var(--dark);
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-actions {
        align-items: stretch;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .language-switcher {
        align-self: center;
    }
}

/* Custom Scrollbars - Clean & Modern */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb:active {
    background: #FDD835;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark);
}

/* Custom scrollbar for specific elements */
.flavors-grid::-webkit-scrollbar,
.selected-flavors-grid::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.flavors-grid::-webkit-scrollbar-track,
.selected-flavors-grid::-webkit-scrollbar-track {
    background: rgba(255, 235, 59, 0.1);
    border-radius: 3px;
}

.flavors-grid::-webkit-scrollbar-thumb,
.selected-flavors-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.flavors-grid::-webkit-scrollbar-thumb:hover,
.selected-flavors-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Featured Categories */
.featured-categories {
    padding: var(--spacing-xl) 0;
    background-color: var(--dark);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    margin-top:50px;
    position: relative;
    font-size: 3rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 0.03em;
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-full);
}

.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    align-items: start;
}

.category-card {
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 1.5rem;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.category-img {
    height: 200px;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.05);
}

.category-card h3 {
    margin: 1.5rem 0 1rem;
    color: var(--light);
}

/* Featured Products */
.featured-products {
    padding: var(--spacing-xl) 0;
    background-color: var(--dark-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

/* Clickable Product Cards */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.product-card-link:hover .product-card {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-card.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.product-card.disabled:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Clickable Bundle Cards */
.bundle-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bundle-card-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.bundle-card-link:hover .bundle-card {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.bundle-card {
    background: var(--dark-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    height: 100%;
    min-height: 580px;
}

.product-card {
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    min-height: 520px;
    margin-left:10px;
    margin-right:10px;
}


/* Disable hover effects on mobile to prevent double-click issues */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        border-color: transparent;
    }
    
    .product-card:hover .product-img img {
        transform: none;
        filter: none;
    }
    
    .product-card:hover .product-link::after {
        opacity: 0;
    }
    
    .product-card:hover .product-title-link {
        animation: none;
    }
    
    /* Fix mobile double-click issue */
    .product-card-link {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .product-card-link:active {
        opacity: 0.8;
        transition: opacity 0.1s ease;
    }
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 235, 59, 0.25);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-badge.out-now {
    background: linear-gradient(135deg, var(--success), #45a049);
    color: white;
}

.product-badge.limited {
    background: linear-gradient(135deg, var(--warning), #f57c00);
    color: var(--dark);
}

.product-badge.out-of-stock {
    background: linear-gradient(135deg, var(--gray), #616161);
    color: white;
}

.product-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.3s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.04);
    filter: brightness(1.05);
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.product-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover .product-link::after {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, var(--dark-light), rgba(31, 31, 31, 0.8));
}

.product-title {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    color: var(--light);
    line-height: 1.2;
}

.product-badges {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.product-badge-info {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    background: rgba(255, 235, 59, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 235, 59, 0.2);
    display: inline-block;
    width: fit-content;
}

.product-description {
    color: var(--light);
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.old-price {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 0.9rem;
    opacity: 0.7;
}

.product-price strong {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 235, 59, 0.2);
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
    z-index: 10;
}

/* Prevent link click when button is clicked */
.product-actions .btn:active {
    pointer-events: auto;
}

.product-actions .btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.product-actions .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.product-actions .btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-actions .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.product-actions .btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-title-link {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
}

.product-title-link:hover {
    color: var(--primary);
    text-shadow: 0 2px 8px rgba(255, 235, 59, 0.3);
}

/* Add subtle glow effect on hover */
.product-card:hover .product-title-link {
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 235, 59, 0.3);
    }
    to {
        text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
    }
}

/* Enhanced product grid responsiveness */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .product-img {
        height: 220px;
        object-fit: cover;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-badges {
        margin-bottom: 0.75rem;
    }
    
    .product-description {
        font-size: 0.875rem;
    }
    
    .product-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
    }
    
    
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-img {
        height: 230px;
        object-fit: cover;
    }
    
    .product-info {
        padding: 0.5rem;
    }
    
    .product-title {
        font-size: 1.3rem;
        margin-top: 0;
    }
    
    .product-badge-info {
        font-size: 0.8rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        
    }
    
    .product-price strong {
        font-size: 1.125rem;
    }
    .product-actions .btn{
        margin-bottom: 0;
    }
    
    .product-actions {
        margin-top: 0;
        margin-bottom: 0;
    
    }
    .product-card{
        
    }
}

.text-center {
    text-align: center;
}

/* Registration Banner */
.registration-banner {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--dark), #1f1f1f);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
}

.registration-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 235, 59, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes floatPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.registration-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.registration-icon {
    font-size: 3rem;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.registration-text.slide h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Bebas Neue', cursive;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.registration-text p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.95;
    color: white;
}

.registration-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.register-btn {
    background: var(--dark);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #333;
}

.login-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: white;
    color: #ff6b6b;
    transform: translateY(-2px);
}

.registration-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.benefit-item i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: var(--spacing-xl) 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1rem;
    color: var(--light);
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--light);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section */
.faq-section {
    padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl);
    background-color: var(--dark);
    min-height: 100vh;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.faq-header p {
    font-size: 1.125rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: var(--spacing-lg);
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.faq-category-title i {
    font-size: 1.25rem;
}

.faq-item {
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 235, 59, 0.05);
}

.faq-question h3 {
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    color: var(--light);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* FAQ Contact Section */
.faq-contact {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary), #ff8a5c);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.contact-card h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.contact-card .btn {
    background: white;
    color: var(--dark);
    border: none;
}

.contact-card .btn:hover {
    background: var(--dark-light);
    color: white;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: calc(var(--spacing-lg) + 80px) 0 var(--spacing-lg);
    }
    
    .faq-category-title {
        font-size: 1.25rem;
    }
    
    .faq-question {
        padding: var(--spacing-sm);
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-sm) var(--spacing-sm);
    }
    
    .contact-card {
        margin: 0 var(--spacing-md);
        padding: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .faq-header p {
        font-size: 1rem;
    }
    
    .faq-category-title {
        font-size: 1.125rem;
        gap: 0.5rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-question i {
        font-size: 0.75rem;
    }
}

/* Product Detail Page */
.product-detail {
    padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl);
    background-color: var(--dark);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.product-images {
    position: relative;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.product-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.product-badges .product-badge {
    background: var(--success);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.product-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: var(--spacing-md);
}

.product-meta {
    display: flex;
    gap: var(--spacing-md);
    
}

.meta-item {
    background: var(--dark-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

.product-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--light);
    opacity: 0.9;
    
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
}

.old-price {
    font-size: 1.25rem;
    color: var(--gray);
    text-decoration: line-through;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-actions {
    
}

.product-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.product-features h3 {
    color: var(--primary);
    
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--light);
    opacity: 0.9;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Product Tabs */
.product-tabs {
    padding: var(--spacing-xl) 0;
    background-color: var(--dark-light);
}

.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.product-pinned-addtocart {
        display: none;
    }

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--light);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.tab-content {
    min-height: 400px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tab-pane h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.tab-pane h4 {
    color: var(--light);
    margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.tab-pane p {
    color: var(--light);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.tab-pane ul {
    color: var(--light);
    opacity: 0.9;
    line-height: 1.6;
}

.certification-badges {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.cert-badge {
    background: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    border: 1px solid var(--primary);
}

.nutritional-info {
    background: var(--dark);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-lg);
}

.nutritional-info ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.nutritional-info li {
    padding: 0.25rem 0;
}

/* Related Products */
.related-products {
    padding: var(--spacing-xl) 0;
    background-color: var(--dark);
}

/* Responsive Product Detail */
@media (max-width: 968px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .product-info h1 {
        font-size: 2rem;
    }
    
    .product-meta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: calc(var(--spacing-lg) + 80px) 0 var(--spacing-lg);
        padding-bottom: 30px;
    }
    
    .product-info h1 {
        font-size: 1.75rem;
        
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .product-pinned-addtocart {
        display:block;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 1rem;
        border-top: 2px solid var(--primary);
        z-index: 1;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
        margin: 0;
        position:fixed;
    }
    
    .product-pinned-addtocart h2 {
        color: var(--primary);
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        text-align: center;
        font-family: 'Bebas Neue', cursive;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .product-actions .btn {
        padding: 0.875rem;
        font-size: 1rem;
        width: 100%;
        opacity: 1;
        margin: 10px;
        transform: translateY(0);
        transition: all 0.3s ease;
        border-radius: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(255, 235, 59, 0.3);
    }
    
    .product-detail .product-actions:not(.fixed-actions) {
        display: none;
    }
    
    .certification-badges {
        flex-direction: column;
    }
    
    .nutritional-info ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-info h1 {
        font-size: 2.5rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .current-price {
        font-size: 1.25rem;
    }
    
    .tab-buttons {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Impressum Page */
.impressum-section {
    padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl);
    background-color: var(--dark);
    min-height: 100vh;
}

.impressum-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impressum-container .section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--primary);
}

.impressum-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.legal-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.legal-section:hover {
    border-color: rgba(255, 235, 59, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 235, 59, 0.3);
}

.legal-section h2 i {
    font-size: 1.125rem;
    color: var(--primary);
}

.legal-info {
    color: var(--light);
    opacity: 0.9;
    line-height: 1.6;
}

.legal-info p {
    margin-bottom: 1rem;
}

.legal-info p:last-child {
    margin-bottom: 0;
}

.legal-info strong {
    color: var(--primary);
    font-weight: 600;
}

.legal-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.back-to-home {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
}

/* Responsive Impressum */
@media (max-width: 768px) {
    .impressum-section {
        padding: calc(var(--spacing-lg) + 80px) 0 var(--spacing-lg);
    }
    
    .impressum-container {
        padding: var(--spacing-lg);
        margin: 0 var(--spacing-md);
    }
    
    .legal-section {
        padding: var(--spacing-md);
    }
    
    .legal-section h2 {
        font-size: 1.125rem;
        gap: 0.75rem;
    }
    
    .legal-section h2 i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .impressum-container {
        padding: var(--spacing-md);
        margin: 0 var(--spacing-sm);
    }
    
    .legal-section {
        padding: var(--spacing-sm);
    }
    
    .legal-section h2 {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .legal-section h2 i {
        font-size: 0.875rem;
    }
    
    .back-to-home .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* About Us Page */
.about-hero {
    padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 235, 59, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light);
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 235, 59, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 235, 59, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 235, 59, 0.2);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--light);
    font-size: 0.875rem;
    margin: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Story Section */
.story-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-text h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.story-text p {
    color: var(--light);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Values Section */
.values-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--dark);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 235, 59, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary), #ff8a5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
}

.value-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.value-card p {
    color: var(--light);
    line-height: 1.6;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.team-member {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.member-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-image .founders-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    max-width: none;
    margin: 0;
    box-shadow: none;
}

.member-image .founders-image:hover {
    transform: scale(1.05);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: var(--spacing-lg);
}

.member-info h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.member-bio {
    color: var(--light);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.member-social {
    display: flex;
    gap: var(--spacing-sm);
}

.member-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 235, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Process Section */
.process-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #ff8a5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-lg);
    position: relative;
    box-shadow: 0 10px 25px rgba(255, 235, 59, 0.3);
}

.step-content h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.step-content p {
    color: var(--light);
    line-height: 1.6;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary), #ff8a5c);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.cta-buttons .btn-primary {
    background: var(--dark);
    color: var(--primary);
}

.cta-buttons .btn-primary:hover {
    background: var(--dark-light);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.cta-buttons .btn-secondary:hover {
    background: var(--dark);
    color: var(--primary);
}

/* Responsive About Us */
@media (max-width: 992px) {
    .about-hero .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .value-card {
        padding: var(--spacing-lg);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .stat-item {
        padding: var(--spacing-sm);
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--dark-light);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        padding: 2rem 2rem 2rem;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
        font-size: 3rem;
        
    }
    

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    .main-nav ul a{
        font-size: 2rem;
        
    }
    .main-nav ul a.mix-it-nav{
        font-size: 2rem;
        font-weight: 600;
    }

    

    .header .container {
        padding: 0 var(--spacing-md);
    }

    .logo-img {
        height: 45px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-left: auto;
    }

    @media (min-width: 769px) {
        .header-actions {
            gap: 1rem;
        }
        
        .header-icon {
            width: 40px;
            height: 40px;
            font-size: 1.4rem;
        }
        
        .cart-count {
            top: -6px;
            right: -6px;
            width: 18px;
            height: 18px;
            font-size: 0.7rem;
            padding: 3px 6px;
            border-radius: 12px;
        }
    }

    

    .header-icon:hover {
        color: #ffeb3b;
    }

   

    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
       
    }

    .header .container {
        padding: 0 var(--spacing-md);
        
    }

    .logo-img {
        height: 42px;
    }

    .header-actions {
        gap: 1rem;
    }

    .account-link {
        font-size: 1.3rem;
        padding: 6px;
    }

    .snipcart-customer-signin {
        font-size: 1.375rem;
        margin-right: 0;
    }

    

    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.625rem;
        top: -8px;
        right: -8px;
    }

    .menu-toggle {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .main-nav {
        width: 280px;
        padding: 5rem 1.5rem 1.5rem;
    }

    .main-nav ul {
        gap: 0.75rem;
    }

    .main-nav a {
        font-size: 1rem;
        padding: 0.75rem 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    /* Registration Banner Mobile */
    .registration-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .registration-text h3 {
        font-size: 2rem;
    }

    .registration-text p {
        font-size: 1rem;
    }

    .registration-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .register-btn,
    .login-btn {
        width: 100%;
        max-width: 300px;
    }

    .registration-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .benefit-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .hero-slider {
        
        height: 50vh;
        min-height: 350px;
    }

    .slide h2 {
        font-size: 2rem;
    }

    .slide p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 1rem 0;
    }

    

    .header .container {
        padding: 0 var(--spacing-sm);
    }

    .logo-img {
        height: 38px;
    }

    .header-actions {
        gap: 0.875rem;
    }

    .account-link {
        font-size: 1.2rem;
        padding: 5px;
    }

    .snipcart-customer-signin {
        font-size: 1.25rem;
    }

    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 0.5625rem;
        top: -6px;
        right: -6px;
    }

    .menu-toggle {
        font-size: 1.375rem;
        padding: 0.5rem;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    }

    @media (max-width: 576px) {
        .header {
            padding: 1rem 0;
        }

        .header .container {
            padding: 0 var(--spacing-sm);
        }
    .main-nav ul {
        gap: 0.5rem;
    }

    .main-nav a {
        font-size: 0.9375rem;
        padding: 0.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-slider {
        height: 100vh;
        min-height: 300px;
    }

    .slide h2 {
        font-size: 1.75rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav.prev {
        left: 1rem;
    }

    .slider-nav.next {
        right: 1rem;
    }
}
}
