/* BeerFlow Theme - Modern Dark Theme with Amber Accents */

:root {
    /* Colors */
    --zinc-950: #18181b;
    --zinc-900: #27272a;
    --zinc-800: #3f3f46;
    --zinc-700: #52525b;
    --zinc-600: #71717a;
    --zinc-500: #a1a1aa;
    --zinc-400: #d4d4d8;
    --zinc-300: #e4e4e7;
    --zinc-100: #f4f4f5;
    
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-400-10: rgba(251, 191, 36, 0.1);
    --amber-400-20: rgba(251, 191, 36, 0.2);
    
    --white-5: rgba(255, 255, 255, 0.05);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-85: rgba(255, 255, 255, 0.85);
    
    /* Spacing */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 28px;
    --radius-2xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--zinc-950);
    color: white;
    line-height: 1.5;
    min-height: 100vh;
}

/* Age Gate */
.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(24, 24, 27, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-gate-content {
    background: var(--zinc-900);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-2xl);
    padding: 48px;
    text-align: center;
    max-width: 480px;
    width: 100%;
}

.age-gate-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.age-gate-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.age-gate-content p {
    color: var(--zinc-400);
    margin-bottom: 32px;
}

.age-gate-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.age-btn {
    flex: 1;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.age-btn-yes {
    background: var(--amber-400);
    color: var(--zinc-950);
}

.age-btn-yes:hover {
    transform: scale(1.02);
}

.age-btn-no {
    background: var(--zinc-800);
    color: white;
}

.age-gate-warning {
    font-size: 12px;
    color: var(--zinc-500);
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--zinc-950);
    border-bottom: 1px solid var(--white-10);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-brand {
    flex-shrink: 0;
}

.brand-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
}

.brand-subtitle {
    font-size: 13px;
    color: var(--zinc-400);
}

.header-search {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.header-search input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    background: var(--zinc-900);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.header-search input:focus {
    border-color: var(--amber-400);
}

.header-search input::placeholder {
    color: var(--zinc-500);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

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

.order-status-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--white-10);
    background: rgba(0,0,0,0.2);
    white-space: nowrap;
}

.order-status-chip.open {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.1);
    color: #86efac;
}

.order-status-chip.closed {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.order-status-chip.open .status-dot {
    background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
}

.order-status-chip.closed .status-dot {
    background: #ef4444;
}

.header-store-btn {
    padding: 8px 16px;
    background: transparent;
    color: var(--zinc-300);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-store-btn:hover {
    border-color: var(--amber-400);
    color: var(--amber-400);
}

.header-my-orders-link {
    padding: 10px 16px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: none;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    white-space: nowrap;
}

.header-my-orders-link:hover {
    background: rgba(56, 189, 248, 0.25);
    border-color: rgba(56, 189, 248, 0.6);
    color: #7dd3fc;
}

.header-cart-btn {
    padding: 12px 20px;
    background: var(--amber-400);
    color: var(--zinc-950);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

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

/* Hero Section */
.hero-section {
    padding: 24px 24px 32px;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 25%, #ea580c 50%, #dc2626 100%);
    padding: 32px 40px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--white-20);
    border: 1px solid var(--white-20);
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(4px);
    margin-bottom: 16px;
}

.hero-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.hero-title-accent {
    display: block;
    color: var(--zinc-950);
}

.hero-description {
    font-size: 15px;
    color: white;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.hero-start-btn {
    width: 100%;
}

/* Hero Sidebar (Store Selector) */
.hero-sidebar {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-2xl);
    padding: 20px;
}

.hero-store-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px 20px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--amber-400);
    border-radius: var(--radius-md);
}

.hero-store-card--empty {
    border-color: var(--white-10);
    text-align: center;
    gap: 14px;
}

.hero-store-card-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hero-store-icon {
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
}

.hero-store-name {
    font-weight: 700;
    font-size: 15px;
    color: white;
}

.hero-store-address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.hero-store-detail {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-store-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* Mobile Store Bar */
.mobile-store-bar {
    display: none;
    background: var(--zinc-900);
    border-bottom: 1px solid var(--white-10);
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-store-bar--empty {
    background: rgba(251, 191, 36, 0.1);
    border-bottom-color: var(--amber-400-20);
}

.mobile-store-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.mobile-store-label {
    font-size: 11px;
    color: var(--zinc-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-store-name {
    font-weight: 700;
    font-size: 14px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-store-address {
    font-size: 12px;
    color: var(--zinc-400);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-store-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-items: center;
}

.mobile-store-map {
    padding: 8px 14px;
    background: var(--zinc-700);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.mobile-store-change {
    padding: 8px 14px;
    background: var(--amber-400);
    color: var(--zinc-950);
    border: none;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.store-closed-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--zinc-800);
    border: 1px solid var(--zinc-600);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 12px;
}

.store-closed-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.store-closed-banner strong {
    display: block;
    color: var(--zinc-100);
    font-size: 15px;
    margin-bottom: 4px;
}

.store-closed-reason {
    color: var(--zinc-400);
    font-size: 13px;
    line-height: 1.4;
}

/* Visibility utilities */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--white-20);
    border: 1px solid var(--white-20);
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(4px);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-title-accent {
    display: block;
    color: var(--zinc-950);
}

.hero-description {
    font-size: 18px;
    color: var(--white-85);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-glow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 340px;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--zinc-950);
    color: white;
}

.btn-primary:hover {
    background: var(--zinc-900);
}

.btn-secondary {
    background: var(--white-20);
    color: white;
    border: 1px solid var(--white-20);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--white-10);
}

.hero-store-actions .btn-secondary {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
}

.hero-store-actions .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.55);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-sm {
    padding: 7px 14px !important;
    font-size: 12px !important;
}

.btn-submit {
    width: 100%;
    background: var(--amber-400);
    color: var(--zinc-950);
    padding: 16px;
    font-size: 16px;
}

.btn-submit:hover {
    transform: scale(1.01);
}

.btn-full {
    width: 100%;
}

/* Main Content */
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 14px;
    color: var(--zinc-400);
    margin-top: 4px;
}

