/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ==================== VARIABLES ==================== */
:root {
    /* Greens */
    --green-gradient-start: #258C05;
    --green-gradient-end: #74B60E;
    --green-bg: #91C151;
    --green-btn: #72B83E;
    --green-dark: #7AB33E;
    --killarney: #2B612E;
    --bottle-green: #093A34;

    /* Accent colors */
    --sunglow: #FFDB31;
    --crimson: #E64840;
    --light-blue: #B6F2FF;
    --light-green: #D9F2B8;

    /* Neutrals */
    --white: #FFFFFF;
    --ivory: #FEFFF0;
    --cream: #FFF7EB;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
    --text-gray: #666666;

    /* Status */
    --success: #4CAF50;
    --error: #f44336;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-header: 0px 4px 21px -1px rgba(0, 0, 0, 0.09);

    /* Radius */
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Layout */
    --header-height: 90px;
    --category-bar-height: 48px;
    --max-width: 1600px;
}

/* ==================== HEADER ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-header);
}

.header-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo svg,
.logo img {
    height: 100px;
    width: auto;
    display: block;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav-list {
    display: flex;
    gap: 27px;
    list-style: none;
    align-items: center;
}

.main-nav-list li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 44px;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}

.main-nav-list li:first-child a {
    font-weight: 700;
}

.main-nav-list li a:hover {
    color: var(--green-btn);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    height: 46px;
    background: var(--crimson);
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 72, 64, 0.4);
}

/* Cart Button */
.cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    height: 46px;
    background: var(--green-btn);
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

.cart-icon {
    position: relative;
    width: 28px;
    height: 26px;
}

.cart-icon svg {
    width: 100%;
    height: 100%;
    color: var(--white);
}

.cart-badge {
    position: absolute;
    width: 18px;
    height: 18px;
    right: -6px;
    top: -4px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: var(--white);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cart-badge.bounce {
    animation: badgeBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.4); }
}

.cart-price {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #000000;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--light-gray);
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--bottle-green);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== CATEGORY BAR ==================== */
.category-bar {
    background: linear-gradient(180deg, #258C05 0%, #74B60E 100%);
    height: var(--category-bar-height);
    display: flex;
    align-items: center;
}

.category-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-nav a,
.category-nav .dropdown-toggle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s;
    background: rgba(255,255,255,0.1);
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.category-nav a:hover,
.category-nav .dropdown-toggle:hover {
    background: rgba(255,255,255,0.25);
}

.dropdown-arrow {
    width: 8px;
    height: 5px;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.9);
    padding: 6px 12px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--bottle-green);
    transition: all 0.2s;
}

.lang-toggle:hover {
    background: var(--white);
}

.lang-toggle svg {
    width: 10px;
    height: 6px;
    transition: transform 0.2s;
}

.lang-dropdown.open .lang-toggle svg {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 100;
}

.lang-dropdown.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--bottle-green);
    cursor: pointer;
    transition: background 0.2s;
}

.lang-menu a:hover {
    background: var(--light-gray);
}

.lang-menu a.active {
    background: var(--light-green);
    font-weight: 600;
}

.lang-flag {
    font-size: 18px;
}

/* Header Dropdowns Container */
.header-dropdowns {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Region Dropdown */
.region-dropdown {
    position: relative;
}

.region-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--white);
    transition: all 0.2s;
}

.region-toggle:hover {
    background: rgba(255,255,255,0.25);
}

.region-toggle .location-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.region-toggle .dropdown-arrow {
    width: 10px;
    height: 6px;
    transition: transform 0.2s;
}

.region-dropdown.open .region-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.region-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 100;
}

.region-dropdown.open .region-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.region-menu-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px 12px;
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: 4px;
}

.region-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--bottle-green);
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
}

.region-option:hover {
    background: var(--light-gray);
}

.region-option.active {
    background: var(--light-green);
    font-weight: 600;
}

.region-option .region-flag {
    font-size: 18px;
}

.region-option .region-name {
    flex: 1;
}

.region-option .check-icon {
    color: var(--green-btn);
}

/* Mobile Region List */
.mobile-region-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mobile-region-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid var(--border-gray);
    background: var(--white);
    border-radius: var(--radius-lg);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--bottle-green);
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-region-btn:hover {
    border-color: var(--green-btn);
}

.mobile-region-btn.active {
    background: var(--light-green);
    border-color: var(--green-btn);
    font-weight: 600;
}

/* ==================== MOBILE NAVIGATION ==================== */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 20px;
    z-index: 999;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.3s;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav-section {
    margin-bottom: 25px;
}

.mobile-nav-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-gray);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-list li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--bottle-green);
    text-decoration: none;
    padding: 12px 16px;
    display: block;
    border-radius: 10px;
    transition: all 0.2s;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li a:active {
    background: var(--light-green);
}

.mobile-lang-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid var(--border-gray);
    background: var(--white);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--bottle-green);
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-lang-btn:hover {
    border-color: var(--green-btn);
}

.mobile-lang-btn.active {
    background: var(--light-green);
    border-color: var(--green-btn);
    font-weight: 600;
}

