/* Vickyexpress — Main Stylesheet */
:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --accent: #f59e0b;
  --text: #111827;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --border: #e5e7eb;
  --card: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,.07);
  --radius: 14px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}
[data-theme="dark"] {
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --bg: #0f172a;
  --bg-alt: #1e293b;
  --border: #334155;
  --card: #1e293b;
  --shadow: 0 4px 24px rgba(0,0,0,.35);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; transition: background .3s, color .3s; }
img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
ul { list-style: none; }

/* ── UTILITIES ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-title { font-size: clamp(26px,4vw,38px); font-weight: 900; letter-spacing: -.5px; margin-bottom: 8px; }
.section-sub { color: var(--text-muted); font-size: 16px; margin-bottom: 48px; max-width: 600px; }
.badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(22,163,74,.1); color: var(--primary); border-radius: 100px; padding: 4px 14px; font-size: 13px; font-weight: 700; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.hidden { display: none !important; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 10px; font-size: 15px; font-weight: 700; border: none; transition: all .2s; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent); color: #1a1a1a; }
.btn-accent:hover { opacity: .9; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); }
.btn-danger { background: #ef4444; color: #fff; }
.btn-danger:hover { background: #dc2626; }

/* ── CARDS ── */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.card-body { padding: 20px; }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-title { font-size: 17px; font-weight: 800; margin-bottom: 6px; line-height: 1.3; }
.card-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.card-price { font-size: 22px; font-weight: 900; color: var(--primary); }