.sort-select {
    padding: 10px 16px;
    background: var(--zinc-900);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    color: white;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.category-chip {
    padding: 8px 18px;
    background: var(--zinc-800);
    border: 1px solid var(--zinc-600);
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.category-chip:hover {
    background: var(--zinc-700);
    border-color: var(--zinc-500);
}

.category-chip.active {
    background: var(--amber-400);
    border-color: var(--amber-400);
    color: var(--zinc-950);
}

/* Sub Filters */
.sub-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    min-height: 36px;
}

.sub-filter-chip {
    padding: 6px 14px;
    background: var(--zinc-800);
    border: 1px solid var(--zinc-600);
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--zinc-200);
}

.sub-filter-chip:hover {
    background: var(--zinc-700);
    border-color: var(--zinc-500);
    color: white;
}

.sub-filter-chip.active {
    background: var(--amber-400-20);
    border-color: var(--amber-400);
    color: var(--amber-400);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--zinc-900);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color 0.2s;
}

.product-card:hover {
    border-color: var(--amber-400-50);
}

.product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--zinc-800);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-content {
    padding: 20px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.product-category {
    padding: 4px 12px;
    background: var(--white-10);
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.product-volume {
    font-size: 13px;
    color: var(--zinc-400);
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-manufacturer {
    font-size: 11px;
    color: var(--zinc-500);
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.product-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--zinc-300);
    background: var(--white-5);
    border: 1px solid var(--white-10);
    border-radius: 9999px;
    padding: 2px 9px;
}

.product-specs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.product-spec {
    font-size: 12px;
    color: var(--zinc-400);
    display: flex;
    align-items: center;
    gap: 4px;
}

.spec-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--zinc-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.spec-sep {
    color: var(--zinc-700);
    font-size: 11px;
    padding: 0 2px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
}

.product-add-btn {
    padding: 10px 16px;
    background: var(--amber-400);
    color: var(--zinc-950);
    border: none;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.product-add-btn:hover {
    transform: scale(1.03);
}

.btn-unit {
    opacity: 0.7;
    font-weight: 500;
    font-size: 11px;
}

.store-info-modal-box {
    max-width: 700px;
    padding: 28px;
}

.store-modal-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.store-modal-row {
    font-size: 14px;
    color: var(--zinc-300);
    line-height: 1.5;
}

.store-modal-label {
    font-weight: 700;
    color: white;
}

.store-modal-row a {
    color: var(--amber-400);
    text-decoration: none;
}

.store-modal-map {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--white-10);
}

.store-modal-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.privacy-link {
    color: var(--amber-400);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-style: dashed;
}

.privacy-link:hover {
    color: var(--amber-500);
}

.privacy-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
}

.privacy-modal-overlay {
    position: absolute;
    inset: 0;
}

.privacy-modal-box {
    position: relative;
    background: var(--zinc-900);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 640px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 32px;
    color: var(--zinc-300);
    line-height: 1.6;
}

.privacy-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--zinc-500);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.privacy-modal-close:hover {
    color: white;
}

.price-unit {
    font-size: 13px;
    font-weight: 400;
    color: var(--zinc-500);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--zinc-800);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: var(--zinc-700);
}

.qty-value {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
}

/* Products Empty */
.products-empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--zinc-400);
    font-size: 15px;
}

/* No Store Placeholder */
.no-store-placeholder {
    text-align: center;
    padding: 80px 24px;
    color: var(--zinc-400);
}
.no-store-icon {
    font-size: 56px;
    margin-bottom: 16px;
}
.no-store-placeholder h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--zinc-200);
    margin: 0 0 8px;
}
.no-store-placeholder p {
    font-size: 15px;
    margin: 0 0 24px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-block {
    background: var(--zinc-900);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-2xl);
    padding: 28px;
}

.sidebar-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sidebar-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.sidebar-header p {
    font-size: 13px;
    color: var(--zinc-500);
}

/* Store List */
.store-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-card {
    padding: 16px;
    background: var(--zinc-950);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s;
}

