/* Nadeemstore Customer UI */
:root {
    --primary: #2F6B4F;
    --primary-dark: #24543E;
    --primary-light: #EAF5EF;
    --bg: #F7F8F6;
    --surface: #FFFFFF;
    --text-main: #17201B;
    --text-secondary: #5F6B63;
    --text-muted: #89938C;
    --border: #E5E9E6;
    
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    --header-height: 56px;
    --nav-height: 56px;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* CSS Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-stack);
    background-color: var(--bg);
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: calc(var(--nav-height) + 16px);
}

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

ul {
    list-style: none;
}

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

/* Layout */
.app-container {
    max-width: 1024px;
    margin: 0 auto;
    background-color: var(--bg);
    min-height: 100vh;
}

@media (min-width: 1024px) {
    body {
        background-color: #e5e5e5;
    }
    .app-container {
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
}

.section-container {
    padding: 16px;
}

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

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
}

.see-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

/* Header */
.app-header {
    background-color: var(--surface);
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    justify-content: space-between;
}

.app-header .brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-header .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon {
    font-size: 20px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

/* Search */
.search-container {
    padding: 12px 16px;
    background-color: var(--surface);
    position: sticky;
    top: var(--header-height);
    z-index: 99;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--bg);
    border-radius: var(--radius-full);
    padding: 8px 16px;
    border: 1px solid var(--border);
}

.search-bar i {
    color: var(--text-muted);
    font-size: 16px;
    margin-right: 8px;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: var(--text-main);
    font-family: inherit;
}

.search-input::placeholder {
    color: var(--text-muted);
}

/* Banners */
.banner-container {
    padding: 16px;
}

.banner-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 16px;
    border-radius: var(--radius-md);
}

.banner-slider::-webkit-scrollbar {
    display: none;
}

.banner-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/7;
    background-color: var(--border);
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.slider-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background-color: var(--border);
    transition: background-color 0.2s;
}

.slider-dots .dot.active {
    background-color: var(--primary);
}

/* Categories */
.category-scroll {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 8px;
    scrollbar-width: none;
}

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

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 64px;
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background-color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    color: var(--text-main);
    white-space: nowrap;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    position: relative;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--bg);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    position: relative;
}

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

.discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #E53935;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.product-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    flex-grow: 1;
}

.product-weight {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-col {
    display: flex;
    flex-direction: column;
}

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

.mrp-price {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.add-btn {
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.add-btn:active {
    background-color: var(--primary);
    color: var(--surface);
}

.add-btn.added {
    background-color: var(--primary);
    color: var(--surface);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background-color: var(--surface);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-bottom: env(safe-area-inset-bottom);
    z-index: 100;
    max-width: 1024px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    flex: 1;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item i {
    font-size: 20px;
}

.nav-item span {
    font-size: 10px;
    font-weight: 500;
}

/* Forms & Inputs */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-main);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-control:focus {
    border-color: var(--primary);
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background-color: var(--primary);
    color: var(--surface);
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    display: block;
}

.btn-primary:active {
    background-color: var(--primary-dark);
}

.btn-secondary {
    width: 100%;
    padding: 14px;
    background-color: var(--surface);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    display: block;
}

.btn-secondary:active {
    background-color: var(--primary-light);
}

/* Badges */
.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.success {
    background-color: #EAF5EF;
    color: #2F6B4F;
}

.status-badge.warning {
    background-color: #FFF4E5;
    color: #B26A00;
}

.status-badge.danger {
    background-color: #FDECEA;
    color: #C62828;
}

/* Empty States */
.empty-state {
    padding: 48px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.empty-state i {
    font-size: 48px;
    color: var(--border);
    margin-bottom: 16px;
}

.empty-state-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.empty-state-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Cards */
.ui-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
}

/* Skeleton Loading */
.skeleton {
    background-color: var(--border);
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Utilities */
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

/* Product List Card */
.product-list-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    gap: 16px;
    border: 1px solid var(--border);
    margin-bottom: 12px;
}
.product-list-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    background-color: var(--bg);
    position: relative;
    flex-shrink: 0;
}
.product-list-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}
.product-list-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-list-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Details */
.product-details-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--surface);
    overflow: hidden;
}
.product-details-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100%;
    height: 100%;
}
.product-details-slider::-webkit-scrollbar { display: none; }
.product-details-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    position: relative;
    padding: 16px;
}
.product-details-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-details-top-actions {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}
.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--surface);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.product-info-container {
    padding: 16px;
    background-color: var(--surface);
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.product-info-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}
.product-info-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.product-info-price-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 8px;
}
.product-info-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}
.product-info-mrp {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.product-desc-container {
    padding: 16px;
    background-color: var(--surface);
    margin-bottom: 8px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.product-desc-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}
.product-desc-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bottom-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 100;
    max-width: 1024px;
    margin: 0 auto;
}
.qty-selector {
    display: flex;
    align-items: center;
    background-color: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    height: 44px;
}
.qty-btn {
    width: 36px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--text-main);
    font-weight: 700;
}
.qty-input {
    width: 36px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
}

