/* Component Styles - Minimalist Design */

/* Screen Management */
.screen {
    display: none;
    width: 100%;
    min-height: 100vh;
}

.screen.active {
    display: block;
}

/* Product Row (one per line) */
.product-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: var(--space-lg);
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: var(--space-md);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: var(--space-md);
}

.product-row:hover {
    border-color: #1E3A8A;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.1);
}

.product-thumb {
    position: relative;
    width: 96px;
    height: 96px;
    background: var(--bg);
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.product-thumb::before {
    content: '🌹';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--muted);
    z-index: 1;
}

.product-thumb.has-image::before { display: none; }

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-row-info { display: flex; flex-direction: column; gap: 4px; }
.product-row-title { font-weight: 600; color: #1E3A8A; }
.product-row-desc { font-size: var(--font-size-sm); color: var(--muted); }
.product-row-price { font-weight: 800; color: #1E3A8A; font-size: 16px; }

/* Badges retained (may be unused now) */
.product-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: white;
    z-index: 2;
}

.product-badge.sale {
    background: var(--danger);
}

.product-badge.new {
    background: var(--success);
}

.product-info {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    margin: 0 0 var(--space-sm) 0;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.product-description {
    margin: 0 0 var(--space-md) 0;
    font-size: var(--font-size-sm);
    color: var(--muted);
    line-height: 1.4;
    flex: 1;
}

.product-price {
    margin: 0 0 var(--space-lg) 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.original-price {
    font-size: var(--font-size-sm);
    color: var(--muted);
    text-decoration: line-through;
}

.current-price {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text);
}

.product-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-lg);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    min-height: 44px;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-light);
}

.btn-primary {
    background: #ffffff;
    color: #1E3A8A;
    border: 1px solid #1E3A8A;
    border-radius: 4px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #1E3A8A !important;
    color: #ffffff !important;
    border-color: #1E3A8A !important;
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-secondary {
    background: var(--card);
    color: var(--text);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--bg);
    border-color: var(--accent);
}

.btn-secondary:active {
    transform: translateY(1px);
}

.btn-large {
    padding: var(--space-lg) var(--space-xl);
    font-size: var(--font-size-base);
    min-height: 52px;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    padding-top: env(safe-area-inset-top, 0px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 4px;
    max-width: 100%;
    margin: 0;
}

/* Ensure cart icon/badge doesn't clip on mobile */
.header-actions { padding-right: calc(12px + env(safe-area-inset-right, 0px)); }

/* ==== ФИКСИРОВАННАЯ КОРЗИНА В ПРАВОМ НИЖНЕМ УГЛУ ==== */
.btn-cart {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1000 !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 2px solid #1E3A8A !important;
    color: #1E3A8A !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-cart:hover {
    background: #1E3A8A !important;
    color: #ffffff !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3) !important;
}

.cart-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background: #ff4444 !important;
    color: white !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    font-size: 12px !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 20px !important;
}

@media (min-width: 768px) {
    .header-content {
        padding: var(--space-md) 8px;
    }
}

.header-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.brand-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #1E3A8A; /* Синий цвет */
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 600;
    animation: badgePulse 0.3s ease-in-out;
}

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

.btn-back,
.btn-icon,
.btn-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    border: 1px solid #1E3A8A;
    background: #ffffff;
    color: #1E3A8A;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-back:hover,
.btn-icon:hover,
.btn-cart:hover {
    background: #1E3A8A !important;
    color: #ffffff !important;
    border-color: #1E3A8A !important;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
}

.btn-back:focus,
.btn-icon:focus,
.btn-cart:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.3);
}

/* Search Bar */
.search-bar {
    position: relative;
    margin: var(--space-md) 0;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 4px;
}

@media (min-width: 768px) {
    .search-input-wrapper {
        margin: 0 8px;
    }
}

.search-icon {
    position: absolute;
    left: var(--space-md);
    color: var(--muted);
    font-size: var(--font-size-lg);
    z-index: 1;
}