/* ==================== MINI CART ==================== */
.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1001;
}

.mini-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mini-cart {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    display: flex;
    flex-direction: column;
}

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

.mini-cart-header {
    padding: 25px;
    background: var(--green-btn);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-cart-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
    text-transform: uppercase;
}

.mini-cart-close {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mini-cart-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.mini-cart-close svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

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

.mini-cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.mini-cart-empty svg {
    width: 80px;
    height: 80px;
    fill: var(--border-gray);
    margin-bottom: 20px;
}

.mini-cart-empty p {
    font-size: 18px;
    color: var(--text-gray);
}

.mini-cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gray);
    animation: slideInRight 0.3s ease;
}

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

.mini-cart-item.removing {
    animation: slideOutRight 0.3s ease forwards;
}

@keyframes slideOutRight {
    to { opacity: 0; transform: translateX(30px); }
}

.mini-cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.mini-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mini-cart-item-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--bottle-green);
    line-height: 1.3;
}

.mini-cart-item-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--killarney);
}

.mini-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-gray);
    background: var(--white);
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--bottle-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

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

.mini-qty-value {
    font-weight: 500;
    font-size: 14px;
    min-width: 30px;
    text-align: center;
}

.mini-cart-item-remove {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: all 0.2s;
    align-self: flex-start;
}

.mini-cart-item-remove:hover {
    opacity: 1;
}

.mini-cart-item-remove svg {
    width: 18px;
    height: 18px;
    stroke: var(--crimson);
}

/* Shipping Progress Bar */
.mini-cart-progress,
.shipping-progress {
    padding: 15px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-top: 1px solid var(--border-gray);
}

.progress-text {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: center;
}

.progress-text strong {
    color: var(--killarney);
    font-weight: 700;
}

.progress-text.free-shipping {
    color: var(--success);
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--killarney) 0%, var(--success) 100%);
    border-radius: 4px;
    transition: width 0.4s ease;
    width: 0%;
}

.progress-fill.complete {
    background: var(--success);
}

.progress-text.min-order-warning {
    color: #dc2626;
    font-weight: 600;
}

.progress-text.min-order-warning strong {
    color: #dc2626;
}

.progress-fill.warning {
    background: linear-gradient(90deg, #dc2626 0%, #f87171 100%);
}

.mini-cart-progress.warning-state,
.shipping-progress.warning-state {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #fecaca;
}

.shipping-progress {
    margin-top: 15px;
    border-radius: var(--radius-md);
    border: 1px solid #d1fae5;
}

.mini-cart-footer {
    padding: 20px;
    background: var(--light-gray);
    border-top: 1px solid var(--border-gray);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.mini-cart-subtotal-label {
    font-size: 16px;
    color: var(--text-gray);
}

.mini-cart-subtotal-value {
    font-weight: 700;
    font-size: 20px;
    color: var(--bottle-green);
}

.mini-cart-min-order {
    padding: 10px 12px;
    background: #FFF3E0;
    border: 1px solid #FFB74D;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    color: #E65100;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.mini-cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--sunglow);
    border: none;
    border-radius: var(--radius-lg);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--bottle-green);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
}

.mini-cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 219, 49, 0.4);
}

.mini-cart-continue {
    width: 100%;
    padding: 12px;
    background: none;
    border: 2px solid var(--green-btn);
    border-radius: var(--radius-lg);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--killarney);
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.2s;
}

.mini-cart-continue:hover {
    background: var(--green-btn);
    color: white;
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    padding-top: calc(var(--header-height) + var(--category-bar-height));
}

/* ==================== RIBBON DIVIDER ==================== */
.ribbon-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
    height: 68px;
}

.ribbon-divider.ribbon-first {
    margin-top: 30px;
}

