:root {
  --orange: #2563eb; --accent: #2563eb;
  --navy: #1A1A2E;
  --blue: #0066CC;
  --light: #F8F9FA;
  --gray: #6C757D;
  --border: #E9ECEF;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-sm: 8px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #333; background: #fff; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===== HEADER ===== */
.header { background: var(--navy); color: white; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header-top { display: flex; align-items: center; gap: 16px; padding: 12px 24px; max-width: 1400px; margin: 0 auto; }
.logo { font-size: 1.6rem; font-weight: 900; color: #fff; white-space: nowrap; letter-spacing: -1px; }
.logo span { color: white; }
.search-bar { flex: 1; display: flex; max-width: 600px; position: relative; }
.search-bar input { flex: 1; padding: 11px 18px; border: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); font-size: 14px; outline: none; }
.search-bar button { background: var(--orange); color: white; border: none; padding: 11px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 16px; transition: background 0.2s; }
.search-bar button:hover { background: #e55a25; }
.header-actions { display: flex; gap: 12px; align-items: center; margin-left: auto; }
.cart-btn { background: var(--accent); color: white; border: none; padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 8px; transition: transform 0.1s, background 0.2s; }
.cart-btn:hover { background: #e55a25; transform: scale(1.03); }
.cart-count { background: white; color: var(--orange); border-radius: 50%; width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; }
.nav { background: rgba(255,255,255,0.06); border-top: 1px solid rgba(255,255,255,0.08); }
.nav ul { display: flex; list-style: none; max-width: 1400px; margin: 0 auto; padding: 0 24px; overflow-x: auto; gap: 2px; scrollbar-width: none; }
.nav ul::-webkit-scrollbar { display: none; }
.nav ul li a { display: block; padding: 10px 16px; color: rgba(255,255,255,0.8); font-size: 13.5px; white-space: nowrap; transition: color 0.2s, background 0.2s; border-radius: var(--radius-sm); }
.nav ul li a:hover, .nav ul li a.active { color: var(--orange); background: rgba(255,107,53,0.1); }

/* ===== CART SIDEBAR ===== */
.cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1001; backdrop-filter: blur(2px); }
.cart-overlay.open { display: block; }
.cart-sidebar { position: fixed; right: -450px; top: 0; width: 420px; max-width: 100vw; height: 100vh; height: 100dvh; background: white; z-index: 1002; display: flex; flex-direction: column; transition: right 0.3s cubic-bezier(0.4,0,0.2,1); box-shadow: -4px 0 40px rgba(0,0,0,0.2); }
.cart-sidebar .cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-sidebar .cart-header { flex-shrink: 0; }
.cart-sidebar.open { right: 0; }
.cart-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-header h2 { font-size: 1.1rem; font-weight: 700; }
.close-cart { background: var(--light); border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.close-cart:hover { background: var(--border); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius-sm); background: var(--light); }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.cart-item-price { color: var(--orange); font-weight: 700; font-size: 15px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { background: var(--light); border: 1px solid var(--border); width: 28px; height: 28px; border-radius: 6px; font-size: 16px; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.qty-btn:hover { background: var(--border); }
.qty-val { font-weight: 600; font-size: 14px; min-width: 24px; text-align: center; }
.remove-item { background: none; border: none; color: #dc3545; font-size: 12px; margin-left: auto; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.checkout-btn { width: 100%; background: var(--orange); color: white; border: none; padding: 15px; border-radius: var(--radius); font-size: 16px; font-weight: 700; transition: background 0.2s, transform 0.1s; }
.checkout-btn:hover { background: #e55a25; transform: translateY(-1px); }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gray); }
.cart-empty .icon { font-size: 3rem; margin-bottom: 12px; }
.cart-trust { display: flex; gap: 8px; justify-content: center; margin-top: 12px; font-size: 12px; color: var(--gray); }

/* ===== SECTIONS ===== */
.section { padding: 48px 24px; max-width: 1400px; margin: 0 auto; }
.section-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.section-subtitle { color: var(--gray); margin-bottom: 28px; font-size: 15px; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.view-all { color: var(--orange); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 4px; }
.view-all:hover { text-decoration: underline; }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #2d2d44 50%, #1a3a5c 100%); color: white; padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge { display: inline-block; background: var(--orange); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--orange); color: white; border: none; padding: 15px 36px; border-radius: var(--radius); font-size: 16px; font-weight: 700; transition: all 0.2s; }
.btn-primary:hover { background: #e55a25; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.4); }
.btn-secondary { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); padding: 15px 36px; border-radius: var(--radius); font-size: 16px; font-weight: 700; transition: all 0.2s; }
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
.stat .num { font-size: 2rem; font-weight: 800; color: var(--orange); }
.stat .lbl { font-size: 13px; opacity: 0.7; margin-top: 2px; }

/* ===== TRUST BADGES ===== */
.trust-bar { background: var(--light); border-bottom: 1px solid var(--border); }
.trust-bar .inner { display: flex; justify-content: center; gap: 48px; padding: 16px 24px; max-width: 1400px; margin: 0 auto; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: #333; }
.trust-item .icon { font-size: 20px; }

/* ===== CATEGORIES GRID ===== */
.cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.cat-card { background: var(--light); border-radius: var(--radius); padding: 24px 16px; text-align: center; transition: all 0.2s; cursor: pointer; border: 2px solid transparent; }
.cat-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-hover); background: white; }
.cat-icon { font-size: 2.4rem; margin-bottom: 10px; }
.cat-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--gray); }

/* ===== PRODUCT GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.product-card { background: white; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: all 0.25s; position: relative; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: transparent; }
.product-img { aspect-ratio: 1; background: #f8fafc; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge { position: absolute; top: 10px; left: 10px; background: var(--orange); color: white; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 20px; z-index: 1; }
.product-badge.new { background: #28a745; }
.product-badge.trending { background: #6f42c1; }
.quick-add { position: absolute; bottom: 0; left: 0; right: 0; background: var(--navy); color: white; border: none; padding: 10px; font-size: 13px; font-weight: 600; opacity: 1; transition: background 0.2s; cursor: pointer; }
.quick-add:hover { background: var(--accent); }
.product-info { padding: 14px; }
.product-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); margin-bottom: 4px; }
.product-name { font-size: 14px; font-weight: 600; line-height: 1.35; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.stars { color: #ffc107; font-size: 13px; }
.review-count { font-size: 12px; color: var(--gray); }
.product-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price { font-size: 1.1rem; font-weight: 800; color: #333; }
.compare-price { font-size: 13px; color: var(--gray); text-decoration: line-through; }
.discount { font-size: 11px; background: #fff3cd; color: #856404; padding: 2px 6px; border-radius: 4px; font-weight: 600; }
.product-shipping { font-size: 11px; color: #28a745; margin-top: 6px; font-weight: 500; }

/* ===== FILTERS BAR ===== */
.filters-bar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.filter-select { padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; background: white; cursor: pointer; }
.filter-select:focus { outline: none; border-color: var(--orange); }
.filters-bar .total-count { color: var(--gray); font-size: 14px; margin-left: auto; }

/* ===== PRODUCT PAGE ===== */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.product-gallery { position: sticky; top: 80px; }
.main-img { aspect-ratio: 1; background: var(--light); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; cursor: zoom-in; }
.main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.main-img:hover img { transform: scale(1.08); }
.thumb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.thumb { aspect-ratio: 1; background: var(--light); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.thumb.active, .thumb:hover { border-color: var(--orange); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-details h1 { font-size: 1.6rem; font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.product-sku { font-size: 12px; color: var(--gray); margin-bottom: 16px; }
.product-rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.price-row .price { font-size: 2rem; font-weight: 900; color: #333; }
.price-row .compare { font-size: 1.1rem; text-decoration: line-through; color: var(--gray); }
.savings-badge { background: #fff3cd; color: #856404; padding: 4px 12px; border-radius: 20px; font-size: 13px; font-weight: 700; }
.stock-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.stock-badge.in-stock { background: #d4edda; color: #155724; }
.stock-badge.low-stock { background: #fff3cd; color: #856404; }
.product-desc { color: #555; line-height: 1.7; margin-bottom: 20px; font-size: 15px; }
.bullet-list { list-style: none; margin-bottom: 24px; }
.bullet-list li { padding: 6px 0; display: flex; gap: 8px; font-size: 14px; }
.bullet-list li::before { content: '✓'; color: #28a745; font-weight: 700; flex-shrink: 0; }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-control button { width: 38px; height: 42px; border: none; background: var(--light); font-size: 18px; font-weight: 600; transition: background 0.2s; }
.qty-control button:hover { background: var(--border); }
.qty-control input { width: 52px; height: 42px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 16px; font-weight: 600; }
.btn-add-cart { flex: 1; background: var(--navy); color: white; border: none; padding: 14px 28px; border-radius: var(--radius); font-size: 16px; font-weight: 700; transition: all 0.2s; }
.btn-add-cart:hover { background: #2d2d44; transform: translateY(-1px); }
.btn-buy-now { width: 100%; background: var(--orange); color: white; border: none; padding: 14px; border-radius: var(--radius); font-size: 16px; font-weight: 700; margin-bottom: 16px; transition: all 0.2s; }
.btn-buy-now:hover { background: #e55a25; transform: translateY(-2px); }
.product-guarantees { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.guarantee { background: var(--light); border-radius: var(--radius-sm); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; }
.guarantee .icon { font-size: 20px; }

/* ===== TABS ===== */
.tabs { border-bottom: 2px solid var(--border); display: flex; gap: 0; margin-bottom: 24px; }
.tab-btn { padding: 12px 24px; border: none; background: none; font-size: 15px; font-weight: 600; color: var(--gray); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
.tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== REVIEWS ===== */
.review-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.reviewer-name { font-weight: 700; font-size: 15px; }
.review-date { font-size: 12px; color: var(--gray); }
.verified-badge { font-size: 11px; color: #28a745; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.review-title { font-weight: 600; margin-bottom: 6px; }
.review-body { color: #555; font-size: 14px; line-height: 1.6; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 14px 24px; max-width: 1400px; margin: 0 auto; font-size: 13px; color: var(--gray); display: flex; gap: 8px; align-items: center; }
.breadcrumbs a { color: var(--gray); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs .sep { color: var(--border); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 60px 24px 40px; max-width: 1400px; margin: 0 auto; }
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; opacity: 0.7; margin-bottom: 20px; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; opacity: 0.7; transition: opacity 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 24px; max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 13px; opacity: 0.6; flex-wrap: wrap; gap: 12px; }
.payment-icons { display: flex; gap: 8px; align-items: center; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.page-btn { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: white; font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.page-btn:hover, .page-btn.active { background: var(--orange); color: white; border-color: var(--orange); }
.load-more-btn { display: block; margin: 32px auto 0; background: white; color: var(--navy); border: 2px solid var(--navy); padding: 13px 40px; border-radius: var(--radius); font-size: 15px; font-weight: 700; transition: all 0.2s; }
.load-more-btn:hover { background: var(--navy); color: white; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 30px; right: 30px; background: var(--navy); color: white; padding: 14px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 600; z-index: 9999; transform: translateY(100px); opacity: 0; transition: all 0.3s; max-width: 340px; box-shadow: 0 8px 30px rgba(0,0,0,0.25); display: flex; align-items: center; gap: 10px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid #28a745; }
.toast.error { border-left: 4px solid #dc3545; }

/* ===== BANNER ===== */
.promo-banner { background: linear-gradient(90deg, var(--orange), #ff8c42); color: white; text-align: center; padding: 10px 16px; font-size: 14px; font-weight: 600; }
.promo-banner a { color: white; text-decoration: underline; }

/* ===== NEWSLETTER ===== */
.newsletter { background: linear-gradient(135deg, var(--navy), #2d2d44); color: white; padding: 60px 24px; text-align: center; }
.newsletter h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.newsletter p { opacity: 0.8; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 14px 20px; border: none; border-radius: var(--radius) 0 0 var(--radius); font-size: 15px; }
.newsletter-form button { background: var(--orange); color: white; border: none; padding: 14px 28px; border-radius: 0 var(--radius) var(--radius) 0; font-size: 15px; font-weight: 700; }
.newsletter-form button:hover { background: #e55a25; }

/* ===== SKELETON LOADING ===== */
@keyframes shimmer { 0% { background-position: -468px 0; } 100% { background-position: 468px 0; } }
.skeleton { background: linear-gradient(to right, #f6f7f8 8%, #edeef1 18%, #f6f7f8 33%); background-size: 800px 104px; animation: shimmer 1.5s linear infinite; border-radius: var(--radius-sm); }

/* ===== PAGE HEADER ===== */
.page-header { background: var(--light); padding: 40px 24px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.page-header p { color: var(--gray); }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-img { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy), #2d2d44); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-content { padding: 20px; }
.blog-date { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.blog-title { font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.blog-excerpt { font-size: 14px; color: #555; line-height: 1.6; }
.blog-read-more { display: inline-block; margin-top: 14px; color: var(--orange); font-size: 14px; font-weight: 600; }

/* ===== ORDER TRACKING ===== */
.tracking-form { max-width: 500px; margin: 0 auto; text-align: center; }
.tracking-form input { width: 100%; padding: 14px 20px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 15px; margin-bottom: 12px; }
.tracking-form input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,53,0.15); }
.order-status-card { background: var(--light); border-radius: var(--radius); padding: 32px; margin-top: 32px; border: 1px solid var(--border); }
.status-steps { display: flex; justify-content: space-between; margin: 24px 0; position: relative; }
.status-steps::before { content: ''; position: absolute; top: 20px; left: 10%; right: 10%; height: 2px; background: var(--border); z-index: 0; }
.status-step { text-align: center; z-index: 1; flex: 1; }
.step-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; margin: 0 auto 8px; }
.status-step.done .step-icon { background: #28a745; color: white; }
.status-step.active .step-icon { background: var(--orange); color: white; }
.step-label { font-size: 12px; font-weight: 600; color: var(--gray); }

/* ===== ADMIN ===== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--navy); color: white; padding: 24px 0; flex-shrink: 0; }
.admin-sidebar .logo { padding: 0 20px 24px; font-size: 1.3rem; font-weight: 800; color: var(--orange); border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-nav { padding: 16px 0; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 20px; color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500; transition: all 0.2s; }
.admin-nav a:hover, .admin-nav a.active { color: white; background: rgba(255,107,53,0.2); border-right: 3px solid var(--orange); }
.admin-main { flex: 1; background: var(--light); padding: 32px; overflow-y: auto; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-header h1 { font-size: 1.6rem; font-weight: 800; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.stat-card .stat-value { font-size: 2rem; font-weight: 800; color: var(--navy); }
.stat-card .stat-label { font-size: 13px; color: var(--gray); margin-top: 4px; }
.stat-card .stat-icon { font-size: 2rem; margin-bottom: 12px; }
.admin-table-wrap { background: white; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.admin-table-wrap h2 { padding: 20px 24px; font-size: 1rem; font-weight: 700; border-bottom: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
table th { background: var(--light); padding: 12px 16px; text-align: left; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); }
table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: #fafafa; }
.status-pill { padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.status-pill.paid { background: #d4edda; color: #155724; }
.status-pill.pending { background: #fff3cd; color: #856404; }
.status-pill.shipped { background: #cce5ff; color: #004085; }
.status-pill.cancelled { background: #f8d7da; color: #721c24; }

/* ===== SUCCESS PAGE ===== */
.success-container { max-width: 600px; margin: 80px auto; padding: 0 24px; text-align: center; }
.success-icon { font-size: 5rem; margin-bottom: 24px; }
.success-container h1 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; color: #155724; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-top { flex-wrap: wrap; }
  .search-bar { order: 3; width: 100%; max-width: 100%; }
  .hero h1 { font-size: 2rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar .inner { gap: 20px; }
  .hero-stats { gap: 24px; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .cat-icon { font-size: 1.8rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .section { padding: 32px 16px; }
}
/* ===== PREMIUM TYPOGRAPHY ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --orange: #2563eb; --accent: #2563eb;
  --orange-dark: #E55A25;
  --orange-light: #FFF3ED;
  --navy: #0F172A;
  --navy-light: #1E293B;
  --blue: #3B82F6;
  --green: #10B981;
  --red: #EF4444;
  --gold: #F59E0B;
  --light: #F8FAFC;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --border: #E2E8F0;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

body { 
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; 
  color: #1E293B; 
  background: #FFFFFF; 
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .logo, .section-title {
  font-family: 'Inter', sans-serif;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.announcement-bar span { color: var(--orange); font-weight: 700; }

/* ===== CATEGORY SCROLL BAR ===== */
.category-scroll-bar {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.category-scroll-bar::-webkit-scrollbar { display: none; }
.cat-pill {
  flex-shrink: 0;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  transition: all 0.2s;
  text-decoration: none;
}
.cat-pill:hover, .cat-pill.active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: linear-gradient(180deg, rgba(15,23,42,0.96) 0%, rgba(30,41,59,0.92) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust-bar::-webkit-scrollbar { display: none; }
.trust-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  flex-shrink: 0;
}
.trust-item svg, .trust-item .icon { font-size: 16px; }

/* ===== PRODUCT CARD UPGRADES ===== */
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  background: white;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--orange);
}
.product-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card .badge.new { background: var(--green); }
.product-card .badge.hot { background: var(--orange); }
.product-card .wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.product-card .wishlist-btn:hover { background: var(--red); color: white; transform: scale(1.1); }
.product-card .quick-actions {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  background: none;
  padding: 0 12px 12px;
  opacity: 1;
  z-index: 2;
}
.quick-add-btn {
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  transition: background 0.2s;
}
.quick-add-btn:hover { background: var(--orange-dark); }

/* Rating stars */
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.stars .empty { color: var(--border); }

/* Price styling */
.price-current { 
  font-size: 1.25rem; 
  font-weight: 800; 
  color: var(--navy);
  font-family: 'Inter', sans-serif;
}
.price-compare { 
  font-size: 0.85rem; 
  color: var(--gray-light); 
  text-decoration: line-through; 
  margin-left: 6px;
}
.price-save {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 700;
  background: rgba(16,185,129,0.1);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A5F 50%, var(--navy-light) 100%);
  color: white;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero-title .accent { color: var(--orange); }
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: 24px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  font-family: 'Inter', sans-serif;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CATEGORY GRID ===== */
.categories-section { padding: 48px 24px; background: white; }
.section-header {
  max-width: 1400px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.section-subtitle {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 4px;
}
.view-all {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.view-all:hover { gap: 8px; }
.category-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.category-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.category-card:hover {
  background: var(--orange-light);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.category-icon { font-size: 2rem; margin-bottom: 8px; }
.category-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.category-count { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }

/* ===== DEALS BANNER ===== */
.deals-banner {
  background: linear-gradient(90deg, var(--orange) 0%, #FF8F65 100%);
  color: white;
  padding: 24px;
  border-radius: var(--radius-xl);
  margin: 0 auto 48px;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.deals-banner::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.deals-text h3 { font-size: 1.3rem; font-weight: 800; }
.deals-text p { opacity: 0.9; font-size: 0.9rem; }
.deals-cta {
  background: white;
  color: var(--orange);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 1;
}
.deals-cta:hover { transform: scale(1.05); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--navy);
  color: white;
  padding: 48px 24px;
  text-align: center;
}
.newsletter-inner {
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-inner h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.newsletter-inner p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.newsletter-form button {
  background: var(--orange);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
}

/* ===== FOOTER UPGRADES ===== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 16px;
}
.payment-icons {
  display: flex;
  gap: 8px;
}
.payment-icon {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ===== MOBILE MARKETPLACE UI ===== */
.mobile-utility-row { display: none; }
.mobile-bottom-nav { display: none; }
.mobile-value-strip { display: none; }
.desktop-only-section { display: block; }
@media (max-width: 768px) { .desktop-only-section { display: none !important; } }
.recent-view-panel { display: none; }
@media (max-width: 768px) {
  .recent-view-panel {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 1100;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -10px 40px rgba(15,23,42,0.15);
    max-height: 50vh;
    overflow-y: auto;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .recent-view-panel.open { display: block; }
  .recent-view-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 10px;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
  }
  .recent-view-header strong { font-size: 14px; color: #0f172a; }
  .recent-view-list { padding: 8px 12px; }
  .recent-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
  }
  .recent-item img { width: 52px; height: 52px; object-fit: cover; border-radius: 10px; flex-shrink: 0; background: #f8fafc; }
  .recent-info { flex: 1; min-width: 0; }
  .recent-name { font-size: 12px; color: #334155; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .recent-price { font-size: 13px; font-weight: 800; color: #0f172a; margin-top: 3px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .announcement-bar { display: none !important; }
  .mobile-utility-row {
    display: block;
    padding: 8px 10px 6px;
    background: #fff;
    border-bottom: 1px solid var(--border);
  }
  .mobile-rail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  .mobile-rail-header strong { font-size: 12px; color: #0f172a; }
  .mobile-rail-header a { font-size: 11px; color: #2563eb; font-weight: 700; }
  .mobile-product-rail {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-product-rail::-webkit-scrollbar { display: none; }
  .mobile-rail-card {
    flex: 0 0 115px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 2px 10px rgba(15,23,42,0.05);
  }
  .mobile-rail-card img {
    width: 100%;
    height: 88px;
    object-fit: cover;
    display: block;
    background: #f8fafc;
  }
  .mobile-rail-info { padding: 8px; }
  .mobile-rail-name {
    font-size: 10px;
    line-height: 1.25;
    color: #334155;
    min-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
  }
  .mobile-rail-price { font-size: 12px; font-weight: 800; color: #0f172a; }
  .mobile-bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -6px 20px rgba(15,23,42,0.08);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  }
  .mobile-value-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 4px 10px 6px;
    background: #fff;
  }
  .mobile-value-card {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 7px;
    min-width: 0;
    overflow: hidden;
  }
  .mobile-value-card strong { font-size: 10px; color: #0f172a; white-space: nowrap; }
  .mobile-value-card span { font-size: 9px; color: #64748b; white-space: nowrap; }
  .mobile-nav-item {
    background: none;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #475569;
    font: inherit;
    min-height: 48px;
  }
  .mobile-nav-item span { font-size: 18px; }
  .mobile-nav-item small { font-size: 10px; font-weight: 700; }
  .mobile-nav-item.active, .mobile-nav-item:hover { color: #2563eb; }
  body { padding-bottom: 72px; }
  .header-top {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'search cart';
    align-items: center;
    gap: 8px;
    padding: 10px 10px 8px;
  }
  .logo { display: none !important; }
  .logo { grid-area: logo; font-size: 1.35rem; }
  .search-bar { grid-area: search; max-width: 100%; }
  .header-actions { grid-area: cart; margin-left: 0; gap: 8px; }
  .header-actions a { display: none; }
  .cart-btn {
    padding: 10px 12px;
    min-width: 46px;
    justify-content: center;
    border-radius: 12px;
    font-size: 0;
    gap: 0;
  }
  .cart-btn::before { content: '🛒'; font-size: 18px; }
  .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    font-size: 11px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  }
  .header-actions { position: relative; }
  .nav { display: none; }
  .home-categories-section { display: none !important; }
  .category-grid { display: none !important; }
  .category-scroll-bar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 8px 10px;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(15,23,42,0.04);
    scroll-behavior: smooth;
  }
  .category-scroll-bar.scroll-hint::after {
    content: '→';
    position: sticky;
    right: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(37,99,235,0.25);
    animation: nudgeX 1s ease-in-out infinite;
  }
  .cat-pill {
    color: var(--navy);
    background: #f3f6fb;
    border-color: #e5ecf5;
    font-size: 12px;
    padding: 8px 14px;
  }
  .cat-pill:hover, .cat-pill.active {
    color: #fff;
    background: #2563eb;
    border-color: #2563eb;
  }
  .trust-bar { display: none !important; }
  .hero-section { padding: 16px 12px 10px; margin-bottom: 0; }
  .hero-title { font-size: 1.42rem; line-height: 1.04; margin-bottom: 8px; }
  .hero-subtitle { font-size: 0.82rem; margin-bottom: 12px; max-width: 32ch; }
  .hero-stats { display: none !important; }
  .hero-content > div[style*='display:flex'] { gap: 8px !important; }
  .hero-content > div[style*='display:flex'] a {
    flex: 1;
    justify-content: center;
    text-align: center;
    padding: 11px 8px !important;
    font-size: 12px !important;
  }
  .deals-banner { flex-direction: row; align-items: center; text-align: left; gap: 10px; padding: 10px; }
  .deals-text h3 { font-size: 0.95rem; }
  .deals-text p { font-size: 11px; }
  .deals-cta { width: auto; white-space: nowrap; padding: 10px 12px; }
  .home-ai-section, .home-blog-section, .home-trending-section, .home-new-section { display: none !important; }
  .newsletter, .newsletter-section { display: none !important; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-header { flex-direction: row; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
  .section-subtitle { display: none !important; }
}

/* ===== MOBILE OVERFLOW FIX ===== */
html { overflow-x: clip; max-width: 100vw; }
body { max-width: 100vw; }
@keyframes nudgeX {
  0%, 100% { transform: translateX(0); opacity: .85; }
  50% { transform: translateX(4px); opacity: 1; }
}

@media (max-width: 480px) {
  .logo { font-size: 1.25rem; }
  .search-bar input { padding: 12px 14px; font-size: 14px; }
  .search-bar button { padding: 12px 16px; }
  .hero { padding: 32px 14px 24px; }
  .hero h1 { font-size: 1.6rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-stat-num { font-size: 1.2rem; }
  .section, section[style*='padding:48px 24px'] { padding: 14px 10px !important; }
  .home-featured-section { padding-top: 4px !important; padding-bottom: 10px !important; }
  .category-scroll-bar { padding: 8px 10px; }
  .products-grid, .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .product-card {
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(15,23,42,0.06);
    overflow: hidden;
  }
  .product-img { aspect-ratio: 1 / 1; }
  .product-info { padding: 8px; }
  .product-cat { font-size: 9px; margin-bottom: 2px; }
  .product-name {
    font-size: 11.5px;
    line-height: 1.28;
    min-height: 30px;
    margin-bottom: 5px;
  }
  .product-price { font-size: 14px; }
  .product-meta, .product-desc, .product-rating { font-size: 10px; }
  .quick-add, .quick-add-btn {
    width: 100%;
    font-size: 11px;
    padding: 8px 6px;
    border-radius: 9px;
  }
  .section-header { margin-bottom: 14px; }
  .section-title { font-size: 1.2rem; }
  .section-subtitle { font-size: 13px; margin-bottom: 0; }
  .view-all { font-size: 12px; }
  .deals-banner { padding: 12px 10px; border-radius: 12px; margin-bottom: 0; }
  .deals-text h3 { font-size: 0.95rem; }
  .deals-text p { display: none; }
  .deals-cta { width: 100%; justify-content: center; padding: 10px 12px; }
  .view-all { align-self: auto; font-size: 11px; }
  .footer { margin-top: 20px; }
  .footer-grid { padding: 18px 12px 14px; gap: 16px; }
  .footer h4 { font-size: 13px; margin-bottom: 8px; }
  .footer a, .footer p { font-size: 11px; }
}
