/* ============================================
   GIFTS 53 - Premium Islamic Wall Art & Gifts
   Gold, White & Gray Theme
   Mobile-First CSS
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #121214;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 480px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 1024px) { .container { max-width: 960px; } }

/* --- Buttons --- */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; background: linear-gradient(135deg, #ECC45E, #C59D2B);
    color: #121214; border: none; border-radius: 16px;
    font-size: 15px; font-weight: 700; font-family: inherit;
    cursor: pointer; transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236,196,94,0.25);
    text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(236,196,94,0.35); }
.btn-primary:active { transform: scale(0.97); }

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; background: linear-gradient(135deg, #25D366, #128C7E);
    color: white; border: none; border-radius: 16px;
    font-size: 15px; font-weight: 600; font-family: inherit;
    cursor: pointer; transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    text-decoration: none;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; background: transparent;
    color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px; font-size: 15px; font-weight: 500; font-family: inherit;
    cursor: pointer; transition: all 0.3s ease;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: white; }

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* --- Hero Section --- */
.hero {
    position: relative; min-height: 85vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, #1f1f23 0%, #18181b 40%, #121214 100%);
}
.hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(236,196,94,0.12), transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.02), transparent 40%);
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}
.hero-content {
    position: relative; z-index: 2; text-align: center; padding: 20px;
}
.hero-logo img {
    width: 120px; height: 120px; border-radius: 50%; margin: 0 auto;
    box-shadow: 0 0 40px rgba(236,196,94,0.2), 0 0 80px rgba(236,196,94,0.08);
    border: 3px solid rgba(236,196,94,0.35);
}
.hero-brand {
    display: block; font-size: 42px; font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #ECC45E);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: 2px; margin-top: 20px;
}
.hero-sub {
    display: block; font-size: 16px; font-weight: 400;
    color: rgba(255,255,255,0.65); letter-spacing: 4px; text-transform: uppercase;
    margin-top: 4px;
}
.hero-tagline {
    font-size: 15px; color: rgba(255,255,255,0.55);
    margin-top: 12px; font-style: italic;
}
.hero-btns {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center; margin-top: 28px;
}
.hero-wave {
    position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3;
}
.hero-wave svg { display: block; width: 100%; height: auto; }