.ribbon-divider img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1200px) {
    .ribbon-divider {
        height: 40px;
    }

    .ribbon-divider.ribbon-first {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .ribbon-divider {
        height: 32px;
    }

    .ribbon-divider.ribbon-first {
        margin-top: 16px;
    }
}

/* ==================== BENTO GRID ==================== */
.bento-section {
    max-width: 1570px;
    margin: 0 auto;
    padding: 30px 40px;
}

.bento-grid {
    position: relative;
    width: 100%;
    height: 1169px;
}

.bento-card {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === Column 1 === */
.bento-card.card-promo {
    left: 0;
    top: 0;
    width: calc(25% - 15px);
    height: 283px;
    background: #72B83E;
}
.bento-card.card-seafood {
    left: 0;
    top: 303px;
    width: calc(25% - 15px);
    height: 565px;
}
.bento-card.card-sweets {
    left: 0;
    top: 887px;
    width: calc(25% - 15px);
    height: 282px;
    background: #72B83E;
}

/* === Column 2 === */
.bento-card.card-beverages {
    left: calc(25% + 5px);
    top: 0;
    width: calc(25% - 15px);
    height: 378px;
}
.bento-card.card-deli {
    left: calc(25% + 5px);
    top: 789px;
    width: calc(25% - 15px);
    height: 380px;
    background: #FFE34C;
}

/* === Column 3 === */
.bento-card.card-grocery {
    left: calc(50% + 5px);
    top: 0;
    width: calc(25% - 15px);
    height: 378px;
    background: #FFDB31;
}
.bento-card.card-caviar {
    left: calc(50% + 5px);
    top: 789px;
    width: calc(25% - 15px);
    height: 380px;
}

/* === Column 4 === */
.bento-card.card-dairy {
    left: calc(75% + 5px);
    top: 0;
    width: calc(25% - 15px);
    height: 283px;
    background: #B6F2FF;
}
.bento-card.card-kosher {
    left: calc(75% + 5px);
    top: 303px;
    width: calc(25% - 15px);
    height: 565px;
}
.bento-card.card-order {
    left: calc(75% + 5px);
    top: 887px;
    width: calc(25% - 15px);
    height: 282px;
    background: #D9F2B8;
}

/* === Banner (spans columns 2-3) === */
.bento-card.card-banner {
    left: calc(25% + 5px);
    top: 396px;
    width: calc(50% - 10px);
    height: 376px;
    background: #72B83E;
}
.bento-card.card-banner img {
    object-fit: cover;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 50px 40px;
}

/* Subcategory section - smaller padding */
.products-section.subcategory-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section-parent-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon.fire {
    background: var(--crimson);
}

.section-icon.thumbs-up {
    background: var(--green-bg);
}

.section-icon.category-icon {
    background: var(--bottle-green);
}

.section-icon.subcategory-icon {
    background: var(--green-dark);
    width: 44px;
    height: 44px;
}

.section-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.section-icon.subcategory-icon svg {
    width: 24px;
    height: 24px;
}

.section-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 38px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--bottle-green);
}

.section-title.subcategory-title {
    font-size: 28px;
}

.section-title span:only-child {
    color: var(--bottle-green);
}

.section-title span:last-child:not(:only-child) {
    color: var(--crimson);
}

.section-title.green span:last-child:not(:only-child) {
    color: var(--green-bg);
}

/* Products Grid - 5 columns */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

/* ==================== PRODUCT CARD ==================== */
.product-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-xl);
    padding: 14px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    min-width: 0;
    max-width: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    min-height: 180px; /* Fallback for older browsers */
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--crimson);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 11px;
    z-index: 1;
}

.product-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    color: var(--bottle-green);
    text-transform: uppercase;
    margin-bottom: 10px;
    min-height: 34px;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-name a {
    color: inherit;
    text-decoration: none;
}

.product-name a:hover {
    color: var(--green-btn);
}

.product-price-wrapper {
    margin-bottom: 12px;
}

.product-price-old {
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.product-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--bottle-green);
}

.product-price .currency {
    font-size: 12px;
    font-weight: 400;
}

.product-price .unit {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-gray);
}

/* Product Actions (qty + add to cart) */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.qty-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    overflow: hidden;
    height: 40px;
}

.qty-btn {
    width: 44px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--green-bg);
    color: white;
}

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

.qty-value {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
}

/* Add to Cart Button */
.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 40px;
    background: transparent;
    border: 2px solid var(--green-bg);
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--killarney);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.add-to-cart-btn:hover {
    background: var(--green-bg);
    color: white;
}

.add-to-cart-btn:disabled {
    background: var(--border-gray);
    border-color: var(--border-gray);
    color: var(--text-gray);
    cursor: not-allowed;
}

.add-to-cart-btn.added {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.add-to-cart-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.add-to-cart-btn .btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}

.add-to-cart-btn.added .btn-text {
    transform: translateY(-30px);
}

.add-to-cart-btn .btn-success {
    position: absolute;
    transform: translateY(30px);
    transition: transform 0.3s;
}

.add-to-cart-btn.added .btn-success {
    transform: translateY(0);
}

/* Product Quantity Selector */
.product-qty-selector {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-qty-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-bg);
    color: white;
    transition: all 0.2s;
}

.product-qty-btn:hover {
    background: var(--killarney);
}

.product-qty-input {
    flex: 1;
    height: 34px;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius);
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--bottle-green);
    background: var(--white);
}

/* ==================== SEE ALL CARD ==================== */
.see-all-card {
    background: linear-gradient(135deg, var(--green-btn) 0%, var(--killarney) 100%);
    border: none;
    border-radius: var(--radius-xl);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    min-height: 100%;
}

.see-all-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(114, 184, 62, 0.3);
}

.see-all-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.see-all-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.see-all-text {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
    text-transform: uppercase;
    text-align: center;
}

.see-all-count {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    background: var(--green-bg);
    padding: 70px 40px;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 52px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 50px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.how-step {
    text-align: center;
}

.how-step-number {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 64px;
    color: var(--killarney);
    line-height: 1;
    margin-bottom: 12px;
}

.how-step-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.1;
}

.how-step-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--killarney);
    line-height: 1.5;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--cream);
    border-radius: 60px 60px 0 0;
}