/* ── NAV ── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
.nav-inner { display: flex; align-items: center; height: 64px; gap: 32px; }
.nav-brand { font-size: 22px; font-weight: 900; color: var(--primary); letter-spacing: -.5px; }
.nav-links { display: flex; gap: 4px; align-items: center; flex: 1; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text-muted); transition: all .15s; }
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(22,163,74,.07); }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-cart { position: relative; }
.nav-cart-badge { position: absolute; top: -6px; right: -6px; background: var(--primary); color: #fff; border-radius: 50%; width: 18px; height: 18px; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.nav-mobile-btn { display: none; background: none; border: none; color: var(--text); font-size: 22px; }
.nav-mobile-menu { display: none; padding: 12px 20px; background: var(--bg); border-top: 1px solid var(--border); flex-direction: column; gap: 4px; }
.nav-mobile-menu.open { display: flex; }
.theme-toggle { background: none; border: 1.5px solid var(--border); border-radius: 8px; padding: 7px 10px; color: var(--text-muted); font-size: 16px; }

/* ── HERO ── */
.hero { padding: 90px 0 72px; background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%); position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; top:-100px; right:-100px; width:500px; height:500px; background: radial-gradient(circle, rgba(22,163,74,.08) 0%, transparent 70%); pointer-events:none; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: 13px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.hero-title { font-size: clamp(34px,5vw,58px); font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.hero-title span { color: var(--primary); }
.hero-sub { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.stat-num { font-size: 28px; font-weight: 900; color: var(--primary); }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.hero-image { position: relative; }
.hero-avatar { width: 100%; aspect-ratio: 4/5; border-radius: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.15); }
.hero-floating { position: absolute; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; box-shadow: 0 8px 24px rgba(0,0,0,.1); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.hero-floating.fl-1 { top: 24px; left: -20px; }
.hero-floating.fl-2 { bottom: 40px; right: -20px; }

/* ── PROFILE ── */
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.profile-avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid var(--primary); margin-bottom: 20px; }
.profile-name { font-size: 28px; font-weight: 900; }
.profile-role { color: var(--primary); font-weight: 700; margin-bottom: 12px; }
.skills-list { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-chip { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 100px; padding: 5px 14px; font-size: 13px; font-weight: 600; }
.focus-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.focus-icon { width: 36px; height: 36px; background: rgba(22,163,74,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }

/* ── SERVICES / PRODUCTS ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card .card-body { display: flex; flex-direction: column; gap: 12px; }
.product-meta { display: flex; align-items: center; justify-content: space-between; }
.category-badge { background: rgba(22,163,74,.08); color: var(--primary); border-radius: 6px; padding: 3px 10px; font-size: 12px; font-weight: 700; }
.stars { color: var(--accent); font-size: 14px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card .card-img { height: 200px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.post-content { line-height: 1.8; }
.post-content p { margin-bottom: 16px; }
.post-content h2,h3 { margin: 24px 0 12px; font-weight: 800; }
.comments-section { margin-top: 48px; }
.comment-card { background: var(--bg-alt); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.comment-name { font-weight: 800; font-size: 15px; }
.comment-date { font-size: 12px; color: var(--text-muted); }
.comment-form { background: var(--bg-alt); border-radius: 16px; padding: 28px; margin-top: 24px; }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.form-input { width: 100%; padding: 11px 14px; border: 2px solid var(--border); border-radius: 10px; font-size: 15px; background: var(--bg); color: var(--text); font-family: var(--font); transition: border .2s; }
.form-input:focus { outline: none; border-color: var(--primary); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.star-rating { display: flex; gap: 6px; font-size: 26px; cursor: pointer; }
.star-rating span { color: var(--border); transition: color .15s; }
.star-rating span.lit { color: var(--accent); }

/* ── CHAT ── */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 200; }
.chat-bubble { width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: #fff; border: none; font-size: 22px; box-shadow: 0 4px 20px rgba(22,163,74,.4); display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.chat-bubble:hover { transform: scale(1.1); }
.chat-window { position: absolute; bottom: 68px; right: 0; width: 340px; background: var(--card); border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 16px 50px rgba(0,0,0,.18); display: none; flex-direction: column; overflow: hidden; }
.chat-window.open { display: flex; }
.chat-header { background: var(--primary); color: #fff; padding: 14px 18px; font-weight: 800; display: flex; align-items: center; justify-content: space-between; }
.chat-messages { flex: 1; max-height: 280px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.msg { max-width: 80%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; }
.msg.user { align-self: flex-end; background: var(--primary); color: #fff; border-bottom-right-radius: 4px; }
.msg.support { align-self: flex-start; background: var(--bg-alt); border-bottom-left-radius: 4px; }
.chat-input-area { display: flex; padding: 12px; gap: 8px; border-top: 1px solid var(--border); }
.chat-input-area input { flex: 1; border: 1.5px solid var(--border); border-radius: 8px; padding: 9px 12px; font-size: 14px; background: var(--bg); color: var(--text); }
.chat-send { background: var(--primary); color: #fff; border: none; border-radius: 8px; padding: 9px 14px; font-weight: 700; }

/* ── RATINGS ── */
.ratings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.rating-card { padding: 22px; }
.rating-stars { font-size: 18px; color: var(--accent); margin-bottom: 10px; }
.rating-quote { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin-bottom: 14px; font-style: italic; }
.rating-author { display: flex; gap: 12px; align-items: center; }
.rating-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--primary); font-size: 16px; }
.rating-name { font-weight: 800; font-size: 14px; }
.rating-role { font-size: 12px; color: var(--text-muted); }

/* ── BOOKS ── */
.books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.book-cover { height: 300px; object-fit: cover; }
.book-badge { background: rgba(245,158,11,.12); color: #b45309; border-radius: 6px; padding: 2px 8px; font-size: 11px; font-weight: 800; display: inline-block; }

/* ── TEMPLATES ── */
.templates-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.template-plan { background: rgba(22,163,74,.08); color: var(--primary); border-radius: 6px; padding: 3px 10px; font-size: 12px; font-weight: 800; display: inline-block; margin-bottom: 10px; }

/* ── VIDEOS ── */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.video-thumb { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.video-thumb:hover img { transform: scale(1.04); }
.play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.35); transition: background .2s; }
.play-btn:hover { background: rgba(0,0,0,.5); }
.play-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.level-badge { background: rgba(22,163,74,.1); color: var(--primary); border-radius: 6px; padding: 3px 10px; font-size: 12px; font-weight: 700; }

/* ── TRIGGERS ── */
.triggers-bar { position: fixed; bottom: 24px; left: 24px; z-index: 200; display: flex; flex-direction: column; gap: 8px; }
.trigger-btn { background: var(--card); border: 1.5px solid var(--border); border-radius: 12px; padding: 10px 18px; font-size: 14px; font-weight: 700; color: var(--text); box-shadow: var(--shadow); transition: all .2s; }
.trigger-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateX(3px); }

/* ── NOTIFICATIONS / POPUP ── */
.notify-container { position: fixed; top: 20px; right: 20px; z-index: 1000; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.notify-toast { pointer-events: all; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 14px 18px; min-width: 280px; max-width: 360px; box-shadow: 0 8px 32px rgba(0,0,0,.15); display: flex; gap: 12px; align-items: flex-start; animation: toastIn .35s cubic-bezier(.175,.885,.32,1.1); }
.notify-toast.removing { animation: toastOut .25s ease forwards; }
.notify-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.notify-title { font-size: 14px; font-weight: 800; }
.notify-msg { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.notify-close { margin-left: auto; background: none; border: none; color: var(--text-muted); font-size: 16px; align-self: flex-start; }
@keyframes toastIn { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes toastOut { to { opacity:0; transform:translateX(40px); } }
.notify-toast.success { border-left: 3px solid #22c55e; }
.notify-toast.error { border-left: 3px solid #ef4444; }
.notify-toast.info { border-left: 3px solid #3b82f6; }
.notify-toast.warning { border-left: 3px solid #f59e0b; }

/* ── CART SIDEBAR ── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 300; display: none; }
.cart-overlay.open { display: block; }
.cart-sidebar { position: fixed; right: 0; top: 0; bottom: 0; width: 380px; background: var(--card); z-index: 301; display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,.15); transform: translateX(100%); transition: transform .3s; }
.cart-sidebar.open { transform: none; }
.cart-sidebar-header { padding: 20px 24px; border-bottom: 1px solid var(--border); font-size: 18px; font-weight: 900; display: flex; justify-content: space-between; align-items: center; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; gap: 14px; align-items: center; }
.cart-item-img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: 14px; }
.cart-item-price { color: var(--primary); font-weight: 800; font-size: 15px; }
.cart-remove { background: none; border: none; color: var(--text-muted); font-size: 18px; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-total { font-size: 20px; font-weight: 900; margin-bottom: 16px; display: flex; justify-content: space-between; }
.cart-empty { text-align: center; padding: 48px; color: var(--text-muted); font-size: 15px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: rgba(22,163,74,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.social-link { width: 44px; height: 44px; border-radius: 10px; background: var(--bg-alt); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: all .2s; }
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }

/* ── FOOTER ── */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-size: 22px; font-weight: 900; color: var(--primary); margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.footer-col h4 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px; color: var(--text-muted); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }

/* ── REPAIR SECTION ── */
.repair-tabs { display: flex; gap: 8px; margin-bottom: 32px; }
.repair-tab { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: 10px; padding: 10px 22px; font-size: 14px; font-weight: 700; transition: all .2s; }
.repair-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.repair-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.repair-item { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: 12px; padding: 18px; display: flex; align-items: flex-start; gap: 14px; }
.repair-icon { font-size: 28px; }

/* ── SUBSCRIPTION ── */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.plan-card { border-radius: var(--radius); padding: 32px; border: 2px solid var(--border); transition: all .2s; }
.plan-card.popular { border-color: var(--primary); background: linear-gradient(180deg, rgba(22,163,74,.04) 0%, transparent 100%); }
.plan-name { font-size: 18px; font-weight: 900; margin-bottom: 8px; }
.plan-price { font-size: 40px; font-weight: 900; color: var(--primary); line-height: 1; margin: 16px 0 8px; }
.plan-period { font-size: 14px; color: var(--text-muted); }
.plan-features { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-feature { display: flex; gap: 10px; align-items: center; font-size: 14px; }
.plan-feature .tick { color: var(--primary); font-weight: 800; }

/* ── PAGE HERO ── */
.page-hero { padding: 60px 0 40px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(28px,4vw,46px); font-weight: 900; margin-bottom: 8px; }
.page-hero p { color: var(--text-muted); max-width: 600px; }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--primary); }

/* ── LOADING ── */
.skeleton { background: linear-gradient(90deg, var(--border) 25%, var(--bg-alt) 50%, var(--border) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px; }
@keyframes shimmer { to { background-position: -200% 0; } }
.loader { display: flex; align-items: center; justify-content: center; padding: 60px; }
.spinner { width: 40px; height: 40px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 400; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--card); border-radius: 20px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 32px; position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--bg-alt); border: none; border-radius: 8px; width: 32px; height: 32px; font-size: 16px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); }

/* ── PRIVACY/TERMS ── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { margin: 32px 0 12px; font-size: 20px; font-weight: 800; }
.legal-content p { margin-bottom: 14px; color: var(--text-muted); line-height: 1.8; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .profile-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
  .section { padding: 48px 0; }
  .hero { padding: 48px 0; }
  .hero-stats { gap: 20px; }
  .cart-sidebar { width: 100%; }
  .triggers-bar { bottom: 88px; left: 12px; }
  .chat-window { width: 300px; }
}
