
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

:root {
  --brand-color: #ea580c;
  --bg-color: #f8f9fa;
  --text-main: #111827;
  --text-muted: #6b7280;
  --card-bg: #ffffff;
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.03), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md: 0 12px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 48px rgba(0,0,0,0.08);
}
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Nunito', system-ui, sans-serif; background: var(--bg-color); color: var(--text-main); line-height: 1.5; padding-bottom: 120px; -webkit-font-smoothing: antialiased; }
@keyframes appFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.container { width: min(100%, 1200px); margin: 0 auto; padding: 1.5rem 1rem; }
main.container { animation: appFadeIn 0.4s ease-out forwards; }
h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: 1.75rem; }
h2 { font-size: 1.25rem; margin-bottom: 1rem; }
p { margin-top: 0; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }

/* Buttons & Inputs */
button, input, select, textarea { font: inherit; border: none; outline: none; }
input, select, textarea { background: #f8fafc; border: 2px solid #e2e8f0; border-radius: var(--radius-sm); padding: 0.85rem 1.25rem; width: 100%; transition: all 0.2s; color: var(--text-main); }
input:focus, select:focus, textarea:focus { border-color: var(--brand-color); background: #fff; box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; text-decoration: none; padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 800; transition: all 0.2s; cursor: pointer; text-align: center; }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--brand-color); color: #fff; box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(234, 88, 12, 0.3); }
.btn-secondary { background: #f1f5f9; color: var(--text-main); }
.btn-secondary:hover { background: #e2e8f0; }
.btn-outline { background: transparent; border: 2px solid var(--brand-color); color: var(--brand-color); }

/* Main Header (Index) */
.main-header { background: #fff; padding: 2.5rem 0; box-shadow: var(--shadow-sm); text-align: center; }
.main-header h1 { font-size: 2rem; color: var(--text-main); display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.main-header p { color: var(--text-muted); font-size: 1.1rem; margin-top: 0.5rem; font-weight: 500; }

/* App Store Header */
.store-cover { height: 140px; width: 100%; position: absolute; top: 0; left: 0; z-index: -1; opacity: 0.1; }
.store-header-app { position: relative; background: transparent; padding-top: 2rem; }
.store-header-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.store-logo-app { width: 96px !important; height: 96px !important; min-width: 96px !important; max-width: 96px !important; border-radius: 28px; object-fit: cover !important; box-shadow: 0 8px 24px rgba(0,0,0,0.12); margin-bottom: 1rem; background: #fff; border: 4px solid #fff; aspect-ratio: 1/1 !important; display: block; }
.store-title-app { font-size: 1.85rem; font-weight: 900; margin-bottom: 0.5rem; letter-spacing: -0.03em; color: var(--text-main); }
.store-meta-app { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.25rem; max-width: 500px; line-height: 1.4; font-weight: 500; }
.badge-app { display: inline-flex; align-items: center; gap: 0.4rem; background: #f1f5f9; color: #475569; padding: 0.4rem 0.85rem; border-radius: 999px; font-size: 0.85rem; font-weight: 800; }
.badge-app.highlight { background: var(--brand-color); color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: transform 0.2s; }
.badge-app.highlight:hover { transform: scale(1.05); }

/* Sticky Nav App */
.sticky-cat-nav { display: flex; gap: 0.5rem; overflow-x: auto; padding: 1rem; scrollbar-width: none; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 40; border-bottom: 1px solid #f1f5f9; border-top: 1px solid #f1f5f9; margin-top: 1.5rem; -webkit-overflow-scrolling: touch; }
.sticky-cat-nav::-webkit-scrollbar { display: none; }
.sticky-cat-nav a { background: #f1f5f9; color: #475569; padding: 0.6rem 1.25rem; border-radius: 999px; font-weight: 800; font-size: 0.9rem; transition: all 0.2s; text-decoration: none; white-space: nowrap; border: 1px solid transparent;}
.sticky-cat-nav a:hover, .sticky-cat-nav a.active { background: var(--brand-color); color: #fff; border-color: var(--brand-color); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

/* Search */
.store-search-panel { margin-bottom: 1.5rem; }
.store-search { display: flex; gap: 0.5rem; }
.store-search input { flex: 1; border-radius: 999px; padding: 0.85rem 1.25rem; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid #e5e7eb; }
.store-search button { border-radius: 999px; padding: 0.85rem 1.5rem; }
.search-summary { margin-top: 1rem; font-size: 0.9rem; color: var(--text-muted); }

/* Grids & Cards */
.store-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.5rem; }
@media(min-width: 640px) { .store-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); } }
.store-card { background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9; text-align: center; transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; justify-content: space-between; align-items: center;}
.store-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.store-card-logo { width: 80px !important; height: 80px !important; min-width: 80px !important; max-width: 80px !important; border-radius: 20px; object-fit: cover !important; margin: 0 auto 1rem; border: 3px solid #f8fafc; box-shadow: var(--shadow-sm); aspect-ratio: 1/1 !important; display: block; }
.store-card h2 { font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--text-main); }
.store-card .store-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; font-weight: 800; }
.store-card p { font-size: 0.95rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 1.5rem; line-height: 1.4;}

.category-grid { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 1rem; margin-inline: -1rem; padding-inline: 1rem; scrollbar-width: none; scroll-snap-type: x mandatory; }
.category-grid::-webkit-scrollbar { display: none; }
.category-card { min-width: 200px; max-width: 240px; scroll-snap-align: start; background: var(--card-bg); border-radius: var(--radius-md); padding: 1.25rem; box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.category-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 800; }
.category-card p { font-size: 0.85rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 1rem; }
.item-feature { font-size: 0.75rem; font-weight: 800; color: var(--brand-color); background: rgba(0,0,0,0.05); padding: 0.25rem 0.5rem; border-radius: 0.25rem; display: inline-block; margin-bottom: 0.5rem; }

.item-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1rem; }
@media(min-width: 640px) { .item-grid { grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); } }
.product-card { border: none; box-shadow: var(--shadow-sm); padding: 0.85rem; gap: 1rem; border-radius: var(--radius-md); background: #fff; display: flex; align-items: stretch; cursor: pointer; position: relative; -webkit-tap-highlight-color: transparent; transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card:active { transform: scale(0.98); }
.product-card img { width: 110px !important; height: 110px !important; min-width: 110px !important; max-width: 110px !important; object-fit: cover !important; border-radius: 1rem; background: #f8fafc; flex-shrink: 0; border: 1px solid #f1f5f9; aspect-ratio: 1/1 !important; display: block; }
.product-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.product-info h3 { font-size: 1.1rem; margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 800; color: #111827; }
.product-info p { font-size: 0.85rem; color: var(--text-muted); margin: 0.25rem 0 0 0; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.35; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
.info-price { font-weight: 900; font-size: 1.05rem; color: var(--text-main); display: flex; align-items: center; gap: 0.5rem; margin: 0; }
.price-normal { text-decoration: line-through; color: var(--text-muted); font-size: 0.8rem; font-weight: 500; }
.price-offer { color: var(--brand-color); }
.add-btn { background: #f1f5f9; color: var(--brand-color); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; border: none; cursor: pointer; transition: all 0.2s; padding: 0; font-weight: bold; }
.add-btn:hover { background: var(--brand-color); color: #fff; transform: scale(1.05); }
.add-btn:active { transform: scale(0.95); }

/* Product Detail */
.product-detail-img { width: 100% !important; max-width: 100% !important; aspect-ratio: 1/1 !important; object-fit: cover !important; border-radius: var(--radius-md); margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); display: block; }
@media(min-width: 640px) { .product-detail-img { aspect-ratio: 16/9 !important; max-height: 400px; } }

/* App Bottom Nav (Dock) */
.app-bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); display: flex; justify-content: space-around; padding: 0.75rem 1rem 1.5rem; box-shadow: 0 -4px 24px rgba(0,0,0,0.06); z-index: 1000; border-top: 1px solid #f1f5f9; }
.app-bottom-nav .nav-item { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; color: var(--text-muted); font-size: 0.75rem; font-weight: 800; }
.app-bottom-nav .nav-item.active, .app-bottom-nav .nav-item:hover { color: var(--brand-color); }
.app-bottom-nav .nav-badge { position: absolute; top: -5px; right: -8px; background: var(--brand-color); color: #fff; font-size: 0.65rem; padding: 0.15rem 0.35rem; border-radius: 999px; border: 2px solid #fff; box-shadow: var(--shadow-sm); }

/* Category Modal */
.category-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1010; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.category-modal { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-radius: 1.5rem 1.5rem 0 0; z-index: 1020; transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); padding: 1rem 0 2rem; max-height: 70vh; display: flex; flex-direction: column; }
.category-overlay.active { opacity: 1; pointer-events: auto; }
.category-modal.active { transform: translateY(0); }
.category-modal-header { padding: 0.5rem 1.5rem 1rem; text-align: center; position: relative; flex-shrink: 0; }
.category-modal-header h2 { font-size: 1.25rem; margin: 0; color: var(--text-main); }
.category-modal-header .close-btn { position: absolute; top: 50%; right: 1.5rem; transform: translateY(-50%); background: #f1f5f9; color: var(--text-muted); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
.category-modal-header .close-btn:hover { background: #e2e8f0; }
.category-modal-list { list-style: none; padding: 0; margin: 0; overflow-y: auto; }
.category-modal-list li a { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; font-weight: 700; font-size: 1.05rem; border-bottom: 1px solid #f1f5f9; }
.category-modal-list li:last-child a { border-bottom: none; }
.category-modal-list li a:hover { background: #f8fafc; color: var(--brand-color); }
.category-modal-list .cat-icon { width: 48px; height: 48px; border-radius: 1rem; object-fit: cover; background: #f1f5f9; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
body.modal-open { overflow: hidden; }
.icon-close { transform: rotate(45deg); }

/* Floating Bottom Bar */
.floating-cart { position: fixed; bottom: 6rem; left: 1rem; right: 1rem; background: var(--brand-color); color: #fff; border-radius: 999px; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 10px 25px rgba(234, 88, 12, 0.4); text-decoration: none; font-weight: 800; z-index: 99; max-width: 600px; margin: 0 auto; transition: transform 0.2s; }
.floating-cart .count { background: rgba(255,255,255,0.25); padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.9rem; }
.floating-cart:active { transform: scale(0.97); }

.floating-checkout { position: fixed; bottom: 76px; left: 0; right: 0; margin: 0 auto; max-width: 600px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); padding: 1rem 1.5rem; box-shadow: 0 -8px 24px rgba(0,0,0,0.06); z-index: 999; border-top: 1px solid #f1f5f9; border-radius: 1.5rem 1.5rem 0 0; }

/* Cart & Checkout */
.cart-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 1rem; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.cart-table th, .cart-table td { padding: 1.25rem 1rem; text-align: left; border-bottom: 1px solid #f3f4f6; }
.cart-table thead th { background: #f9fafb; font-size: 0.85rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.05em; }
.cart-table input[type="number"] { width: 70px; padding: 0.5rem; text-align: center; border: 1px solid #e5e7eb; }
.cart-summary { margin-top: 1.5rem; font-size: 1.25rem; text-align: right; background: #fff; padding: 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
@media(min-width: 640px) { .actions { flex-direction: row; justify-content: flex-end; } }
.order-preview { background: #fff; padding: 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; }
.order-preview ul { list-style: none; padding: 0; margin: 0 0 1rem 0; }
.order-preview li { padding: 0.5rem 0; border-bottom: 1px solid #f3f4f6; display: flex; justify-content: space-between; }
.order-preview li:last-child { border-bottom: none; }

/* Admin & General */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.action-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.action-links a { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* Admin Header & Topbar */
.admin-header { background: #ffffff; color: var(--text-main); padding: 1rem 0; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid #e2e8f0; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; gap: 1rem;}
.admin-topbar h1 { font-size: 1.25rem; margin: 0; font-weight: 800; letter-spacing: -0.02em; display: flex; align-items: center; gap: 0.5rem; }
.admin-topbar a { color: var(--text-muted); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; font-weight: 700; font-size: 0.95rem; }
.admin-topbar a:hover { color: var(--brand-color); }
.admin-topbar strong { color: var(--text-main); font-weight: 900; }

/* Login Box */
.admin-login { background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%); min-height: 100vh; display: flex; align-items: center; justify-content: center; margin: 0; padding: 1rem; position: relative; overflow: hidden; }
.login-box { max-width: 420px; width: 100%; background: #ffffff; padding: 3rem 2.5rem; border-radius: 1.5rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.8); position: relative; z-index: 10; margin: auto; box-sizing: border-box; }
.login-logo { width: 72px; height: 72px; background: var(--brand-color); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 1.25rem; margin: 0 auto 1.5rem; box-shadow: 0 10px 25px -5px rgba(234, 88, 12, 0.4); }
.login-box h1 { text-align: center; margin-bottom: 2rem; font-size: 1.75rem; color: var(--text-main); font-weight: 800;}
.login-box p { text-align: center; margin-top: 2rem; margin-bottom: 0; }
.login-box p a { color: var(--text-muted); text-decoration: none; font-weight: 700; transition: color 0.2s; display: inline-flex; align-items: center; gap: 0.5rem;}
.login-box p a:hover { color: var(--text-main); }

/* ADMIN DASHBOARD UI */
.admin-card { background: #ffffff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 1.5rem; margin-bottom: 1.5rem; border: 1px solid #e2e8f0; }
.admin-card-title { font-size: 1.25rem; font-weight: 800; margin: 0 0 1.5rem 0; display:flex; align-items:center; gap:0.5rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 1rem; color: var(--text-main); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0;}
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.95rem; font-weight: 700; color: var(--text-main); margin:0; display:inline-block;}
.form-control { padding: 0.85rem 1.25rem; border: 2px solid #e2e8f0; border-radius: var(--radius-sm); font-size: 1rem; background: #f8fafc; transition: all 0.2s; color: var(--text-main); width: 100%; box-sizing: border-box; margin-top:0 !important; font-family: inherit; }
.form-control:focus { border-color: var(--brand-color); background: #ffffff; outline: none; box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1); }
.file-upload { border: 2px dashed #cbd5e1; border-radius: var(--radius-md); padding: 2rem 1.5rem; text-align: center; color: var(--text-muted); cursor: pointer; transition: all 0.2s; background: #f8fafc; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; position: relative; overflow: hidden; }
.file-upload:hover { border-color: var(--brand-color); background: #f0f9ff; color: var(--brand-color); }
.file-upload img { width: 140px !important; height: 140px !important; min-width: 140px !important; max-width: 140px !important; border-radius: var(--radius-md); object-fit: cover !important; box-shadow: var(--shadow-md); border: 4px solid #fff; aspect-ratio: 1/1 !important; display: block; margin: 0 auto; }
.color-picker { padding: 0; height: 52px; width: 100%; cursor: pointer; border-radius: var(--radius-sm); border: 2px solid #e2e8f0; overflow: hidden; background:#fff;}
.color-picker::-webkit-color-swatch-wrapper { padding: 0; }
.color-picker::-webkit-color-swatch { border: none; }
.checkbox-label { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; font-size: 1rem; font-weight: 600; padding: 1rem 1.25rem; background: #f8fafc; border-radius: var(--radius-sm); border: 2px solid #e2e8f0; transition: all 0.2s;}
.checkbox-label:hover { border-color: var(--brand-color); }
input[type="checkbox"] { width: 1.25rem; height: 1.25rem; accent-color: var(--brand-color); cursor: pointer; }
.iti { width: 100%; margin-top: 0.25rem; }
.iti__flag-container { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.iti input, .iti input[type=text], .iti input[type=tel] { padding-left: 50px !important; margin-top: 0 !important; width: 100%; box-sizing: border-box; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.animate-spin { animation: spin 1s linear infinite; }
.item-image-preview { width: 60px; height: 60px; border-radius: 0.5rem; object-fit: cover; }
.admin-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
section { margin-bottom: 3rem; }
form label { display: block; font-weight: 600; color: var(--text-main); margin-bottom: 1.25rem; }
form label input { margin-top: 0.5rem; }
@media(min-width: 1024px) { .admin-layout { grid-template-columns: 350px 1fr; } }
a.admin-card { transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); } a.admin-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--brand-color) !important; }
.admin-form label { margin-bottom: 0; }

/* Admin Lists */
.admin-item-list { display: flex; flex-direction: column; gap: 0.75rem; }
.admin-list-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; border: 1px solid #e2e8f0; border-radius: var(--radius-md); background: #fff; transition: all 0.2s; }
.admin-list-item:hover { border-color: #cbd5e1; box-shadow: var(--shadow-sm); }
.admin-list-img { width: 64px !important; height: 64px !important; min-width: 64px !important; max-width: 64px !important; border-radius: 0.75rem; object-fit: cover !important; background: #f8fafc; flex-shrink: 0; display:flex; align-items:center; justify-content:center; color:#cbd5e1; border: 1px solid #f1f5f9; aspect-ratio: 1/1 !important; overflow: hidden; }
.admin-list-info { flex: 1; min-width: 0; }
.admin-list-title { font-weight: 800; font-size: 1.05rem; color: var(--text-main); margin: 0 0 0.25rem 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-list-meta { font-size: 0.9rem; color: var(--text-muted); margin: 0; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.admin-list-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.badge { background: #f1f5f9; color: #475569; padding: 0.2rem 0.6rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; }

.category-section { scroll-margin-top: 180px; margin-bottom: 3.5rem; }
.cart-item-card { transition: all 0.3s ease; }

/* TOAST APP NOTIFICATION */
.toast { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px); background: #10b981; color: white; padding: 0.75rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1000; opacity: 0; pointer-events: none; display: flex; align-items: center; gap: 0.5rem; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