.footer-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 260px 1fr 1fr;
    gap: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo svg {
    width: 160px;
    height: auto;
}

.footer-tagline {
    font-size: 14px;
    color: var(--killarney);
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 42px;
    height: 42px;
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--killarney);
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--green-bg);
    border-color: var(--green-bg);
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-contact {
    padding-top: 8px;
}

.footer-contact-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--bottle-green);
    margin-bottom: 18px;
}

.footer-contact-item {
    margin-bottom: 10px;
}

.footer-contact-item a {
    font-size: 15px;
    color: var(--killarney);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--green-bg);
}

/* Footer Form */
.footer-form {
    padding-top: 8px;
}

.footer-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-input {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--bottle-green);
    border-radius: 90px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: var(--killarney);
    background: transparent;
    transition: all 0.2s;
}

.footer-input:focus {
    outline: none;
    border-color: var(--green-bg);
}

.footer-input::placeholder {
    color: var(--killarney);
    opacity: 0.5;
}

.footer-form-bottom {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-privacy {
    flex: 1;
    font-size: 13px;
    font-weight: 300;
    color: var(--killarney);
    line-height: 1.4;
}

.footer-submit {
    padding: 12px 32px;
    background: var(--bottle-green);
    border: none;
    border-radius: 90px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: var(--cream);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.footer-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(9, 58, 52, 0.3);
}

.footer-bottom {
    border-top: 1px solid var(--border-gray);
    padding: 20px 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-gray);
}

.footer-copyright a {
    color: var(--killarney);
    text-decoration: none;
}

.footer-copyright .heart {
    color: #e74c3c;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 100;
    text-decoration: none;
}

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

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* ==================== FLYING ITEM ANIMATION ==================== */
.flying-item {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.flying-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== TOAST ==================== */
.toast-container {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: toastIn 0.3s ease;
    max-width: 350px;
}

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

.toast.hiding {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastOut {
    to { opacity: 0; transform: translateY(-20px); }
}

.toast-image {
    width: 45px;
    height: 45px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.toast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.toast-message {
    font-weight: 500;
    font-size: 14px;
    color: var(--bottle-green);
    margin-bottom: 2px;
}

.toast-product {
    font-size: 12px;
    color: var(--text-gray);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.toast-icon {
    width: 28px;
    height: 28px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

/* Toast Message (for footer form success/error) */
.toast.toast-message {
    background: var(--white);
    border-left: 4px solid var(--success);
}

.toast.toast-message .toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-message-icon {
    width: 36px;
    height: 36px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.toast-message-text {
    font-weight: 500;
    font-size: 14px;
    color: var(--bottle-green);
    line-height: 1.4;
}

.toast.toast-error {
    border-left-color: var(--crimson);
}

.toast.toast-error .toast-message-icon {
    background: var(--crimson);
}

.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0 0 0 10px;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.toast-close:hover {
    opacity: 1;
}

/* ==================== CHECKOUT PAGE ==================== */
.checkout-page {
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bottle-green);
    margin-bottom: 32px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
}

.checkout-form-section {
    margin-bottom: 32px;
}

.checkout-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--bottle-green);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-gray);
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.checkout-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.checkout-input:focus {
    outline: none;
    border-color: var(--green-btn);
}

.checkout-textarea {
    min-height: 100px;
    resize: vertical;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--success);
    color: white;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
}

.payment-badge svg {
    width: 20px;
    height: 20px;
}

/* Order Summary */
.order-summary {
    background: var(--light-gray);
    border-radius: var(--radius-xl);
    padding: 24px;
    position: sticky;
    top: calc(var(--header-height) + var(--category-bar-height) + 24px);
}

.order-summary-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--bottle-green);
    margin-bottom: 20px;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
}

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

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    background: white;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.order-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--bottle-green);
    margin-bottom: 4px;
}

.order-item-qty {
    font-size: 13px;
    color: var(--text-gray);
}

.order-item-price {
    font-weight: 600;
    color: var(--bottle-green);
}

.order-totals {
    border-top: 1px solid var(--border-gray);
    padding-top: 16px;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.order-total-row.subtotal,
.order-total-row.shipping {
    color: var(--text-gray);
}

.order-total-row.grand-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--bottle-green);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid var(--border-gray);
}

.free-shipping-hint {
    margin-top: 12px;
    padding: 12px;
    background: #FEF3C7;
    border-radius: var(--radius);
    font-size: 13px;
    color: #92400E;
    text-align: center;
}

.checkout-submit {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    background: var(--sunglow);
    color: var(--bottle-green);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.checkout-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 219, 49, 0.4);
}

/* ==================== SUCCESS PAGE ==================== */
.success-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.success-title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--bottle-green);
    margin-bottom: 12px;
}

.success-message {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.success-order-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--bottle-green);
    margin-bottom: 32px;
}

.success-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.success-btn {
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.success-btn.primary {
    background: var(--green-btn);
    color: white;
}

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

.success-btn.secondary {
    background: #25D366;
    color: white;
}

.success-btn.secondary:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.success-btn svg {
    width: 20px;
    height: 20px;
}

/* ==================== LOADING ==================== */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.loading-spinner::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-gray);
    border-top-color: var(--green-btn);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ==================== UTILITIES ==================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================== RESPONSIVE ==================== */

