/* Skip to Content (Accessibility) */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: var(--primary-blue, #0033A0);
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
    left: 0;
}

/* Global Reset & Variables */
:root {
    --primary-yellow: #FFC72C;
    --primary-blue: #0033A0;
    --primary-red: #CE1126;
    --text-dark: #1A1A1A;
    --text-light: #F9F9F9;
    --text-grey: #666666;
    --bg-light: #FDFBF7;
    /* Warm cream */
    --bg-white: #FFFFFF;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    --transition-speed: 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography & Utilities */
.highlight {
    color: var(--primary-yellow);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--primary-blue);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-15deg);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-red);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(206, 17, 38, 0.3);
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid white;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-blue);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
}

.nav-links li a:not(.btn-primary):hover {
    color: var(--primary-red);
}

.nav-links li a.btn-primary {
    color: white;
}

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

/* Language Toggle */
.lang-toggle {
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-speed);
}

.lang-toggle:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

/* Cart Button */
.cart-btn {
    position: relative;
    background: var(--primary-yellow);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-speed);
    box-shadow: 0 4px 15px rgba(255, 199, 44, 0.3);
}

.cart-btn:hover {
    transform: scale(1.1);
}

.cart-btn i {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-red);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Shopping Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-grey);
    transition: var(--transition-speed);
}

.close-cart:hover {
    color: var(--primary-red);
}

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

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

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

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

.cart-item-price {
    color: var(--primary-blue);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.cart-item-quantity button {
    background: white;
    border: 1px solid var(--primary-blue);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary-blue);
    font-weight: 700;
}

.cart-item-quantity button:hover {
    background: var(--primary-blue);
    color: white;
}

.remove-item {
    background: none;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.remove-item:hover {
    opacity: 0.7;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    background: url('images/hero.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e2e2 100%);
    z-index: -2;
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 48, 135, 0.7), rgba(0, 0, 0, 0.85));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Menu/Products Section */
.menu-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 10px auto 0;
    border-radius: 2px;
}

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

.section-header .note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--primary-red);
    margin-top: 5px;
}

/* Section Image Header */
.section-image-header {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}

.section-header-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-speed);
}

.section-header-img:hover {
    transform: scale(1.02);
}

/* Main Product Card */
.main-product-card {
    max-width: 700px;
    margin: 0 auto 60px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 2px solid var(--primary-yellow);
}

.main-product-card h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.main-product-card .description {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 25px;
    line-height: 1.8;
}

.main-product-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

/* Quantity Selector */
.quantity-selector {
    margin-bottom: 20px;
    text-align: center;
}

.quantity-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.qty-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-speed);
    font-weight: 700;
}

.qty-btn:hover {
    background: var(--primary-red);
    transform: scale(1.1);
}

.quantity-selector input {
    width: 80px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-sm);
    padding: 10px;
}

/* Flavors Grid */
.flavors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .flavors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .flavors-grid {
        grid-template-columns: 1fr;
    }
}

/* Removed flavor-section and flavor-title styles as they are no longer used */

.products-grid {
    display: grid;
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-speed);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.card-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

/* Abstract backgrounds for products */
.dipped-guava-bg {
    background: linear-gradient(135deg, #FF8A80, #D32F2F);
}

.dipped-lemon-bg {
    background: linear-gradient(135deg, #FFF176, #FBC02D);
}

.dipped-savory-bg {
    background: linear-gradient(135deg, #8D6E63, #5D4037);
}

.card-content {
    padding: 25px;
    text-align: left;
}

.card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card-content .description {
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-bottom: 15px;
    min-height: 40px;
}

.card-content .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.card-content .quantity-selector {
    margin-bottom: 15px;
}

.card-content .quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-content .qty-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
}

.card-content .quantity-selector input {
    width: 50px;
    font-size: 1rem;
    padding: 5px;
}

.per-box {
    font-size: 0.9rem;
    color: var(--text-grey);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-header h2 {
    color: var(--primary-blue);
    font-size: 2rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-grey);
    transition: var(--transition-speed);
}

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

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    color: var(--primary-blue);
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.order-summary {
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.order-total {
    text-align: right;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

#paypal-button-container {
    margin-top: 20px;
}

/* Ingredients Section */
.ingredients-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.ingredients-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ingredients-text {
    flex: 1;
}

.ingredients-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.ingredients-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--text-grey);
}

.ingredients-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.ingredients-list li i {
    color: var(--primary-yellow);
    background: var(--primary-blue);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.7rem;
}

.ingredients-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.ingredients-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: var(--transition-speed);
}

