/* ===== ConventionRadio — Argos-inspired Design System ===== */
:root {
  --blue:       #375EA9;
  --blue-dark:  #08305F;
  --blue-light: #E7EFF7;
  --blue-mid:   #1d4a8a;
  --red:        #D42114;
  --red-dark:   #A50000;
  --red-light:  #FFEEED;

  --bg:         #f0f0f0;
  --surface:    #ffffff;
  --text:       #1a1a1a;
  --muted:      #555;
  --muted2:     #999;
  --border:     #ddd;
  --card-bg:    #ffffff;

  --radius:     4px;
  --radius-md:  8px;
  --shadow:     0 1px 4px rgba(0,0,0,.1);
  --shadow-md:  0 3px 12px rgba(0,0,0,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', Arial, sans-serif; background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ── TOP PROMO BAR ── */
.promo-topbar { background: var(--blue-dark); color: #fff; text-align: center; font-size: 12px; font-weight: 600; padding: 6px 16px; letter-spacing: .02em; }
.promo-topbar a { color: #ffd700; text-decoration: underline; }

/* ── HEADER ── */
.site-header { background: var(--blue); position: sticky; top: 0; z-index: 500; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
.header-main { max-width: 1280px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; gap: 16px; }
.logo { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -.5px; flex-shrink: 0; white-space: nowrap; }
.logo span { color: #ffd700; }
.header-search { flex: 1; max-width: 560px; display: flex; border-radius: var(--radius); overflow: hidden; border: 2px solid rgba(255,255,255,.3); transition: border-color .2s; }
.header-search:focus-within { border-color: #ffd700; }
.header-search input { flex: 1; border: none; padding: 10px 16px; font-size: 14px; font-family: inherit; outline: none; color: #1a1a1a; }
.header-search button { background: var(--red); border: none; color: #fff; padding: 10px 20px; font-size: 14px; font-weight: 700; transition: background .2s; }
.header-search button:hover { background: var(--red-dark); }
.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; flex-shrink: 0; }
.hdr-link { color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500; padding: 6px 10px; border-radius: var(--radius); transition: background .15s; display: flex; align-items: center; gap: 5px; }
.hdr-link:hover { background: rgba(255,255,255,.12); color: #fff; }
.hdr-basket { background: var(--red); color: #fff; padding: 8px 16px; border-radius: var(--radius); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 7px; position: relative; transition: background .2s; }
.hdr-basket:hover { background: var(--red-dark); }
.hdr-basket .cnt { background: #ffd700; color: #1a1a1a; font-size: 10px; font-weight: 900; min-width: 18px; height: 18px; border-radius: 50%; display: none; align-items: center; justify-content: center; }

/* ── CATEGORY NAV ── */
.cat-nav { background: var(--blue-dark); }
.cat-nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-link { color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500; padding: 10px 14px; white-space: nowrap; border-bottom: 3px solid transparent; transition: color .15s, border-color .15s; }
.cat-nav-link:hover { color: #fff; }
.cat-nav-link.active { color: #ffd700; border-bottom-color: #ffd700; }

/* ── BREADCRUMB ── */
.breadcrumb { background: #fff; border-bottom: 1px solid var(--border); }
.breadcrumb-inner { max-width: 1280px; margin: 0 auto; padding: 8px 20px; display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; }
.breadcrumb-inner a { color: var(--blue); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--muted2); }

/* ── TRUST BAR ── */
.trust-bar { background: #fff; border-bottom: 1px solid var(--border); }
.trust-bar-inner { max-width: 1280px; margin: 0 auto; padding: 9px 20px; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 8px; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--text); }
.trust-item svg { color: var(--blue); flex-shrink: 0; }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: var(--red); color: #fff; border: none; padding: 11px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 700; cursor: pointer; transition: background .18s; font-family: inherit; }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: transparent; color: var(--blue); border: 2px solid var(--blue); padding: 9px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 700; cursor: pointer; transition: all .18s; font-family: inherit; }
.btn-secondary:hover { background: var(--blue); color: #fff; }
.btn-lg { padding: 13px 28px; font-size: 15px; }

/* ── SECTION ── */
.section { max-width: 1280px; margin: 0 auto; padding: 32px 20px; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.section-title::after { content: ''; flex: 1; height: 2px; background: var(--border); }
.section-title a { font-size: 13px; font-weight: 600; color: var(--blue); white-space: nowrap; }
.section-title a:hover { text-decoration: underline; }

/* ── PRODUCT CARD ── */
.product-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-card-img { background: #f8f8f8; height: 190px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-card-img img { max-height: 160px; max-width: 90%; object-fit: contain; transition: transform .3s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-badge { position: absolute; top: 8px; left: 8px; z-index: 2; font-size: 10px; font-weight: 800; padding: 3px 7px; border-radius: 3px; letter-spacing: .04em; text-transform: uppercase; }
.badge-sale { background: var(--red); color: #fff; }
.badge-new  { background: var(--blue); color: #fff; }
.badge-top  { background: #f59e0b; color: #fff; }
.product-card-body { padding: 12px 14px 16px; flex: 1; display: flex; flex-direction: column; }
.product-card-brand { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: 4px; }
.product-card-name { font-size: 14px; font-weight: 600; line-height: 1.4; color: var(--text); margin-bottom: 6px; flex: 1; }
.product-card-name:hover { color: var(--blue); }
.product-card-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; font-size: 12px; color: var(--muted); }
.stars-filled { color: #f59e0b; letter-spacing: 1px; }
.product-card-price { margin-top: auto; }
.price-was { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.price-now { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800; color: var(--blue-dark); line-height: 1; }
.price-save { display: inline-block; font-size: 11px; font-weight: 700; background: var(--red-light); color: var(--red); padding: 2px 7px; border-radius: 3px; margin-top: 3px; }
.product-card-footer { padding: 0 14px 14px; display: flex; gap: 8px; }
.add-to-basket { flex: 1; background: var(--red); color: #fff; border: none; padding: 9px 12px; border-radius: var(--radius); font-size: 13px; font-weight: 700; cursor: pointer; transition: background .18s; font-family: inherit; }
.add-to-basket:hover { background: var(--red-dark); }
.wishlist-btn { background: transparent; border: 1px solid var(--border); padding: 9px 10px; border-radius: var(--radius); color: var(--muted); transition: all .18s; }
.wishlist-btn:hover { border-color: var(--blue); color: var(--blue); }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media(max-width:1100px){ .product-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:768px) { .product-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .product-grid { grid-template-columns: repeat(2,1fr); gap: 10px; } }

/* ── CATEGORY TILES ── */
.cat-tiles { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.cat-tile { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px 12px 14px; text-align: center; transition: border-color .2s, box-shadow .2s; cursor: pointer; text-decoration: none; display: block; }
.cat-tile:hover { border-color: var(--blue); box-shadow: 0 2px 10px rgba(55,94,169,.15); }
.cat-tile-icon { width: 48px; height: 48px; margin: 0 auto 10px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); }
.cat-tile-name { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.3; }
.cat-tile-count { font-size: 11px; color: var(--muted); margin-top: 2px; }
@media(max-width:900px){ .cat-tiles { grid-template-columns: repeat(3,1fr); } }
@media(max-width:500px){ .cat-tiles { grid-template-columns: repeat(2,1fr); } }

/* ── DEALS BANNER ── */
.deals-banner { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%); border-radius: var(--radius-md); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin: 24px 0; }
.deals-banner-text h2 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.deals-banner-text p { font-size: 14px; color: rgba(255,255,255,.7); }
.deals-banner-code { background: rgba(255,255,255,.1); border: 2px dashed rgba(255,255,255,.4); border-radius: var(--radius-md); padding: 12px 20px; text-align: center; }
.deals-banner-code .code-label { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.deals-banner-code .code-val { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 900; color: #ffd700; letter-spacing: .08em; }
.deals-copy-btn { background: #ffd700; color: #1a1a1a; border: none; padding: 7px 16px; border-radius: var(--radius); font-size: 12px; font-weight: 800; cursor: pointer; margin-top: 8px; transition: opacity .2s; display: block; width: 100%; font-family: inherit; }
.deals-copy-btn:hover { opacity: .85; }

/* ── SHOP LAYOUT WITH SIDEBAR ── */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: start; }
@media(max-width:768px){ .shop-layout { grid-template-columns: 1fr; } }

/* ── FILTER SIDEBAR ── */
.filter-sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; position: sticky; top: 80px; }
.filter-sidebar-title { background: var(--blue-dark); color: #fff; padding: 12px 16px; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.filter-group { border-bottom: 1px solid var(--border); padding: 14px 16px; }
.filter-group:last-child { border-bottom: none; }
.filter-group-title { font-size: 12.5px; font-weight: 700; color: var(--text); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 4px 0; cursor: pointer; font-size: 13px; color: var(--muted); }
.filter-option input[type=checkbox] { accent-color: var(--blue); width: 14px; height: 14px; flex-shrink: 0; }
.filter-option:hover { color: var(--text); }
.filter-option .count { margin-left: auto; font-size: 11px; color: var(--muted2); }
.price-range { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.price-range input { width: 80px; padding: 6px 8px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 12px; font-family: inherit; }
.filter-apply { width: 100%; background: var(--blue); color: #fff; border: none; padding: 9px; border-radius: var(--radius); font-size: 13px; font-weight: 700; cursor: pointer; margin-top: 10px; font-family: inherit; }
.filter-apply:hover { background: var(--blue-mid); }
.filter-mobile-btn { display: none; background: var(--blue); color: #fff; border: none; padding: 10px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; margin-bottom: 16px; }
@media(max-width:768px){ .filter-sidebar { display: none; position: fixed; inset: 0; z-index: 600; overflow-y: auto; border-radius: 0; top: 0; } .filter-sidebar.open { display: block; } .filter-mobile-btn { display: flex; align-items: center; gap: 8px; } }

/* ── SORT BAR ── */
.sort-bar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.sort-bar-left { font-size: 13px; color: var(--muted); }
.sort-bar-left strong { color: var(--text); }
.sort-select { border: 1px solid var(--border); border-radius: var(--radius); padding: 6px 10px; font-size: 13px; font-family: inherit; color: var(--text); background: #fff; cursor: pointer; }

/* ── PRODUCT DETAIL PAGE ── */
.pdp-wrap { max-width: 1280px; margin: 0 auto; padding: 24px 20px; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.pdp-img-main { background: #f8f8f8; border: 1px solid var(--border); border-radius: var(--radius-md); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 24px; }
.pdp-img-main img { max-height: 320px; object-fit: contain; }
.pdp-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: 8px; }
.pdp-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800; line-height: 1.2; margin-bottom: 10px; }
.pdp-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.pdp-price-block { margin-bottom: 20px; }
.pdp-price-was { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.pdp-price-now { font-family: 'Space Grotesk', sans-serif; font-size: 34px; font-weight: 900; color: var(--blue-dark); line-height: 1; }
.pdp-price-save { display: inline-block; background: var(--red-light); color: var(--red); font-size: 13px; font-weight: 700; padding: 3px 10px; border-radius: 3px; margin-top: 6px; }
.pdp-features { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 20px; background: var(--blue-light); border-radius: var(--radius-md); padding: 14px 16px; }
.pdp-feature { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; }
.pdp-feature svg { color: var(--blue); flex-shrink: 0; }
.pdp-add-btn { width: 100%; background: var(--red); color: #fff; border: none; padding: 14px; border-radius: var(--radius); font-size: 16px; font-weight: 800; cursor: pointer; font-family: inherit; transition: background .18s; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.pdp-add-btn:hover { background: var(--red-dark); }
.pdp-secondary-btn { width: 100%; background: #fff; color: var(--text); border: 2px solid var(--border); padding: 11px; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; transition: border-color .18s; }
.pdp-secondary-btn:hover { border-color: var(--blue); color: var(--blue); }
.pdp-trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 16px; }
.pdp-trust-item { text-align: center; font-size: 11.5px; color: var(--muted); }
.pdp-trust-item svg { color: var(--blue); display: block; margin: 0 auto 4px; }
@media(max-width:768px){ .pdp-grid { grid-template-columns: 1fr; } }

/* ── BLOG CARD ── */
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow .2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card-img { height: 180px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--blue); margin-bottom: 6px; }
.blog-card-title { font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--text); margin-bottom: 8px; flex: 1; }
.blog-card:hover .blog-card-title { color: var(--blue); }
.blog-card-excerpt { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.blog-card-meta { font-size: 11.5px; color: var(--muted2); display: flex; gap: 10px; margin-top: auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media(max-width:900px){ .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px){ .blog-grid { grid-template-columns: 1fr; } }

/* ── BUNDLE CARD ── */
.bundle-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); transition: box-shadow .2s; }
.bundle-card:hover { box-shadow: var(--shadow-md); }
.bundle-card-img { height: 200px; background: #f8f8f8; display: flex; align-items: center; justify-content: center; padding: 20px; }
.bundle-card-img img { max-height: 160px; object-fit: contain; }
.bundle-card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.bundle-badge { display: inline-block; background: var(--red); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 3px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .05em; }
.bundle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media(max-width:900px){ .bundle-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ── FOOTER ── */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,.75); margin-top: 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 44px 20px 28px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.footer-logo span { color: #ffd700; }
.footer-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.5); max-width: 220px; margin-bottom: 14px; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 6px; margin-bottom: 7px; }
.footer-contact svg { color: #ffd700; flex-shrink: 0; }
.footer-col h4 { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col a:hover { color: #ffd700; }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 14px 20px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; font-size: 11.5px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 6px; }
@media(max-width:900px){ .footer-inner { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px){ .footer-inner { grid-template-columns: 1fr; } }

/* ── MOBILE HEADER ── */
.hamburger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 4px; }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--blue-dark); z-index: 1000; flex-direction: column; padding: 24px 20px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav .close-btn { align-self: flex-end; background: none; border: none; color: #fff; cursor: pointer; margin-bottom: 20px; }
.mobile-nav a { color: rgba(255,255,255,.85); font-size: 17px; font-weight: 600; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: block; }
.mobile-nav a:hover { color: #ffd700; }
@media(max-width:768px){
  .header-actions { display: none; }
  .hamburger { display: flex; }
  .header-search { display: none; }
  .hdr-basket-mobile { display: flex !important; }
}
.hdr-basket-mobile { display: none; position: relative; color: #fff; padding: 6px; }
.hdr-basket-mobile .cnt { position: absolute; top: 0; right: 0; background: #ffd700; color: #1a1a1a; font-size: 9px; font-weight: 900; min-width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 40px 20px 80px; background: #fff; }
.legal-wrap h1 { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.legal-wrap .updated { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.legal-wrap h2 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; color: var(--blue-dark); }
.legal-wrap p, .legal-wrap li { font-size: 14px; line-height: 1.75; color: var(--text); }
.legal-wrap ul, .legal-wrap ol { padding-left: 20px; margin: 8px 0 16px; }
.legal-wrap a { color: var(--blue); text-decoration: underline; }

/* ── SKIP LINK ── */
.skip-link { position: absolute; top: -100px; left: 1rem; background: var(--blue); color: #fff; padding: .5rem 1rem; border-radius: 0 0 4px 4px; font-size: 14px; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 0; }

/* ── BASKET / CHECKOUT ── */
#cart-wrap { max-width: 1280px; margin: 0 auto; padding: 24px 20px; display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.cart-table { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.cart-table-head { background: var(--blue-light); display: grid; grid-template-columns: 1fr 100px 100px 40px; gap: 12px; padding: 10px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--blue-dark); }
.cart-summary-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; position: sticky; top: 80px; }
.cart-summary-box h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
/* Checkout layout */
.checkout-wrap { max-width: 1000px; margin: 0 auto; padding: 24px 20px 64px; display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.checkout-summary { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 20px; position: sticky; top: 80px; }
.form-name-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-city-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cart-item-row { display: grid; grid-template-columns: 1fr 100px 100px 40px; gap: 12px; align-items: center; padding: 14px 16px; border-bottom: 1px solid #eee; }
.cart-item-qty { width: 56px; padding: 6px; border: 1px solid #ddd; border-radius: 4px; font-size: 13px; text-align: center; }
@media(max-width:768px){
  #cart-wrap { grid-template-columns: 1fr; }
  .cart-summary-box { position: static; }
  .cart-table-head { display: none; }
  .cart-item-row { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 8px 12px; }
  .cart-item-row .cart-item-info { grid-column: 1; grid-row: 1; }
  .cart-item-row .cart-item-remove { grid-column: 2; grid-row: 1; }
  .cart-item-row .cart-item-price { grid-column: 1; grid-row: 2; font-size: 14px; }
  .cart-item-row .cart-item-qty-wrap { grid-column: 2; grid-row: 2; }
  .checkout-wrap { grid-template-columns: 1fr; padding: 16px 16px 48px; }
  .checkout-summary { position: static; order: -1; margin-bottom: 4px; }
  .form-name-grid { grid-template-columns: 1fr; }
  .form-city-grid { grid-template-columns: 1fr; }
}

/* ── WHY-US GRID ── */
.why-us-grid { display: grid !important; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media(max-width:900px) { .why-us-grid { grid-template-columns: repeat(2,1fr); gap: 20px; } }
@media(max-width:480px) { .why-us-grid { grid-template-columns: repeat(2,1fr); gap: 12px; } }

/* ── FORM ── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 14px; font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s; background: #fff; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