/* Small Desktop / Large Laptop (1200-1500px) */
@media (max-width: 1500px) and (min-width: 1201px) {
    .bento-section {
        max-width: 100%;
        padding: 30px 30px;
    }

    .bento-grid {
        height: auto;
        min-height: 900px;
    }

    /* Scale down the absolute positions proportionally */
    .bento-card {
        border-radius: 12px;
    }

    .bento-card.card-promo {
        width: calc(25% - 12px) !important;
        height: 220px !important;
    }
    .bento-card.card-seafood {
        top: 238px !important;
        width: calc(25% - 12px) !important;
        height: 440px !important;
    }
    .bento-card.card-sweets {
        top: 696px !important;
        width: calc(25% - 12px) !important;
        height: 220px !important;
    }

    .bento-card.card-beverages {
        width: calc(25% - 12px) !important;
        height: 300px !important;
    }
    .bento-card.card-deli {
        top: 616px !important;
        width: calc(25% - 12px) !important;
        height: 300px !important;
    }

    .bento-card.card-grocery {
        width: calc(25% - 12px) !important;
        height: 300px !important;
    }
    .bento-card.card-caviar {
        top: 616px !important;
        width: calc(25% - 12px) !important;
        height: 300px !important;
    }

    .bento-card.card-dairy {
        width: calc(25% - 12px) !important;
        height: 220px !important;
    }
    .bento-card.card-kosher {
        top: 238px !important;
        width: calc(25% - 12px) !important;
        height: 440px !important;
    }
    .bento-card.card-order {
        top: 696px !important;
        width: calc(25% - 12px) !important;
        height: 220px !important;
    }

    .bento-card.card-banner {
        top: 318px !important;
        height: 280px !important;
    }

    .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
    }
}

