/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --brand: #C8401A; --brand2: #1A2340; --gold: #E8A830;
  --bg: #FAF8F5; --white: #fff; --text: #1A2340; --muted: #6B7280;
  --border: #E5E0D8; --radius: 12px;
  --shadow: 0 2px 16px rgba(26,35,64,.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); font-size: 15px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header { background: var(--brand2); color: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.2); }
.header-inner { display: flex; align-items: center; gap: 14px; padding: 12px 20px; }
.logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; flex-shrink: 0; }
.logo span { color: var(--gold); }
.search-form { flex: 1; display: flex; max-width: 420px; }
.search-form input { flex: 1; padding: 9px 16px; border: none; border-radius: 25px 0 0 25px; font-size: 14px; font-family: 'DM Sans', sans-serif; outline: none; background: rgba(255,255,255,.12); color: #fff; }
.search-form input::placeholder { color: rgba(255,255,255,.55); }
.search-form input:focus { background: rgba(255,255,255,.2); }
.search-form button { background: var(--brand); border: none; padding: 9px 16px; border-radius: 0 25px 25px 0; cursor: pointer; font-size: 15px; color: #fff; flex-shrink: 0; }
.search-form button:hover { background: #E8612A; }
/* RIGHT SIDE ACTIONS */
.header-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-shrink: 0; }
.nav-icon { display: flex; flex-direction: column; align-items: center; gap: 1px; color: rgba(255,255,255,.8); text-decoration: none; padding: 6px 10px; border-radius: 8px; transition: all .2s; cursor: pointer; border: none; background: none; font-family: 'DM Sans', sans-serif; }
.nav-icon:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-icon-emoji { font-size: 17px; line-height: 1; }
.nav-icon-text { font-size: 10px; font-weight: 500; white-space: nowrap; }
.cart-icon { display: flex; align-items: center; gap: 8px; background: var(--brand); color: #fff; padding: 9px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; text-decoration: none; flex-shrink: 0; transition: all .2s; margin-left: 4px; }
.cart-icon:hover { background: #E8612A; transform: scale(1.02); }
.cart-badge { background: var(--gold); color: var(--brand2); min-width: 20px; height: 20px; border-radius: 10px; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.hamburger { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; margin-left: 6px; }
.main-nav { background: rgba(0,0,0,.25); border-top: 1px solid rgba(255,255,255,.08); }
.nav-links { display: flex; gap: 0; padding: 0 20px; overflow-x: auto; }
.nav-links a { color: rgba(255,255,255,.8); padding: 9px 14px; font-size: 13px; font-weight: 500; transition: all .2s; display: block; white-space: nowrap; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.nav-active { color: #fff; border-bottom-color: var(--gold); }

/* FLASH BAR */
.flash-bar { background: var(--brand2); color: #fff; padding: 8px 20px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.countdown { display: flex; align-items: center; gap: 4px; font-family: monospace; font-size: 15px; font-weight: 700; color: var(--gold); }

/* HERO */
.hero { background: linear-gradient(135deg, var(--brand2) 0%, #2D3A5C 60%); color: #fff; padding: 70px 20px; text-align: center; }
.hero-inner { max-width: 600px; margin: 0 auto; }
.hero-badge { background: rgba(232,168,48,.2); color: var(--gold); border: 1px solid rgba(232,168,48,.4); padding: 5px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; display: inline-block; margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; line-height: 1.15; margin-bottom: 14px; }
.hero h1 span { color: var(--gold); }
.hero p { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; justify-content: center; }
.stat { text-align: center; }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold); }
.stat span { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .8px; }

/* BUTTONS */
.btn-primary { background: var(--brand); color: #fff; border: none; padding: 12px 28px; border-radius: 25px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: transform .15s, opacity .15s; display: inline-block; }
.btn-primary:hover { opacity: .9; transform: scale(1.02); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); padding: 12px 28px; border-radius: 25px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; display: inline-block; transition: all .2s; }
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* SECTIONS */
.section { padding: 48px 0; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 24px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; }
.see-all { color: var(--brand); font-size: 13px; font-weight: 600; }
.see-all:hover { text-decoration: underline; }

/* CATEGORIES */
.cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 14px; }
.cat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 12px; text-align: center; cursor: pointer; transition: all .2s; display: block; }
.cat-card:hover { border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-icon { font-size: 30px; margin-bottom: 8px; }
.cat-name { font-size: 12px; font-weight: 500; color: var(--text); }

/* PROMO BANNER */
.promo-banner { background: linear-gradient(120deg, var(--brand) 0%, #E8612A 100%); border-radius: 16px; padding: 24px 28px; color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.promo-banner h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 4px; }
.promo-banner p { font-size: 13px; opacity: .85; }
.coupon-code { background: rgba(255,255,255,.2); border: 1.5px solid rgba(255,255,255,.5); color: #fff; padding: 8px 20px; border-radius: 25px; font-size: 15px; font-weight: 700; letter-spacing: 1.5px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .2s; }
.coupon-code:hover { background: rgba(255,255,255,.3); }

/* PRODUCT CARDS */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; transition: all .2s; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.badge { position: absolute; top: 10px; left: 10px; padding: 3px 9px; border-radius: 10px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; z-index: 1; }
.badge-new { background: var(--brand2); color: #fff; }
.badge-sale { background: var(--gold); color: var(--brand2); }
.wish-btn { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,.92); border: none; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: 15px; z-index: 1; transition: transform .15s; display: flex; align-items: center; justify-content: center; }
.wish-btn:hover { transform: scale(1.15); }
.product-img { width: 100%; height: 180px; overflow: hidden; background: #F3F0EB; display: flex; align-items: center; justify-content: center; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-info { padding: 12px 14px; }
.product-brand { font-size: 11px; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.product-name { font-size: 13px; font-weight: 500; line-height: 1.4; margin-bottom: 5px; color: var(--text); }
.product-name:hover { color: var(--brand); }
.stars { color: var(--gold); font-size: 11px; margin-bottom: 8px; }
.price-row { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 16px; font-weight: 700; color: var(--brand); }
.price-old { font-size: 12px; color: var(--muted); text-decoration: line-through; margin-left: 6px; }
.add-btn { background: var(--brand2); color: #fff; border: none; width: 32px; height: 32px; border-radius: 8px; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; font-family: 'DM Sans', sans-serif; }
.add-btn:hover { background: var(--brand); }

/* FEATURES STRIP */
.features-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.features-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.feature { display: flex; align-items: center; gap: 14px; }
.feature > span { font-size: 28px; }
.feature strong { display: block; font-size: 14px; font-weight: 600; }
.feature small { color: var(--muted); font-size: 12px; }

/* SHOP PAGE */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; padding: 36px 20px; }
.shop-sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; height: fit-content; }
.shop-sidebar h3 { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; color: var(--muted); }
.cat-list { list-style: none; }
.cat-list li { border-bottom: 1px solid var(--border); }
.cat-list a { display: block; padding: 9px 0; font-size: 14px; color: var(--text); transition: color .15s; }
.cat-list a:hover, .cat-list a.active { color: var(--brand); font-weight: 500; }
.price-inputs { display: flex; gap: 8px; align-items: center; }
.price-inputs input { flex: 1; padding: 8px 10px; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; width: 0; }
.quick-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-tag { background: var(--bg); border: 1px solid var(--border); padding: 5px 12px; border-radius: 20px; font-size: 12px; color: var(--text); cursor: pointer; transition: all .2s; }
.filter-tag:hover, .filter-tag.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.shop-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.result-count { font-size: 14px; color: var(--muted); }
.sort-select { border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: 13px; font-family: 'DM Sans', sans-serif; cursor: pointer; }
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin: 12px 0 8px; }
.empty-state p { color: var(--muted); }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.page-btn { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; transition: all .2s; }
.page-btn:hover, .page-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* CART */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; padding: 36px 20px; }
.cart-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; display: grid; grid-template-columns: 80px 1fr auto auto auto; align-items: center; gap: 16px; margin-bottom: 12px; }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.cart-item-name { font-weight: 500; font-size: 14px; margin-bottom: 4px; }
.cart-item-price { color: var(--brand); font-weight: 700; font-size: 15px; }
.cart-badge-inline { background: #FEE2E2; color: var(--brand); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; display: inline-block; margin-bottom: 4px; }
.cart-qty { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.cart-qty button { background: var(--bg); border: none; width: 32px; height: 32px; font-size: 16px; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background .15s; }
.cart-qty button:hover { background: var(--border); }
.cart-qty span { width: 32px; text-align: center; font-weight: 600; }
.cart-item-total { font-weight: 700; color: var(--brand2); min-width: 64px; text-align: right; }
.cart-remove { background: none; border: none; font-size: 18px; cursor: pointer; color: #EF4444; padding: 4px; transition: transform .15s; }
.cart-remove:hover { transform: scale(1.2); }
.cart-summary-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; height: fit-content; position: sticky; top: 80px; }
.cart-summary-box h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 16px; }
.summary-line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.summary-line:last-child { border: none; }
.summary-line.total { font-weight: 700; font-size: 17px; margin-top: 4px; }
.summary-line.discount { color: var(--brand); }

/* CHECKOUT */
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; padding: 36px 20px; align-items: start; }
.page-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; margin-bottom: 20px; }
.checkout-steps { display: flex; gap: 8px; margin-bottom: 28px; }
.step { flex: 1; text-align: center; padding: 8px; border-radius: 8px; font-size: 13px; font-weight: 500; background: var(--bg); border: 1px solid var(--border); color: var(--muted); }
.step.done { background: #E8F5E9; color: #2E7D32; border-color: #A5D6A7; }
.step.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.checkout-section { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.checkout-section h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.form-input, .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); outline: none; transition: border .2s; }
.form-input:focus, .form-group input:focus, .form-group select:focus { border-color: var(--brand); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.coupon-row { display: flex; gap: 10px; }
.coupon-row input { flex: 1; }

/* PAYMENT OPTIONS */
.payment-options { display: grid; gap: 10px; }
.pay-opt { border: 2px solid var(--border); border-radius: var(--radius); padding: 14px 16px; cursor: pointer; display: flex; align-items: center; gap: 14px; transition: all .2s; }
.pay-opt:has(input:checked) { border-color: var(--brand); background: #FFF5F2; }
.pay-logo { width: 64px; height: 36px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; letter-spacing: .5px; flex-shrink: 0; }
.stripe-logo { background: #635BFF; color: #fff; }
.razorpay-logo { background: #2D6BE4; color: #fff; font-size: 8px; }
.bkash-logo { background: #E2136E; color: #fff; }
.cod-logo { background: #059669; color: #fff; }
.pay-details { flex: 1; }
.pay-details strong { display: block; font-size: 14px; }
.pay-details small { color: var(--muted); font-size: 12px; }
.pay-opt input { margin-left: auto; accent-color: var(--brand); width: 18px; height: 18px; }
.payment-extra { margin-top: 12px; padding: 14px; background: var(--bg); border-radius: 10px; }
#stripe-card-element { padding: 12px; background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; }
.stripe-error { color: #EF4444; font-size: 13px; margin-top: 6px; }
.bkash-info { background: #FFF0F6; border: 1px solid #F9A8D4; border-radius: 8px; padding: 12px; font-size: 13px; line-height: 1.6; }

/* ORDER SUMMARY SIDEBAR */
.order-summary { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; position: sticky; top: 80px; }
.order-summary h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 16px; }
.summary-items { border-bottom: 1px solid var(--border); margin-bottom: 14px; padding-bottom: 14px; }
.summary-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.summary-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.summary-name { font-size: 13px; font-weight: 500; }
.summary-qty { font-size: 12px; color: var(--muted); }
.summary-price { margin-left: auto; font-size: 14px; font-weight: 600; white-space: nowrap; }
.summary-totals .summary-row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.summary-totals .summary-row:last-child { border: none; }
.summary-totals .total { font-weight: 700; font-size: 16px; }
.summary-totals .discount { color: var(--brand); }
.btn-place-order { background: linear-gradient(135deg, var(--brand) 0%, #E8612A 100%); color: #fff; border: none; padding: 15px; border-radius: 25px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; width: 100%; margin-top: 14px; transition: transform .15s; }
.btn-place-order:hover { transform: scale(1.01); }
.btn-place-order:disabled { opacity: .6; cursor: not-allowed; }
.secure-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 8px; }

/* AUTH */
.auth-wrap { min-height: calc(100vh - 120px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-box { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 36px; width: 100%; max-width: 440px; box-shadow: var(--shadow); }
.auth-logo { text-align: center; margin-bottom: 24px; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; }
.auth-logo span { color: var(--brand); }
.auth-tabs { display: flex; gap: 0; margin-bottom: 24px; background: var(--bg); border-radius: 10px; padding: 4px; }
.auth-tab { flex: 1; background: none; border: none; padding: 10px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; color: var(--muted); transition: all .2s; }
.auth-tab.active { background: var(--white); color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,.1); }

/* ALERTS */
.alert { padding: 12px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 14px; }
.alert-success { background: #D1FAE5; color: #065F46; }
.alert-danger  { background: #FEE2E2; color: #991B1B; }

/* TOAST */
.toast { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); background: var(--brand2); color: #fff; padding: 11px 24px; border-radius: 25px; font-size: 14px; font-weight: 500; z-index: 9999; display: none; white-space: nowrap; }

/* FOOTER */
footer { background: var(--brand2); color: rgba(255,255,255,.8); margin-top: 60px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 48px 20px; }
.footer-brand .logo { font-size: 24px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 240px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.payment-icons { display: flex; gap: 8px; }
.payment-icon { background: rgba(255,255,255,.1); padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; }

/* CHATBOT */
.chatbot-wrap { position: fixed; bottom: 20px; right: 20px; z-index: 9000; }
.chat-fab { width: 56px; height: 56px; background: var(--brand); border-radius: 50%; border: none; cursor: pointer; font-size: 24px; box-shadow: 0 4px 20px rgba(200,64,26,.4); transition: transform .2s; display: flex; align-items: center; justify-content: center; }
.chat-fab:hover { transform: scale(1.08); }
.chat-window { position: absolute; bottom: 68px; right: 0; width: 320px; background: var(--white); border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(0,0,0,.12); display: none; flex-direction: column; overflow: hidden; }
.chat-window.open { display: flex; }
.chat-head { background: var(--brand2); color: #fff; padding: 14px 16px; display: flex; align-items: center; gap: 10px; }
.chat-av { width: 36px; height: 36px; background: var(--brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.chat-head-info strong { display: block; font-size: 13px; }
.chat-head-info small { font-size: 11px; opacity: .7; }
.chat-close { margin-left: auto; background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; }
.chat-messages { height: 260px; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 82%; padding: 9px 13px; border-radius: 14px; font-size: 13px; line-height: 1.5; }
.chat-msg.bot { background: var(--bg); color: var(--text); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--brand); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-input { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--border); }
.chat-input input { flex: 1; border: 1px solid var(--border); border-radius: 20px; padding: 8px 14px; font-size: 13px; font-family: 'DM Sans', sans-serif; outline: none; }
.chat-input button { background: var(--brand); color: #fff; border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .checkout-layout, .cart-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 32px; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 600px) {
  .header-inner { flex-wrap: wrap; gap: 8px; }
  .search-form { order: 3; width: 100%; max-width: 100%; }
  .hamburger { display: block; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .nav-links { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-item { grid-template-columns: 60px 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}
