/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary colors - Natural green tones from juicedrinks.biz */
    --primary-color: #2d8659;
    --primary-dark: #1f5d3f;
    --primary-light: #3da870;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    
    /* Text colors */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b7280;
    
    /* Background colors - Clean whites and light greens */
    --bg-light: #f7faf9;
    --bg-white: #ffffff;
    --bg-green-tint: #f0f7f4;
    
    /* Border and shadow */
    --border-color: #d1d5db;
    --border-light: #e5e7eb;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 5px 20px rgba(45, 134, 89, 0.15);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Mobile-first: Ensure container padding is adequate on small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0.75rem 0;
    }
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    display: block;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
    min-width: 20px;
    padding: 0 4px;
}

.cart-count.count-updated {
    animation: cartPulse 0.6s ease;
    transform: scale(1.3);
    background: var(--primary-color);
}

.cart-icon.cart-updated {
    animation: cartBounce 0.6s ease;
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
        box-shadow: 0 0 0 8px rgba(45, 134, 89, 0.3);
    }
    100% {
        transform: scale(1.3);
    }
}

@keyframes cartBounce {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d8659 0%, #3da870 50%, #1f5d3f 100%);
    color: white;
    padding-top: 80px;
    padding-bottom: 2rem;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Banner */
.features-banner {
    background: var(--bg-white);
    padding: 3rem 0;
    border-top: 2px solid var(--bg-green-tint);
    border-bottom: 2px solid var(--bg-green-tint);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature-badge {
    padding: 1.5rem;
}

.feature-icon-large {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-badge h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-badge p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 44px; /* Touch-friendly minimum size */
    touch-action: manipulation; /* Disable double-tap zoom on buttons */
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

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

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Products Section */
.products {
    background: var(--bg-green-tint);
}

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

.product-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
}

.product-card.seasonal {
    border: 2px solid #f4a261;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.seasonal-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f4a261;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-green-tint) 0%, var(--bg-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.product-image img {
    max-width: 100%;
    height: auto;
}

.product-icon {
    font-size: 5rem;
    opacity: 0.8;
}

.product-bottle-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-height: 200px;
    display: block;
}

/* Fallback for missing images */
.product-image img:not([src]),
.product-image img[src=""],
.product-image img[src*="undefined"] {
    display: none;
}

.product-image:has(img:not([src])),
.product-image:has(img[src=""]),
.product-image:has(img[src*="undefined"]) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image:has(img:not([src]))::after,
.product-image:has(img[src=""])::after,
.product-image:has(img[src*="undefined"])::after {
    content: "📦";
    font-size: 4rem;
    opacity: 0.5;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.product-description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.product-ingredients {
    margin-bottom: 1.5rem;
}

.product-ingredients h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ingredient-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ingredient-tag {
    background: var(--bg-green-tint);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--primary-light);
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-green-tint);
    border-radius: 8px;
}

.benefit {
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.product-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 0.25rem;
}