.search-input {
    width: 100%;
    padding: var(--space-md) var(--space-md) var(--space-md) calc(var(--space-md) * 2 + 20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card);
    color: var(--text);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-light);
}

.search-clear {
    position: absolute;
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-size: var(--font-size-lg);
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.search-clear:hover {
    color: var(--text);
    background: var(--bg);
}

.search-clear:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-light);
}

/* Pickup Screen */
.pickup-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg) 4px;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .pickup-header {
        padding: var(--space-lg) 8px;
    }
}

.pickup-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.pickup-content {
    padding: var(--space-xl) 4px;
}

@media (min-width: 768px) {
    .pickup-content {
        padding: var(--space-xl) 8px;
    }
}

.pickup-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.pickup-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    box-shadow: var(--shadow-light);
}

.pickup-info {
    flex: 1;
}

.pickup-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text);
    margin: 0 0 var(--space-sm) 0;
}

.pickup-hours {
    font-size: var(--font-size-sm);
    color: var(--muted);
    margin: 0;
}

@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .pickup-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
}

/* Cart Styles */
.cart-container {
    padding: var(--space-lg);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg) 4px;
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .cart-header {
        padding: var(--space-lg) 8px;
    }
}

.cart-header h2 {
    margin: 0;
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text);
}

.cart-count {
    font-size: var(--font-size-sm);
    color: var(--muted);
    background: var(--bg);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    padding-left: 4px;
    padding-right: 4px;
}

.cart-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.cart-item.removing {
    opacity: 0;
    transform: translateX(-100%);
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
}

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

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

.cart-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.cart-item-info {
    margin-bottom: var(--space-md);
}

.cart-item-name {
    margin: 0 0 var(--space-xs) 0;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.cart-item-price {
    margin: 0;
}

.price-per-item {
    font-size: var(--font-size-sm);
    color: var(--muted);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-xs);
}

.btn-quantity {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--card);
    color: var(--text);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 600;
    transition: all 0.2s ease;
}

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

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

.quantity-display {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--text);
}

.cart-item-total {
    text-align: right;
    min-width: 80px;
}

.total-price {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text);
}

.btn-remove {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    color: var(--danger);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-remove:hover {
    background: var(--bg);
    color: var(--danger-hover);
}

.cart-summary {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-light);
    position: sticky;
    bottom: 0;
    margin: 0 4px;
    margin-top: var(--space-xl);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom, 0px));
}

/* Product Detail */
.product-detail { display: flex; flex-direction: column; gap: var(--space-lg); padding-bottom: var(--space-xl); }

/* Edge-to-edge hero image */
.product-hero { position: relative; width: 100%; left: 0; right: 0; margin-left: 0; margin-right: 0; height: 56vh; overflow: hidden; }
.product-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Floating back button */
.back-fab { 
    position: absolute; 
    top: var(--space-lg); 
    left: var(--space-lg); 
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    border: 1px solid #1E3A8A; 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px); 
    background: rgba(255,255,255,0.95); 
    color: #1E3A8A; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 18px; 
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-fab:hover {
    background: #1E3A8A !important;
    color: #ffffff !important;
    border-color: #1E3A8A !important;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Info bar */
.product-info-bar { margin: 0 4px; padding: var(--space-lg); background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-light); display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); }
.product-info-title { font-weight: 700; color: var(--text); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-info-price { font-weight: 800; color: var(--text); white-space: nowrap; }

/* CTA */
.product-cta { padding: 0 4px; }
.btn-full { width: 100%; }

/* Optional extra text */
.product-detail-text { padding: 0 4px; color: var(--muted); }

/* Pretty subscription note */
.subscription-note { margin: var(--space-sm) 4px 0 4px; padding: 0; background: none; border: none; color: var(--text); font-weight: 400; font-size: var(--font-size-base); line-height: 1.5; opacity: 0.9; }

/* Product content under hero */
.product-content { padding: var(--space-lg); background: var(--card); margin-bottom: 20px; }

.product-detail-title { font-size: 1.375rem; font-weight: 700; color: var(--text); line-height: 1.3; margin: 0 0 var(--space-sm) 0; }

.product-detail-price { font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 0 0 var(--space-lg) 0; }

.product-detail-text { color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* Sticky CTA at bottom */
.product-sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--card); border-top: 1px solid var(--border); padding: var(--space-md) var(--space-lg); box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); z-index: 100; }