/* Mobile */
@media (max-width: 1200px) {
    :root {
        --header-height: 70px;
    }

    .header-main {
        padding: 0 16px;
    }

    .logo svg {
        height: 45px;
    }

    .cart-btn {
        padding: 0 10px;
        height: 40px;
    }

    .cart-icon {
        width: 24px;
        height: 22px;
    }

    .cart-price {
        font-size: 13px;
    }

    .mobile-nav {
        padding: 16px;
    }

    .bento-section {
        padding: 16px;
    }

    .bento-grid {
        display: grid;
        position: static;
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 10px;
    }

    .bento-card {
        position: static;
        width: auto !important;
        height: auto !important;
        left: auto !important;
        top: auto !important;
        min-height: 140px;
    }

    /* Card order on mobile */
    .bento-card.card-banner   { order: 1; }
    .bento-card.card-promo    { order: 2; }
    .bento-card.card-seafood  { order: 3; }
    .bento-card.card-sweets   { order: 4; }
    .bento-card.card-deli     { order: 5; }
    .bento-card.card-kosher   { order: 6; }
    .bento-card.card-caviar   { order: 7; }
    .bento-card.card-beverages { order: 8; }
    .bento-card.card-grocery  { order: 9; }
    .bento-card.card-dairy    { order: 10; }
    .bento-card.card-order    { order: 11; }

    .bento-card.card-banner {
        grid-column: span 2;
        min-height: 180px;
    }

    .bento-card.card-seafood,
    .bento-card.card-kosher {
        grid-row: span 2;
        min-height: 290px;
    }

    .products-section {
        padding: 30px 16px;
    }

    .products-section.subcategory-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .section-header {
        margin-bottom: 20px;
        gap: 12px;
    }

    .section-icon {
        width: 42px;
        height: 42px;
    }

    .section-icon.subcategory-icon {
        width: 36px;
        height: 36px;
    }

    .section-icon svg {
        width: 22px;
        height: 22px;
    }

    .section-icon.subcategory-icon svg {
        width: 18px;
        height: 18px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-title.subcategory-title {
        font-size: 20px;
    }

    .section-parent-name {
        font-size: 11px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-card {
        padding: 8px;
    }

    .product-image {
        margin-bottom: 8px;
    }

    .product-image img {
        padding: 4px;
    }

    .product-card:hover .product-image img {
        transform: scale(1.02);
    }

    .product-name {
        font-size: 10px;
        min-height: 28px;
        margin-bottom: 6px;
    }

    .product-price-wrapper {
        margin-bottom: 8px;
    }

    .product-price {
        font-size: 14px;
    }

    .product-price .unit {
        font-size: 9px;
    }

    .product-price-old {
        font-size: 10px;
    }

    .add-to-cart-btn {
        height: 32px;
        font-size: 11px;
        margin-bottom: 6px;
    }

    .add-to-cart-btn svg {
        width: 14px;
        height: 14px;
    }

    .qty-selector {
        height: 32px;
    }

    .qty-btn {
        width: 32px;
        font-size: 16px;
    }

    .qty-value {
        min-width: 28px;
        font-size: 13px;
    }

    .product-qty-btn {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .product-qty-input {
        height: 26px;
        font-size: 10px;
    }

    .see-all-card {
        padding: 16px;
    }

    .see-all-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .see-all-icon svg {
        width: 22px;
        height: 22px;
    }

    .see-all-text {
        font-size: 16px;
    }

    .how-it-works {
        padding: 40px 16px;
    }

    .how-it-works-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .how-step-number {
        font-size: 48px;
    }

    .how-step-title {
        font-size: 24px;
    }

    .how-step-desc {
        font-size: 14px;
    }

    .footer-main {
        padding: 30px 16px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-form-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .footer-submit {
        width: 100%;
    }

    .toast {
        max-width: calc(100vw - 32px);
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }

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

/* Small mobile */
@media (max-width: 380px) {
    .products-section {
        padding: 24px 10px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .product-card {
        padding: 6px;
    }

    .product-image {
        margin-bottom: 6px;
    }

    .product-name {
        font-size: 9px;
        min-height: 22px;
        margin-bottom: 4px;
    }

    .product-price {
        font-size: 12px;
    }

    .product-price .unit {
        font-size: 8px;
    }

    .product-actions {
        gap: 4px;
    }

    .qty-selector {
        height: 28px;
    }

    .qty-btn {
        width: 28px;
        font-size: 14px;
    }

    .qty-value {
        min-width: 24px;
        font-size: 12px;
    }

    .add-to-cart-btn {
        height: 28px;
        font-size: 9px;
        padding: 0 6px;
    }

    .add-to-cart-btn svg {
        width: 12px;
        height: 12px;
    }

    .section-title {
        font-size: 22px;
    }
}

/* ==================== NEW HEADER STYLES ==================== */

/* Header Top Bar */
.header-top {
    background: linear-gradient(180deg, #f8f9fa 0%, #eef0f2 100%);
    border-bottom: 1px solid #dee2e6;
}

.header-top-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-left,
.header-top-right {
    position: relative;
}

.header-location,
.header-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.header-location:hover,
.header-lang:hover {
    background: #fff;
    border-color: #dee2e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.location-icon {
    color: #E64840;
}

.lang-flag {
    font-size: 16px;
}

.lang-code {
    font-weight: 500;
}

.chevron-icon {
    transition: transform 0.2s;
}

.header-top-left:hover .chevron-icon,
.header-top-right:hover .chevron-icon {
    transform: rotate(180deg);
}

/* Header Dropdowns */
.header-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 1000;
}

.header-dropdown.region-dropdown {
    left: 0;
}

.header-dropdown.lang-dropdown {
    right: 0;
}

.header-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #868e96;
    padding: 8px 12px 6px;
    letter-spacing: 0.5px;
}

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: none;
    border-radius: 8px;
    font-size: 14px;
    color: #212529;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
}

.dropdown-option:hover {
    background: #f1f3f5;
}

.dropdown-option.active {
    background: #e8f5e9;
    font-weight: 500;
}

.option-flag {
    font-size: 18px;
}

.option-text {
    flex: 1;
    text-align: left;
}

.check-icon {
    color: #4CAF50;
}

/* Main Header */
.header-main {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.header-main-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 90px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
    order: 1;
}

.logo svg,
.logo img {
    height: 100px;
    width: auto;
    display: block;
}

/* Search Bar */
.header-search {
    flex: 1;
    max-width: 650px;
    position: relative;
    order: 2;
}

/* Header Actions */
.header-actions {
    order: 3;
}

.search-form {
    display: flex;
    align-items: center;
    background: #f1f3f5;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e9ecef;
    transition: all 0.2s;
}

.search-form:focus-within {
    background: #fff;
    border-color: var(--green-btn);
    box-shadow: 0 0 0 4px rgba(114, 184, 62, 0.15);
}

.search-input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #212529;
    outline: none;
}

.search-input::placeholder {
    color: #6c757d;
    font-size: 14px;
}

.search-btn {
    padding: 12px 20px;
    background: var(--green-btn);
    border: none;
    cursor: pointer;
    color: #fff;
    transition: all 0.2s;
    margin: 4px;
    border-radius: 8px;
}

.search-btn:hover {
    background: #5a9432;
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #212529;
    transition: background 0.15s;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.search-result-price {
    font-size: 13px;
    color: var(--green-btn);
    font-weight: 600;
}

.search-no-results {
    padding: 24px;
    text-align: center;
    color: #868e96;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    color: #495057;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.header-contact-btn:hover {
    border-color: var(--green-btn);
    color: var(--green-btn);
}

.header-cart-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--green-btn);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.header-cart-btn:hover {
    background: #5a9432;
    transform: translateY(-1px);
}

.cart-icon-wrap {
    position: relative;
}

.cart-icon-wrap svg {
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    background: #212529;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.cart-total {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: #f1f3f5;
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #212529;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Categories Bar */
.header-categories {
    background: linear-gradient(135deg, var(--green-gradient-start) 0%, var(--green-gradient-end) 100%);
}

.header-categories-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

.all-categories-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.all-categories-btn:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-1px);
}

.all-categories-btn .chevron-icon {
    transition: transform 0.2s;
}

.all-categories-btn.active .chevron-icon {
    transform: rotate(180deg);
}

.categories-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
    flex: 1;
}

.category-link {
    padding: 8px 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.category-link:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

/* Categories Mega Menu */
.categories-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border-radius: 0 0 16px 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s;
    z-index: 999;
}

.categories-mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 40px 30px;
}