.qty-btn {
    width: 35px;
    height: 35px;
    min-width: 44px; /* Touch-friendly */
    min-height: 44px;
    border: none;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    touch-action: manipulation;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.qty-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.add-to-cart-btn {
    flex: 1;
    margin: 0;
}

/* Juice Cleanse Packages Section */
.packages {
    background: var(--bg-white);
    padding: 5rem 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.package-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--bg-green-tint);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.package-card.package-popular {
    border-color: var(--primary-color);
    border-width: 3px;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.package-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.package-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-bottles {
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 500;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-note {
    background: #fff9e6;
    border-left: 4px solid #f4a261;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.package-note strong {
    color: var(--text-dark);
}

.package-description {
    margin-bottom: 1.5rem;
}

.package-desc-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.package-desc-text {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.package-tagline {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.package-flavor-selection {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.package-flavor-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.flavor-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flavor-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 44px;
    touch-action: manipulation;
}

.flavor-option:hover {
    border-color: var(--primary-light);
    background: var(--bg-green-tint);
}

.flavor-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.flavor-name {
    grid-column: 1;
    min-width: 120px;
}

.flavor-ingredients {
    grid-column: 2;
}

.flavor-checkmark {
    grid-column: 3;
}

/* Flavor selection styling handled by JavaScript for better browser compatibility */
.flavor-option.selected .flavor-name {
    color: var(--primary-color);
    font-weight: 700;
}

.flavor-option.selected .flavor-checkmark {
    display: flex;
    background: var(--primary-color);
    color: white;
}

.flavor-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 0.5rem;
    flex-shrink: 0;
    min-width: 120px;
}

.flavor-ingredients {
    flex: 1;
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.flavor-checkmark {
    display: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.package-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.package-actions .btn {
    width: 100%;
    margin: 0;
}

.package-actions .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.package-actions .btn-secondary:hover {
    background: var(--bg-green-tint);
    border-color: var(--primary-dark);
}

/* Countdown Section */
.countdown-section {
    background: var(--bg-white);
    padding: 4rem 0;
}

.countdown-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.countdown-card {
    background: var(--bg-green-tint);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.countdown-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.countdown-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.countdown-subtitle {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin: 0 0.25rem;
}

@media (max-width: 768px) {
    .countdown-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .countdown-card {
        padding: 2rem 1.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .countdown-section {
        padding: 3rem 0;
    }
    
    .countdown-card {
        padding: 1.5rem 1rem;
    }
    
    .countdown-title {
        font-size: 1.25rem;
    }
    
    .countdown-number {
        font-size: 1.75rem;
    }
    
    .countdown-unit {
        min-width: 50px;
    }
    
    .countdown-separator {
        font-size: 1.25rem;
        margin: 0 0.1rem;
    }
}

/* Flavor Profiles Section */
.flavor-profiles {
    background: var(--bg-white);
    padding: 5rem 0;
}

.flavor-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.flavor-tab {
    padding: 1rem 2rem;
    border: none;
    background: var(--bg-light);
    color: var(--text-medium);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    pointer-events: auto;
    position: relative;
    z-index: 1;
    min-height: 44px;
    touch-action: manipulation;
}

.flavor-tab:hover {
    background: var(--bg-green-tint);
    color: var(--primary-color);
}

.flavor-tab.active {
    background: var(--primary-color);
    color: white;
}

.flavor-content {
    max-width: 1000px;
    margin: 0 auto;
}

.flavor-details {
    display: none !important;
    animation: fadeIn 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

.flavor-details.active {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flavor-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.flavor-ingredients {
    font-size: 1.1rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.flavor-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.flavor-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.flavor-benefits-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.ingredient-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.ingredient-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.ingredient-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.ingredient-description {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* About Section */
.about {
    background: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin: 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    background: var(--bg-green-tint);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    width: 100%;
    -webkit-appearance: none; /* Remove iOS styling */
    appearance: none;
}

/* Prevent zoom on input focus on iOS */
@media screen and (max-width: 768px) {
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3da870;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3da870;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .hero {
        padding-top: 70px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

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

    .hero-tagline {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quantity-selector {
        width: 100%;
        justify-content: center;
    }
    
    .add-to-cart-btn {
        width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-summary {
        position: static;
        margin-top: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .hero-badges {
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-badge {
        padding: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .ingredient-cards-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .flavor-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .flavor-tab {
        width: 100%;
        padding: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 100%;
    }

    /* Cart Modal Mobile */
    .cart-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        height: 100vh;
    }

    .cart-header {
        padding: 1rem;
    }

    .cart-items {
        padding: 1rem;
    }

    .cart-footer {
        padding: 1rem;
    }

    .cart-footer-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cart-footer-buttons .btn {
        width: 100%;
    }

    /* Checkout Modal Mobile */
    .checkout-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        height: 100vh;
    }

    .checkout-modal-body {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }

    .checkout-order-summary {
        position: static;
        order: -1; /* Show summary first on mobile */
    }

    /* Package flavor options mobile */
    .flavor-option {
        grid-template-columns: auto 1fr;
        gap: 0.5rem;
    }

    .flavor-name {
        grid-column: 1 / -1;
        margin-bottom: 0.25rem;
    }

    .flavor-ingredients {
        grid-column: 1 / -1;
        font-size: 0.85rem;
    }

    .flavor-checkmark {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 90vh;
        padding-top: 60px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

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

    .hero-tagline {
        font-size: 0.85rem;
        padding: 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .package-card {
        padding: 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-icon-large {
        font-size: 2.5rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    .product-icon {
        font-size: 4rem;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }

    .quantity-controls {
        flex: 1;
    }

    .quantity-btn {
        min-width: 44px;
        min-height: 44px;
    }

    .close-cart,
    .close-checkout {
        min-width: 44px;
        min-height: 44px;
    }

    .checkout-form-container {
        padding: 1.5rem;
    }

    .order-summary {
        padding: 1.5rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .flavor-title {
        font-size: 2rem;
    }

    .ingredient-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .newsletter {
        padding: 3rem 0;
    }

    .newsletter h2 {
        font-size: 1.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .product-card,
    .package-card {
        padding: 1rem;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed navbar */
}

/* Improve scroll performance and smoothness */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overscroll-behavior: smooth;
}

/* Smooth transitions for all scrollable elements */
section {
    scroll-margin-top: 80px;
}

/* Optimize scroll performance */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Shopping Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

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

.cart-modal-content {
    background: var(--bg-white);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.cart-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    color: var(--text-dark);
}

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

.empty-cart-message {
    text-align: center;
    color: var(--text-light);
    padding: 2rem 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
}

.cart-item-price {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    min-width: 70px;
    text-align: right;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    width: 30px;
    height: 30px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    touch-action: manipulation;
}

.quantity-btn:hover {
    background: var(--border-color);
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.remove-item:hover {
    color: #d63031;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.cart-summary {
    margin-bottom: 1rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.cart-summary-row.cart-total-row {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-footer-buttons {
    display: flex;
    gap: 1rem;
}

.clear-cart-btn {
    flex: 1;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.clear-cart-btn:hover {
    background: var(--bg-light);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Checkout Modal */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2001;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem 0;
}

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

.checkout-modal-content {
    background: var(--bg-white);
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin: auto;
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--bg-white);
    z-index: 10;
    border-radius: 15px 15px 0 0;
}

.checkout-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-checkout {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-checkout:hover {
    color: var(--text-dark);
}

.checkout-modal-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.checkout-form-wrapper {
    overflow-y: auto;
}

.checkout-form-wrapper .checkout-form {
    background: transparent;
    padding: 0;
}

.checkout-form-wrapper .checkout-form h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.checkout-form-wrapper .checkout-form h3:not(:first-of-type) {
    margin-top: 1.5rem;
}

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

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

.checkout-form-wrapper input,
.checkout-form-wrapper select {
    padding: 0.75rem;
    font-size: 0.95rem;
}

.checkout-order-summary {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 0;
}

.checkout-order-summary h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

#checkoutModalItems {
    margin-bottom: 1rem;
}

.checkout-modal-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.checkout-modal-item:last-of-type {
    border-bottom: none;
}

.checkout-summary-totals {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.checkout-summary-row.checkout-total-row {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .checkout-modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .checkout-order-summary {
        position: static;
        order: -1;
    }
    
    .cart-footer-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cart-footer-buttons .btn {
        width: 100%;
    }
    
    .checkout-modal-content {
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
    }

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

/* Checkout Section */
.checkout {
    background: var(--bg-white);
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-form-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.checkout-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.checkout-form h3:not(:first-of-type) {
    margin-top: 2rem;
}

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

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.checkout-form input,
.checkout-form select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.checkout-form input:focus,
.checkout-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkout-form select {
    cursor: pointer;
}

.stripe-element {
    padding: 1rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.stripe-errors {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 20px;
}

.submit-payment-btn {
    width: 100%;
    margin-top: 1rem;
    position: relative;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
}

.spinner.hidden {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.order-summary {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

#orderSummaryItems {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.summary-totals {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.summary-row.total-row {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-green-tint);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
    text-align: right;
}

/* FAQ Section */
.faq {
    background: var(--bg-white);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.3s ease;
    min-height: 44px;
    touch-action: manipulation;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-green-tint);
    border-radius: 50%;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 0.5rem;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #2d8659 0%, #3da870 50%, #1f5d3f 100%);
    color: white;
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Touch optimizations */
* {
    -webkit-tap-highlight-color: rgba(45, 134, 89, 0.2);
}

button,
a,
input[type="button"],
input[type="submit"] {
    -webkit-tap-highlight-color: rgba(45, 134, 89, 0.2);
}

/* Prevent text size adjustment on iOS */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Improve scrolling on mobile */
body {
    -webkit-overflow-scrolling: touch;
}

/* Better focus states for mobile */
@media (max-width: 768px) {
    *:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }

    button:focus,
    a:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
}

/* Additional styling for juicedrinks.biz aesthetic */
.hero-title {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.section-header h2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-card {
    border-left: 4px solid var(--primary-color);
}

.faq-item.active .faq-question {
    background: var(--bg-green-tint);
    color: var(--primary-dark);
}