.product-sticky-cta .btn { margin: 0; min-height: 48px; width: 100%; }

/* Новая форма оформления заказа */
.form-section { margin-bottom: var(--space-xl); }

.section-title { font-size: 1.125rem; font-weight: 600; color: var(--text); margin: 0 0 var(--space-md) 0; }

.radio-group { display: flex; flex-direction: column; gap: var(--space-sm); }

.radio-option { display: flex; align-items: center; gap: var(--space-sm); padding: var(--space-sm); border: 1px solid var(--border); border-radius: var(--radius-md); cursor: pointer; transition: all 0.2s ease; min-height: 44px; }

.radio-option:hover { border-color: var(--primary); background: var(--primary-light); }

.radio-option input[type="radio"] { position: absolute; opacity: 0; }

.radio-custom { width: 20px; height: 20px; border: 2px solid var(--border); border-radius: 50%; position: relative; transition: all 0.2s ease; }

.radio-option input[type="radio"]:checked + .radio-custom { border-color: var(--primary); background: var(--primary); }

.radio-option input[type="radio"]:checked + .radio-custom::after { content: ''; position: absolute; top: 50%; left: 50%; width: 6px; height: 6px; background: white; border-radius: 50%; transform: translate(-50%, -50%); }

.radio-label { font-weight: 500; color: var(--text); }

.radio-option input[type="radio"]:checked ~ .radio-label { color: var(--primary); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

.delivery-section, .pickup-section { margin-bottom: var(--space-lg); }

.checkout-footer { 
    margin-top: var(--space-xl); 
    padding-top: var(--space-lg); 
    border-top: 1px solid var(--border); 
    display: flex;
    justify-content: center;
}

#submit-order { 
    min-width: 200px;
    padding: var(--space-md) var(--space-xl);
}

#submit-order:disabled { 
    opacity: 0.6; 
    cursor: not-allowed; 
}

/* Date Picker с календарем */
.date-picker-container { position: relative; }

.date-input { width: 100%; padding: var(--space-sm) var(--space-md); border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--card); color: var(--text); font-size: var(--font-size-base); cursor: pointer; }

.date-input:focus { outline: none; border-color: var(--primary); }

.calendar-dropdown { position: absolute; top: 100%; left: 0; right: 0; z-index: 1000; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--card); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); overflow: hidden; margin-top: 4px; }

.calendar-header { display: flex; align-items: center; justify-content: space-between; padding: var(--space-sm) var(--space-md); background: var(--bg-secondary); border-bottom: 1px solid var(--border); }

.calendar-title { font-weight: 600; color: var(--text); font-size: 0.9rem; }

.calendar-nav { background: none; border: none; color: var(--text); font-size: 1.2rem; padding: var(--space-xs); cursor: pointer; border-radius: var(--radius-sm); transition: background 0.2s ease; min-width: 32px; min-height: 32px; display: flex; align-items: center; justify-content: center; }

.calendar-nav:hover { background: var(--primary-light); }

.calendar-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); border-bottom: 1px solid var(--border); }

.calendar-weekday { padding: var(--space-xs); text-align: center; font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); background: var(--bg-secondary); }

.calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); }

.calendar-day { padding: var(--space-sm); text-align: center; cursor: pointer; transition: all 0.2s ease; font-size: 0.85rem; min-height: 36px; display: flex; align-items: center; justify-content: center; position: relative; }

.calendar-day:hover:not(.disabled) { background: var(--primary-light); }

.calendar-day.other-month { color: var(--text-muted); }

.calendar-day.today { background: var(--primary); color: white; font-weight: 600; }