.ingredients-img:hover {
    transform: scale(1.02);
    box-shadow: var(--hover-shadow);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f0f0 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.contact-info {
    background: var(--primary-blue);
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.contact-info p {
    margin-bottom: 40px;
    opacity: 0.9;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary-yellow);
    width: 20px;
    text-align: center;
}

.contact-form {
    padding: 60px 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition-speed);
    background: #FAFAFA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 51, 160, 0.1);
}

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-yellow);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 30px;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 900px) {
    .ingredients-layout {
        flex-direction: column;
        text-align: center;
    }

    .ingredients-list li {
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .flavor-options {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-btns {
        flex-direction: column;
    }

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

    .main-product-card {
        padding: 25px;
    }
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    pointer-events: none;
}

.notification {
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    animation: slideInRight 0.4s ease-out;
    border-left: 4px solid;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.notification.removing {
    animation: slideOutRight 0.3s ease-in forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

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

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.notification-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--dark-gray);
}

.notification-message {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    white-space: pre-line;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: var(--dark-gray);
}

/* Notification Types */
.notification.success {
    border-left-color: #4caf50;
}

.notification.success .notification-icon {
    color: #4caf50;
}

.notification.error {
    border-left-color: #f44336;
}

.notification.error .notification-icon {
    color: #f44336;
}

.notification.warning {
    border-left-color: #ff9800;
}

.notification.warning .notification-icon {
    color: #ff9800;
}

.notification.info {
    border-left-color: var(--primary-blue);
}

.notification.info .notification-icon {
    color: var(--primary-blue);
}

/* Mobile Responsive for Notifications */
@media (max-width: 768px) {
    .notification-container {
        right: 10px;
        left: 10px;
        top: 10px;
        max-width: none;
    }

    .notification {
        padding: 16px 20px;
    }

    .notification-title {
        font-size: 15px;
    }

    .notification-message {
        font-size: 13px;
    }
}

/* New Flavor Card Styles */
.card-image-container {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-light);
}

.flavor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-speed);
}

.product-card:hover .flavor-img {
    transform: scale(1.05);
}

.flavor-card .card-content {
    padding: 20px;
}

.flavor-card h3 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.75rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.flavor-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flavor-option:first-of-type {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 10px;
}

.flavor-option-details {
    display: flex;
    flex-direction: column;
}

.flavor-option-details h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
    font-weight: 600;
}

.flavor-price {
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.flavor-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-selector.small {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-selector.small input {
    width: 40px;
    padding: 4px;
    font-size: 1rem;
    height: 32px;
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
}

.qty-btn.small {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

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

.btn-outline.small {
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* PayPal Loading & Error UI */
.paypal-loading-container {
    text-align: center;
    padding: 40px 20px;
}

.paypal-loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 4px solid var(--bg-light);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.paypal-loading-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.paypal-loading-progress {
    font-size: 0.9rem;
    color: var(--text-grey);
    font-style: italic;
}

/* PayPal Error Container */
.paypal-error-container {
    text-align: center;
    padding: 30px 20px;
    background: #fff5f5;
    border-radius: var(--radius-sm);
    border: 1px solid #ffebee;
}

.paypal-error-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.paypal-error-title {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 10px;
    font-weight: 700;
}

.paypal-error-description {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.6;
}

.paypal-error-action {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.6;
}

.paypal-retry-btn {
    margin: 20px auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
}

.paypal-retry-btn i {
    animation: rotateIcon 1s ease-in-out;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.paypal-diagnostics-toggle {
    background: none;
    border: none;
    color: var(--primary-blue);
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    margin-top: 15px;
    padding: 5px;
    transition: var(--transition-speed);
}

.paypal-diagnostics-toggle:hover {
    color: var(--primary-red);
}

.paypal-diagnostics-panel {
    margin-top: 15px;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
}

.paypal-diagnostics-content {
    background: #f5f5f5;
    padding: 15px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-dark);
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
    border: 1px solid #e0e0e0;
}

/* Mobile responsive adjustments for PayPal UI */
@media (max-width: 768px) {
    .paypal-error-container {
        padding: 20px 15px;
    }

    .paypal-error-icon {
        font-size: 2.5rem;
    }

    .paypal-error-title {
        font-size: 1.3rem;
    }

    .paypal-retry-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========== NEW STYLES FOR SITE EXPANSION ========== */

/* Box Sizes Grid */
.box-sizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.box-size-card {
    background: var(--bg-white);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.box-size-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-blue);
}

.box-size-card.featured {
    background: linear-gradient(135deg, var(--primary-yellow)15%, var(--primary-blue)15%);
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.box-size-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.badge-featured {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.box-size-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.box-size-card h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.box-size-card .unit {
    font-size: 0.8rem;
    color: var(--text-grey);
    font-weight: 400;
}

.box-size-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 12px;
}

.box-size-card .description {
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Bulk Discount Banner */
.bulk-discount-banner {
    background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.bulk-discount-banner i {
    font-size: 1.3rem;
}

/* New Products Section */
.new-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.new-item-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.new-item-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--hover-shadow);
}

.new-item-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 4rem;
}

.new-item-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-red);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.new-item-content {
    padding: 24px;
}

.new-item-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.new-item-content p {
    color: var(--text-grey);
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.new-item-content .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 16px;
}

.new-item-content .unit {
    font-size: 0.8rem;
    color: var(--text-grey);
    font-weight: 400;
}

/* Seasonal Section */
.seasonal-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fef9e7 100%);
    padding: 60px 0;
    margin-bottom: 60px;
    border-radius: var(--radius-md);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.seasonal-card {
    background: var(--bg-white);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.seasonal-card:hover:not(.coming-soon) {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-blue);
}

.seasonal-card.coming-soon {
    opacity: 0.7;
}

.seasonal-tag {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.seasonal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.seasonal-card p {
    color: var(--text-grey);
    margin-bottom: 12px;
    line-height: 1.6;
}

.seasonal-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
}

/* Story / Heritage Section */
.story-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f5f5f5 100%);
    padding: 80px 0;
    margin: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--primary-blue);
}