/* Cart UI */
.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background-color: var(--surface);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    position: relative;
}
.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background-color: var(--bg);
    padding: 4px;
    flex-shrink: 0;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.cart-item-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    padding-right: 24px;
}
.cart-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    height: 28px;
}
.cart-qty-ctrl button {
    width: 28px;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--text-main);
}
.cart-qty-ctrl input {
    width: 32px;
    text-align: center;
    border: none;
    font-size: 13px;
    font-weight: 600;
    background: transparent;
}
.cart-item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #ef4444;
    background: transparent;
    border: none;
    font-size: 14px;
}

.summary-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}
.summary-row.total {
    font-size: 15px;
    font-weight: 700;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.summary-row.discount {
    color: #10b981;
}

/* Checkout UI */
.checkout-address-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--primary);
    margin-bottom: 16px;
}
.checkout-address-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.checkout-address-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
}
.checkout-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.checkout-item:last-child {
    border-bottom: none;
}
.checkout-item-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background-color: var(--bg);
}
.checkout-item-info {
    flex-grow: 1;
}
.checkout-item-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}
.checkout-item-qty {
    font-size: 12px;
    color: var(--text-muted);
}
.checkout-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}
.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    cursor: pointer;
    background-color: var(--surface);
}
.payment-method.active {
    border-color: var(--primary);
    background-color: var(--primary-light);
}
.payment-method.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Order Card */
.order-card {
    background-color: var(--surface);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}
.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.order-no {
    font-size: 14px;
    font-weight: 700;
}
.order-date {
    font-size: 12px;
    color: var(--text-muted);
}
.order-card-body {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.order-img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background-color: var(--bg);
}
.order-info {
    flex-grow: 1;
}
.order-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.order-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.order-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}
.order-actions {
    display: flex;
    gap: 12px;
}

/* Order Status Badges */
.status-badge.pending { background: #ffedd5; color: #ea580c; }
.status-badge.confirmed, .status-badge.accepted { background: #dbeafe; color: #2563eb; }
.status-badge.packed { background: #faf5ff; color: #7c3aed; }
.status-badge.shipped { background: #e0e7ff; color: #4f46e5; }
.status-badge.delivered { background: #d1fae5; color: #059669; }
.status-badge.cancelled { background: #fee2e2; color: #dc2626; }

/* Order Details UI */
.order-status-card {
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    color: white;
    margin-bottom: 16px;
}
.order-status-card.pending { background-color: #f97316; }
.order-status-card.confirmed, .order-status-card.accepted { background-color: #3b82f6; }
.order-status-card.packed { background-color: #8b5cf6; }
.order-status-card.shipped { background-color: #6366f1; }
.order-status-card.delivered { background-color: #10b981; }
.order-status-card.cancelled { background-color: #ef4444; }

.timeline-container {
    position: relative;
    padding-left: 24px;
    margin: 16px 0;
}
.timeline-line {
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background-color: var(--border);
}
.timeline-step {
    position: relative;
    padding-bottom: 16px;
}
.timeline-step:last-child {
    padding-bottom: 0;
}
.timeline-node {
    position: absolute;
    left: -24px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--border);
    border: 3px solid var(--surface);
    z-index: 2;
}
.timeline-node.completed { background-color: var(--primary); }
.timeline-node.active { background-color: var(--primary); box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
.timeline-node.cancelled { background-color: #ef4444; }

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    max-width: 400px;
    pointer-events: none;
}
.toast-item {
    background: var(--surface);
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    animation: toastSlideUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    border-left: 4px solid transparent;
}
.toast-item.success { border-left-color: var(--success); }
.toast-item.danger { border-left-color: var(--danger); }
.toast-item.warning { border-left-color: var(--warning); }
.toast-item.info { border-left-color: var(--info); }

.toast-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toast-item.success .toast-icon { color: var(--success); }
.toast-item.danger .toast-icon { color: var(--danger); }
.toast-item.warning .toast-icon { color: var(--warning); }
.toast-item.info .toast-icon { color: var(--info); }

.toast-content {
    flex-grow: 1;
}
.toast-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}
.toast-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.toast-close-btn:hover {
    color: var(--text-main);
}
@keyframes toastSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes toastExit {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(100%); opacity: 0; }
}