/* --- Brand Badge --- */
.kitchen53-badge { padding: 16px 0; }
.badge-wrap {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 20px;
    background: rgba(255,255,255,0.03); border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
}
.badge-text { font-size: 12px; color: rgba(255,255,255,0.4); }
.badge-brand { font-size: 14px; font-weight: 700; color: #ECC45E; }
.badge-sub { font-size: 11px; color: rgba(255,255,255,0.3); }

/* --- Section Titles --- */
.section-title {
    font-size: 22px; font-weight: 700; margin-bottom: 20px;
    display: flex; align-items: center; gap: 8px;
    color: #ffffff;
}
.title-icon { font-size: 24px; color: #ECC45E; }

/* --- Categories --- */
.categories-section { padding: 24px 0; }
.categories-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.category-card {
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 8px; border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease; text-decoration: none;
}
.category-card:hover {
    background: rgba(236,196,94,0.08);
    border-color: rgba(236,196,94,0.35);
    transform: translateY(-4px);
}
.category-icon { font-size: 32px; margin-bottom: 8px; }
.category-name {
    font-size: 11px; font-weight: 600; text-align: center;
    color: rgba(255,255,255,0.85); line-height: 1.3;
}

@media (min-width: 768px) {
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Product Cards --- */
.products-scroll {
    display: flex; gap: 14px; overflow-x: auto;
    padding: 4px 0 20px; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.products-scroll::-webkit-scrollbar { display: none; }
.products-scroll .product-card {
    min-width: 165px; max-width: 165px; scroll-snap-align: start;
}

.products-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
    padding-bottom: 24px;
}

.product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px; overflow: hidden;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    border-color: rgba(236,196,94,0.3);
}

.product-img-wrap {
    position: relative; aspect-ratio: 1; overflow: hidden;
    background: linear-gradient(135deg, rgba(236,196,94,0.06), rgba(255,255,255,0.01));
}
.product-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.15);
}
.product-badge {
    position: absolute; top: 8px; left: 8px;
    padding: 4px 10px; background: linear-gradient(135deg, #ECC45E, #C89D3C);
    color: #121214; font-size: 10px; font-weight: 700;
    border-radius: 8px; letter-spacing: 0.5px;
}

.product-info { padding: 12px; }
.product-name {
    font-size: 13px; font-weight: 600; line-height: 1.3;
    color: rgba(255,255,255,0.9);
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
    min-height: 34px;
}
.product-meta {
    display: flex; gap: 8px; margin-top: 4px;
    font-size: 11px; color: rgba(255,255,255,0.4);
    align-items: center; flex-wrap: wrap;
}
.product-pieces {
    padding: 1px 6px; background: rgba(255,255,255,0.06);
    border-radius: 4px;
}
.variant-options {
    display: flex; gap: 4px; flex-wrap: wrap;
}
.variant-pill {
    padding: 3px 8px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
    color: rgba(255,255,255,0.65); font-size: 10px; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.variant-pill:hover { background: rgba(255,255,255,0.08); }
.variant-pill.active {
    background: rgba(236,196,94,0.15); border-color: #ECC45E; color: #ECC45E;
}
.product-bottom {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 10px;
}
.product-price {
    font-size: 18px; font-weight: 700;
    background: linear-gradient(135deg, #ECC45E, #C89D3C);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.add-btn {
    width: 36px; height: 36px; border-radius: 12px;
    background: linear-gradient(135deg, #ECC45E, #C59D2B);
    border: none; color: #121214; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(236,196,94,0.2);
}
.add-btn:hover { transform: scale(1.1); }
.add-btn:active {
    transform: scale(0.9);
    animation: addPulse 0.3s ease;
}
@keyframes addPulse {
    50% { box-shadow: 0 0 0 8px rgba(236,196,94,0.15); }
    100% { box-shadow: 0 2px 8px rgba(236,196,94,0.2); }
}

/* --- Featured Section --- */
.featured-section { padding: 20px 0 32px; }

/* --- CTA Section --- */
.cta-section { padding: 20px 0 32px; }
.cta-card {
    padding: 32px 24px; text-align: center;
    background: linear-gradient(135deg, rgba(236,196,94,0.08), rgba(255,255,255,0.01));
    border: 1px solid rgba(236,196,94,0.2);
    border-radius: 24px;
}
.cta-card h2 { font-size: 24px; margin-bottom: 8px; color: #ffffff; }
.cta-card p { color: rgba(255,255,255,0.65); margin-bottom: 20px; font-size: 14px; }

/* --- Catalog Page --- */
.catalog-page { padding: 20px 0; }
.catalog-header {
    text-align: center; margin-bottom: 20px;
}
.catalog-header h1 { font-size: 28px; font-weight: 800; color: #ffffff; }
.catalog-header p { color: rgba(255,255,255,0.55); font-size: 14px; }

.search-bar {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; margin-bottom: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; transition: border-color 0.3s;
}
.search-bar:focus-within { border-color: rgba(236,196,94,0.45); }
.search-bar svg { color: rgba(255,255,255,0.4); flex-shrink: 0; }
.search-bar input {
    flex: 1; background: none; border: none; outline: none;
    color: white; font-size: 15px; font-family: inherit;
}
.search-bar input::placeholder { color: rgba(255,255,255,0.35); }

.category-tabs { margin-bottom: 20px; }
.tabs-scroll {
    display: flex; gap: 8px; overflow-x: auto;
    padding: 4px 0; scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.tabs-scroll::-webkit-scrollbar { display: none; }
.tab-pill {
    flex-shrink: 0; padding: 8px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px; font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.65); transition: all 0.3s;
    white-space: nowrap; text-decoration: none;
}
.tab-pill.active, .tab-pill:hover {
    background: linear-gradient(135deg, #ECC45E, #C59D2B);
    color: #121214; border-color: transparent;
    box-shadow: 0 4px 12px rgba(236,196,94,0.25);
}

.empty-state {
    grid-column: 1 / -1; text-align: center; padding: 48px 20px;
    color: rgba(255,255,255,0.4);
}
.empty-state svg { margin: 0 auto 16px; }

/* --- Cart Page --- */
.cart-page { padding: 20px 0; }
.cart-header { text-align: center; margin-bottom: 20px; }
.cart-header h1 { font-size: 28px; font-weight: 800; }
.cart-header p { color: rgba(255,255,255,0.5); font-size: 14px; }

.empty-cart { text-align: center; padding: 48px 20px; }
.empty-cart-icon { color: rgba(255,255,255,0.15); margin-bottom: 16px; }
.empty-cart h2 { font-size: 22px; margin-bottom: 8px; }
.empty-cart p { color: rgba(255,255,255,0.4); font-size: 14px; }

.cart-content { max-width: 480px; margin: 0 auto; }

.cart-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px; margin-bottom: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; transition: all 0.3s;
}
.cart-item:hover { border-color: rgba(255,255,255,0.12); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h3 {
    font-size: 14px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-meta { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; display: flex; gap: 6px; }
.cart-item-price { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

.cart-item-actions {
    display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.qty-control {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.06); border-radius: 10px; padding: 4px;
}
.qty-btn {
    width: 28px; height: 28px; border-radius: 8px;
    background: rgba(255,255,255,0.08); border: none; color: white;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.qty-btn:hover { background: rgba(236,196,94,0.25); }
.qty-num { font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-total { font-size: 15px; font-weight: 700; color: #ECC45E; min-width: 55px; text-align: right; }
.remove-btn {
    width: 28px; height: 28px; border-radius: 8px;
    background: rgba(255,68,68,0.12); border: none; color: #FF4444;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.remove-btn:hover { background: rgba(255,68,68,0.25); }

/* Customer Info */
.customer-info {
    padding: 20px; margin: 20px 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
}
.customer-info h3 { font-size: 16px; margin-bottom: 12px; }
.form-group { margin-bottom: 12px; }
.form-input {
    width: 100%; padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; color: white;
    font-size: 14px; font-family: inherit;
    outline: none; transition: border-color 0.3s;
    resize: vertical;
}
.form-input:focus { border-color: rgba(236,196,94,0.45); }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='rgba(255,255,255,0.5)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}
select.form-input option {
    background: #121214;
    color: white;
}

/* Order Summary */
.order-summary {
    padding: 20px; margin-bottom: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
}
.order-summary h3 { font-size: 16px; margin-bottom: 12px; }
.summary-row {
    display: flex; justify-content: space-between;
    padding: 8px 0; font-size: 14px;
    color: rgba(255,255,255,0.65);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.summary-row.total {
    font-size: 18px; font-weight: 700; color: white;
    border-bottom: none; margin-top: 8px; padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Payment QR */
.payment-section {
    text-align: center; padding: 24px; margin-bottom: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
}
.payment-section h3 { font-size: 16px; margin-bottom: 16px; }
.qr-wrap canvas {
    margin: 0 auto; border-radius: 12px;
    background: white; padding: 8px;
}
.qr-amount { margin-top: 12px; font-size: 16px; font-weight: 600; }
.upi-id { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* Order Actions */
.order-actions { margin-bottom: 40px; }

/* --- About Page --- */
.about-page { padding: 20px 0; }
.about-header { text-align: center; margin-bottom: 24px; }
.about-logo img {
    width: 80px; height: 80px; border-radius: 50%;
    margin: 0 auto 12px; border: 2px solid rgba(236,196,94,0.35);
}
.about-header h1 { font-size: 28px; font-weight: 800; }

.about-card {
    padding: 24px; margin-bottom: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
}
.about-card h2 { font-size: 20px; margin-bottom: 6px; color: #ECC45E; }
.about-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 8px; }
.about-card .brand-sub { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 4px; font-weight: 500; letter-spacing: 0.3px; }
.about-card .brand-slogan { font-size: 13px; color: rgba(236,196,94,0.8); margin-bottom: 12px; font-style: italic; font-weight: 500; }

.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.promise-item { text-align: center; padding: 16px 8px; }
.promise-icon { font-size: 32px; display: block; margin-bottom: 8px; }
.promise-item h3 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.promise-item p { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 0; }

.contact-card .contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px; font-size: 14px;
    transition: all 0.3s; color: rgba(255,255,255,0.85);
}
.contact-item:hover { background: rgba(255,255,255,0.08); }
.contact-item.whatsapp { background: rgba(37,211,102,0.12); color: #25D366; }
.contact-item.whatsapp:hover { background: rgba(37,211,102,0.22); }

/* --- Navigation & Icons --- */
.bottom-nav-icons a.active, .bottom-nav-icons a:hover { color: #ECC45E; }

/* --- Footer --- */
.site-footer {
    text-align: center; padding: 16px 16px 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 20px;
}
.footer-credit {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; color: rgba(255,255,255,0.25);
    text-decoration: none; transition: color 0.3s;
}
.footer-credit:hover { color: rgba(255,255,255,0.5); }
.footer-heart { color: #ff4444; font-size: 13px; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }


/* --- Splash Screen --- */
.splash-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 9999; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    animation: splashFadeOut 0.5s ease-out 2.5s forwards;
}
.splash-screen.hidden { display: none; }
.splash-logo {
    width: 150px; height: 150px; border-radius: 50%;
    animation: splashPulse 2s ease-in-out;
    filter: drop-shadow(0 0 30px rgba(236, 196, 94, 0.5));
}
.splash-brand {
    margin-top: 20px; font-size: 28px; font-weight: 800;
    background: linear-gradient(135deg, #ECC45E, #FCE38A);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: splashSlideUp 0.8s ease-out 0.5s both;
}
.splash-sub {
    margin-top: 4px; font-size: 12px; font-weight: 500;
    color: rgba(255,255,255,0.55); letter-spacing: 0.5px;
    animation: splashSlideUp 0.8s ease-out 0.65s both;
}
.splash-tagline {
    margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.6);
    text-align: center; max-width: 280px; line-height: 1.4;
    animation: splashSlideUp 0.8s ease-out 0.8s both;
}
.splash-loader {
    margin-top: 30px; width: 40px; height: 40px;
    border: 3px solid rgba(236,196,94,0.2); border-top-color: #ECC45E;
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes splashPulse { 0% { transform: scale(0); opacity: 0; } 50% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
@keyframes splashFadeOut { to { opacity: 0; pointer-events: none; } }
@keyframes splashSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Bottom Navigation --- */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(15, 15, 26, 0.95); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex; flex-direction: column; align-items: stretch;
    padding: 6px 0 0;
    padding-bottom: calc(0px + env(safe-area-inset-bottom));
    z-index: 1000;
}
.bottom-nav-icons {
    display: flex; justify-content: space-around; align-items: center;
    width: 100%;
}
.bottom-nav-icons a {
    display: flex; flex-direction: column; align-items: center;
    text-decoration: none; color: rgba(255,255,255,0.5);
    font-size: 10px; font-weight: 500; transition: all 0.3s;
    position: relative; padding: 4px 12px;
}
.bottom-nav-icons a.active, .bottom-nav-icons a:hover { color: #ECC45E; }
.bottom-nav-icons a svg { width: 22px; height: 22px; margin-bottom: 2px; }
.bottom-nav .footer-credit {
    display: block; text-align: center;
    padding: 6px 0 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 4px;
    font-size: 10px; color: rgba(255,255,255,0.28);
    text-decoration: none;
}
.bottom-nav .footer-credit .footer-heart { color: #ff4444; font-size: 11px; }

/* --- Cart Badge --- */
.cart-badge {
    position: absolute; top: -2px; right: 4px;
    background: #ff4444; color: white; font-size: 10px;
    min-width: 18px; height: 18px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}

/* --- Toast Notification --- */
.toast {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%) translateY(-100px);
    background: #ECC45E; color: #121214; padding: 12px 24px;
    border-radius: 12px; font-size: 14px; font-weight: 600;
    z-index: 10000; transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 10px 30px rgba(236,196,94,0.3);
}
.toast.show { transform: translateX(-50%) translateY(0); }


/* --- Responsive Desktop --- */
@media (min-width: 768px) {
    .hero-brand { font-size: 56px; }
    .hero-logo img { width: 140px; height: 140px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .categories-grid { grid-template-columns: repeat(5, 1fr); }
    .cart-item-info h3 { white-space: normal; }
}

@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
    .categories-grid { grid-template-columns: repeat(7, 1fr); }
}

/* --- Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 400px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}