.story-eyebrow {
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.story-text p {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-text button {
    margin-top: 24px;
}

.story-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 32px;
}

.story-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--hover-shadow);
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* Fulfillment Toggle */
.fulfillment-toggle {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.fulfillment-toggle h3 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.fulfillment-options {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fulfillment-option {
    flex: 1;
    min-width: 200px;
}

.fulfillment-option input {
    display: none;
}

.fulfillment-option input:checked + .option-label {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.option-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.option-label:hover {
    border-color: var(--primary-blue);
}

.option-label i {
    font-size: 1.4rem;
}

.pickup-save {
    display: inline-block;
    background: #4caf50;
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: auto;
}

/* Pickup Info Block */
.pickup-info-block {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2e7d32;
}

.pickup-info-block i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pickup-info-block strong {
    display: block;
    margin-bottom: 4px;
}

.pickup-info-block p {
    font-size: 0.9rem;
    margin: 0;
}

/* Newsletter Popup */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.nl-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.nl-card {
    position: relative;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 450px;
    width: 90%;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
    z-index: 10;
}

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

.nl-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-grey);
    transition: color 0.3s ease;
    padding: 8px;
}

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

.nl-header {
    text-align: center;
    margin-bottom: 24px;
}

.nl-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.nl-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.nl-header p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

.nl-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nl-form input {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nl-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 51, 160, 0.1);
}

.nl-disclaimer {
    font-size: 0.8rem;
    color: var(--text-grey);
    text-align: center;
    margin-top: 8px;
}

.nl-success {
    text-align: center;
}

.nl-success-header {
    margin-bottom: 24px;
}

.nl-success-header i {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 12px;
}

.nl-success-header h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.nl-success-header p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

.nl-code-box {
    background: var(--bg-light);
    border: 2px dashed var(--primary-yellow);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 24px;
}

.code-label {
    font-size: 0.8rem;
    color: var(--text-grey);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

.code-display {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.code-copy {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.code-copy:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .box-sizes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .box-size-card.featured {
        transform: scale(1);
    }

    .box-size-card.featured:hover {
        transform: translateY(-8px);
    }

    .new-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .seasonal-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-section {
        padding: 40px 0;
        margin: 40px 0;
    }

    .fulfillment-options {
        flex-direction: column;
    }

    .fulfillment-option {
        min-width: unset;
    }

    .pickup-save {
        display: block;
        margin: 8px 0 0 0;
    }

    .nl-card {
        width: 95%;
        padding: 24px;
    }

    .story-text h2 {
        font-size: 1.8rem;
    }
}