.calendar-day.selected { background: var(--primary); color: white; font-weight: 600; }

.calendar-day.disabled { color: var(--text-muted); cursor: not-allowed; opacity: 0.4; }

.calendar-day.today.selected { background: var(--primary); }

/* Responsive */
@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
    .calendar-day { min-height: 32px; padding: var(--space-xs); }
    .calendar-title { font-size: 0.85rem; }
}

.checkout-header { background: var(--bg); border-bottom: 1px solid var(--border); padding: var(--space-lg) 4px; display: flex; align-items: center; gap: var(--space-lg); }
.checkout-content { padding: var(--space-xl) 4px; }
.checkout-form { display: flex; flex-direction: column; gap: var(--space-lg); }
.form-group { display: flex; flex-direction: column; gap: var(--space-sm); }
.form-group label { font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: var(--space-md); border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--card); color: var(--text); font-size: var(--font-size-base); box-shadow: var(--shadow-light) inset; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-light); }

/* Order summary inside checkout */
.order-summary { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-light); padding: var(--space-xl); }
.order-items { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-md); }
.order-item { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-md); background: var(--bg); }
.order-item-name { font-weight: 600; color: var(--text); }
.order-item-total { font-weight: 700; color: var(--text); }
.order-total { margin-top: var(--space-lg); display: flex; align-items: center; justify-content: space-between; }
.order-total strong { font-size: var(--font-size-lg); }

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
}

.total-label {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--muted);
}

.total-amount {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text);
}

.checkout-btn {
    min-width: 200px;
    padding: var(--space-lg) var(--space-xl);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0 auto;
    display: block;
}

/* Make submit button on checkout screen equally bold */
#checkout-screen .btn-primary { font-weight: 600; }

.empty-cart {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    color: var(--muted);
}

.empty-cart-icon {
    font-size: 64px;
    margin-bottom: var(--space-xl);
}

.empty-cart h3 {
    margin: 0 0 var(--space-md) 0;
    font-size: var(--font-size-2xl);
    color: var(--text);
}

.empty-cart p {
    margin: 0;
    font-size: var(--font-size-base);
    color: var(--muted);
}

/* Toast Notifications */
.notification { 
    background: #ffffff !important; 
    border: 1px solid #1E3A8A !important; 
    border-radius: 12px !important; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important; 
    padding: 16px 20px !important; 
    min-width: 240px !important; 
    max-width: 92vw !important; 
    opacity: 0 !important; 
    transform: translateY(12px) !important; 
    transition: opacity 0.25s ease, transform 0.25s ease !important; 
    pointer-events: auto !important; 
    position: relative !important;
    z-index: 10000 !important;
}
.notification-enter { opacity: 1 !important; transform: translateY(0) !important; }
.notification-exit { opacity: 0 !important; transform: translateY(12px) !important; }
.notification-content { display: flex !important; align-items: center !important; gap: 12px !important; }
.notification-icon { font-size: 18px !important; }
.notification-text { display: flex !important; flex-direction: column !important; gap: 2px !important; }
.notification-message { font-weight: 600 !important; color: #1E3A8A !important; font-size: 14px !important; }
.notification-type { font-size: 12px !important; color: #666 !important; }
.notification-close { background: none !important; border: none !important; color: #666 !important; cursor: pointer !important; font-size: 16px !important; padding: 4px !important; border-radius: 4px !important; }
.notification-close:hover { color: #1E3A8A !important; background: #f0f0f0 !important; }

/* WB Product fields */
.product-additional-fields {
    margin-top: 16px;
    margin-bottom: 16px;
}

.product-field {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text);
}

.product-field strong {
    color: var(--primary);
    margin-right: 4px;
}

/* WB External link */
.wb-external-link-container {
    margin-top: 16px;
    margin-bottom: 16px;
}

.wb-external-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wb-external-link:hover {
    background: var(--primary) !important;
    color: white !important;
}

.wb-external-link svg {
    flex-shrink: 0;
}