.mega-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.mega-menu-header h3 {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #212529;
    text-transform: uppercase;
}

.mega-menu-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f3f5;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    transition: all 0.2s;
}

.mega-menu-close:hover {
    background: #e9ecef;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #212529;
    transition: all 0.2s;
}

.mega-menu-item:hover {
    background: #e8f5e9;
    transform: translateY(-2px);
}

.mega-menu-item.all-products {
    background: var(--green-btn);
    color: #fff;
}

.mega-menu-item.all-products:hover {
    background: #5a9432;
}

.mega-menu-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-menu-item.all-products .mega-menu-icon {
    background: rgba(255,255,255,0.2);
}

.mega-menu-item.all-products .mega-menu-icon svg {
    color: #fff;
}

.mega-menu-icon svg {
    color: var(--green-btn);
}

.mega-menu-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f3f5;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
}

.mobile-search {
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-search form {
    display: flex;
    background: #f1f3f5;
    border-radius: 10px;
    overflow: hidden;
}

.mobile-search input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    font-size: 14px;
}

.mobile-search button {
    padding: 12px 16px;
    background: none;
    border: none;
    color: #495057;
}

.mobile-nav-section {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-nav-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #868e96;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li a {
    display: block;
    padding: 12px 0;
    color: #212529;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid #f1f3f5;
}

.mobile-nav-list li:last-child a {
    border-bottom: none;
}

.mobile-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-option-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f1f3f5;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    color: #212529;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-option-btn:hover {
    border-color: var(--green-btn);
}

.mobile-option-btn.active {
    background: #e8f5e9;
    border-color: var(--green-btn);
    font-weight: 500;
}

/* Update main content padding */
.main-content {
    padding-top: calc(42px + 90px + 52px); /* top bar + main + categories = 184px */
}

/* Site Header Fixed */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .header-main-container {
        padding: 0 24px;
    }

    .header-top-container,
    .header-categories-container,
    .mega-menu-inner {
        padding: 0 24px;
    }

    .header-contact-btn .btn-text {
        display: none;
    }

    .header-contact-btn {
        padding: 10px 12px;
    }

    .categories-nav {
        display: none;
    }
}

@media (max-width: 1200px) {
    /* Hide top bar and categories on mobile */
    .header-top {
        display: none;
    }

    .header-categories {
        display: none;
    }

    /* Mobile header - safe area for iPhone notch */
    .site-header {
        padding-top: env(safe-area-inset-top, 0);
    }

    .header-main {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding-top: 5vh;
    }

    .header-main-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 12px 12px 10px 12px;
        height: auto;
        gap: 8px;
    }

    /* Logo - left side */
    .logo {
        flex-shrink: 0;
        order: 1;
    }

    .logo img {
        height: 70px;
        width: auto;
    }

    /* Actions - right side, no wrap */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 4px;
        flex-shrink: 0;
        order: 2;
        flex-wrap: nowrap;
    }

    /* Search - full width second row */
    .header-search {
        flex: 0 0 100%;
        width: 100%;
        order: 3;
    }

    .search-form {
        border-radius: 10px;
        border: 1px solid #e0e0e0;
        background: #f8f9fa;
    }

    .search-input {
        padding: 10px 14px;
        font-size: 15px;
        background: transparent;
    }

    .search-input::placeholder {
        font-size: 13px;
    }

    .search-btn {
        padding: 8px 12px;
        margin: 3px;
        border-radius: 8px;
    }

    /* Hide contact button */
    .header-contact-btn {
        display: none;
    }

    /* Cart button - compact */
    .header-cart-btn {
        padding: 6px 8px;
        gap: 4px;
    }

    .cart-icon-wrap svg {
        width: 20px;
        height: 20px;
    }

    .cart-total {
        font-size: 12px;
    }

    /* Burger menu */
    .mobile-menu-btn {
        display: flex;
        width: 36px;
        height: 36px;
        background: #f1f3f5;
        border-radius: 8px;
    }

    /* Cart button */
    .header-cart-btn {
        padding: 8px 10px;
        border-radius: 8px;
        height: 40px;
    }

    .cart-total {
        display: none;
    }

    .cart-icon-wrap svg {
        width: 20px;
        height: 20px;
    }

    .cart-badge {
        min-width: 16px;
        height: 16px;
        font-size: 10px;
        top: -4px;
        right: -6px;
    }

    /* Content padding - ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ padding-top: 5vh ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° */
    .main-content {
        padding-top: calc(env(safe-area-inset-top, 0px) + 5vh + 120px);
    }

    /* Mobile nav */
    .mobile-nav {
        width: 100%;
        max-width: 320px;
        padding-top: env(safe-area-inset-top, 0);
    }

    .mobile-search {
        display: none;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .header-main-container {
        padding: 10px 8px;
        gap: 6px;
    }

    .logo img {
        height: 40px;
    }

    .search-input {
        padding: 9px 12px;
        font-size: 14px;
    }

    .mobile-menu-btn {
        width: 32px;
        height: 32px;
    }

    .header-cart-btn {
        height: 32px;
        padding: 4px 6px;
    }

    /* Hide cart total on very small screens */
    .cart-total {
        display: none;
    }

    /* Smaller mobile lang button */
    .mobile-lang-btn {
        padding: 4px 6px;
    }

    .mobile-lang-code {
        display: none;
    }

    .main-content {
        padding-top: calc(env(safe-area-inset-top, 0px) + 5vh + 110px);
    }
}