.store-card:hover {
    border-color: var(--white-20);
}

.store-card.active {
    border-color: var(--amber-400);
    background: var(--amber-400-10);
}

.store-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.store-address {
    font-size: 12px;
    color: var(--zinc-400);
}

.store-hours {
    font-size: 11px;
    color: var(--zinc-500);
    margin-top: 8px;
    padding: 4px 8px;
    background: var(--zinc-800);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* Cart Block */
.cart-block {
    background: var(--zinc-900);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-badge {
    padding: 6px 12px;
    background: var(--amber-400);
    color: var(--zinc-950);
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--zinc-500);
    font-size: 14px;
    line-height: 1.6;
}

.cart-item {
    padding: 18px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
}

.cart-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-item-name {
    font-weight: 500;
    font-size: 14px;
}

.cart-item-price {
    font-weight: 700;
    font-size: 14px;
}

.cart-item-qty {
    font-size: 12px;
    color: var(--zinc-500);
}

.cart-summary {
    padding: 24px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--zinc-500);
    margin-bottom: 10px;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Order Form */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 500;
}

.form-group .required {
    color: var(--amber-400);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--amber-400);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--zinc-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--zinc-500);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input {
    margin-top: 2px;
}

/* Mobile Bar */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--zinc-900);
    border-top: 1px solid var(--white-10);
    padding: 12px 24px;
    z-index: 200;
}

.mobile-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mobile-summary {
    display: flex;
    flex-direction: column;
}

.mobile-label {
    font-size: 12px;
    color: var(--zinc-400);
}

.mobile-total {
    font-size: 16px;
    font-weight: 700;
}

.mobile-btn {
    padding: 12px 24px;
    background: var(--amber-400);
    color: var(--zinc-950);
    border: none;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--zinc-900);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-2xl);
    padding: 24px;
    max-width: 520px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--zinc-800);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.store-modal-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.store-modal-card {
    background: var(--zinc-950);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s;
}

.store-modal-card.active {
    border-color: var(--amber-400);
}

.store-radio-label {
    display: block;
    cursor: pointer;
}

.store-radio-label input {
    display: none;
}

.store-radio-content {
    padding: 16px;
    display: block;
}

.store-radio-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.store-radio-content p {
    font-size: 13px;
    color: var(--zinc-400);
    margin-bottom: 4px;
}

.store-modal-card.active .store-radio-content {
    background: var(--amber-400-10);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--zinc-900);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
    opacity: 0;
    transition: all 0.3s;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 20px;
}

.toast-text {
    font-size: 14px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1100px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Visibility utilities */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    /* Hero container single column on mobile */
    .hero-container {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .hero-sidebar {
        display: none;
    }

    /* Mobile store bar */
    .mobile-store-bar {
        display: flex;
    }

    .header-container {
        flex-wrap: wrap;
        padding: 6px 12px;
        gap: 8px;
    }

    .brand-title {
        margin-bottom: 0;
        font-size: 20px;
    }

    .brand-subtitle {
        display: none;
    }

    .order-status-chip {
        padding: 6px 8px;
    }

    .header-my-orders-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .header-cart-btn {
        padding: 8px 14px;
        font-size: 14px;
    }

    .order-status-chip span:last-child {
        display: none;
    }

    .header-brand {
        order: 1;
    }

    .header-right {
        order: 2;
        margin-left: auto;
    }

    .header-search {
        order: 3;
        flex: 0 0 100%;
        max-width: none;
        width: 100%;
        margin-top: 12px;
    }
}

@media (max-width: 768px) {
    .product-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        border-radius: var(--radius-lg);
        min-height: 100px;
    }

    .product-image {
        aspect-ratio: auto;
        width: 100px;
        min-width: 100px;
        height: 100px;
        flex-shrink: 0;
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    }

    .product-image img,
    .product-image > div {
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    }

    .product-content {
        flex: 1;
        padding: 12px 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
    }

    .product-meta {
        margin-bottom: 6px;
        gap: 8px;
    }

    .product-category {
        font-size: 10px;
        padding: 2px 8px;
    }

    .product-volume {
        font-size: 11px;
    }

    .product-title {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 4px;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .product-manufacturer {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .product-tags {
        gap: 3px;
        margin-bottom: 5px;
    }

    .product-tag {
        font-size: 10px;
        padding: 1px 7px;
    }

    .product-specs {
        margin-bottom: 8px;
        gap: 3px;
    }

    .product-spec {
        font-size: 11px;
    }

    .spec-label {
        font-size: 9px;
    }

    .product-footer {
        margin-top: auto;
        padding-top: 8px;
    }

    .product-price {
        font-size: 16px;
        font-weight: 700;
    }

    .product-add-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .quantity-control {
        padding: 4px;
        gap: 8px;
    }

    .quantity-control .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .quantity-control .qty-value {
        font-size: 14px;
        min-width: 32px;
    }

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .mobile-bar {
        display: block;
    }

    .age-gate-content {
        padding: 32px 24px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Utility */
.hidden {
    display: none !important;
}