/* ==================== PRODUCT MODAL ==================== */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: calc(100% - 32px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.product-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s;
}

.product-modal-close:hover {
    background: rgba(0,0,0,0.2);
}

.product-modal-content {
    display: flex;
    flex-direction: column;
}

.product-modal-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.product-modal-discount {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--crimson);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.product-modal-info {
    padding: 24px;
}

.product-modal-name {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--bottle-green);
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-modal-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-modal-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0;
}

.product-modal-price-old {
    font-size: 16px;
    color: var(--text-gray);
    text-decoration: line-through;
}

.product-modal-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--killarney);
    line-height: 1;
}

.product-modal-unit {
    font-size: 14px;
    color: var(--text-gray);
}

/* Actions bar - sticky bottom */
.product-modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    border-top: 1px solid var(--border-gray);
    position: sticky;
    bottom: 0;
}

.product-modal-qty {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2px;
}

.modal-qty-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: white;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--bottle-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.modal-qty-btn:hover {
    background: var(--green-btn);
    color: white;
}

.modal-qty-btn:active {
    transform: scale(0.95);
    background: var(--killarney);
    color: white;
}

.modal-qty-value {
    min-width: 44px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--bottle-green);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.product-modal-add {
    flex: 1;
    padding: 14px 20px;
    background: var(--green-btn);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.15s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.modal-add-price {
    font-weight: 700;
    font-size: 18px;
}

.modal-add-text {
    font-weight: 600;
}

.product-modal-add:hover {
    background: var(--killarney);
    transform: translateY(-2px);
}

.product-modal-add:disabled {
    background: var(--border-gray);
    color: var(--text-gray);
    cursor: not-allowed;
    transform: none;
}

.product-modal-add.added {
    background: var(--success);
}

/* Mobile Modal */
@media (max-width: 1200px) {
    .product-modal {
        max-width: none;
        width: 100%;
        max-height: 90vh;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        transform: translateY(100%);
        border-radius: 20px 20px 0 0;
    }

    .product-modal.active {
        transform: translateY(0);
    }

    .product-modal-image {
        height: 240px;
        padding: 16px;
    }

    .product-modal-info {
        padding: 16px 20px;
    }

    .product-modal-name {
        font-size: 20px;
    }

    .product-modal-price {
        font-size: 28px;
    }

    .product-modal-actions {
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }

    .modal-qty-btn {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .modal-qty-value {
        min-width: 40px;
        font-size: 18px;
    }

    .product-modal-add {
        padding: 12px 16px;
    }

    .modal-add-price {
        font-size: 16px;
    }

    .modal-add-text {
        font-size: 14px;
    }
}

/* ===========================================
   Product Badges & No-Image Styles
   =========================================== */

/* Badges container */
.product-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

/* Base badge style */
.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.product-badge svg {
    flex-shrink: 0;
}

/* Sale badge - red/orange */
.badge-sale {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A24 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(238, 90, 36, 0.3);
}

/* Popular badge - green */
.badge-popular {
    background: linear-gradient(135deg, #72B83E 0%, #5A9A2E 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(114, 184, 62, 0.3);
}

/* Price styling when on sale */
.product-price.price-sale {
    color: #EE5A24;
    font-weight: 700;
}

.product-price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

/* No image placeholder */
.product-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 150px;
    background: #f5f5f5;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 480px) {
    .product-badge {
        padding: 3px 6px;
        font-size: 10px;
    }

    .product-badge svg {
        width: 10px;
        height: 10px;
    }
}

/* Min Order Modal */
.min-order-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.min-order-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.min-order-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 380px;
    width: calc(100% - 40px);
    text-align: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.min-order-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.min-order-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #999;
    transition: color 0.2s;
}

.min-order-modal-close:hover {
    color: #333;
}

.min-order-modal-icon {
    margin-bottom: 16px;
}

.min-order-modal-message {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 24px;
}

.min-order-modal-btn {
    background: var(--sunglow, #FFDB31);
    border: none;
    border-radius: 10px;
    padding: 14px 48px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--bottle-green, #093A34);
    cursor: pointer;
    transition: all 0.2s;
}

.min-order-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 219, 49, 0.4);
}
