/* ===== Larry's Tool Deals — Global Styles ===== */
:root {
  --orange: #ff6a00;
  --orange-dark: #e85d00;
  --ink: #1a1a1a;
  --steel: #2b3440;
  --steel-light: #3a4553;
  --gray: #6b7280;
  --light: #f4f5f7;
  --line: #e3e6ea;
  --white: #ffffff;
  --green: #1a9c53;
  --red: #d13438;
  --yellow: #ffc61a;
  --shadow: 0 2px 10px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.15);
  --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background .15s, transform .05s;
}
.btn:hover { background: var(--orange-dark); }
.btn:active { transform: translateY(1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-ghost {
  background: var(--steel-light);
  color: #fff;
}
.btn-ghost:hover { background: var(--steel); }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ===== Top announcement bar ===== */
.announce {
  background: var(--steel);
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 7px 10px;
  letter-spacing: .3px;
}
.announce strong { color: var(--yellow); }

/* ===== Header ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-main {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  white-space: nowrap;
}
.logo .mark {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 8px;
  display: grid; place-items: center;
  color: #fff; font-size: 22px;
  box-shadow: var(--shadow);
}
.logo .mark svg { width: 24px; height: 24px; }
.logo span.brand-sub { color: var(--orange); }

.search-bar {
  flex: 1;
  display: flex;
  max-width: 560px;
}
.search-bar input {
  flex: 1;
  border: 2px solid var(--line);
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 11px 14px;
  font-size: 15px;
  outline: none;
}
.search-bar input:focus { border-color: var(--orange); }
.search-bar button {
  border: none;
  background: var(--orange);
  color: #fff;
  padding: 0 18px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 16px;
}
.search-bar button:hover { background: var(--orange-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}
.header-actions a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--steel);
}
.header-actions a:hover { color: var(--orange); }
.cart-link { position: relative; }
.cart-count {
  position: absolute;
  top: -8px; right: -12px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: grid; place-items: center;
  padding: 0 4px;
}

/* ===== Nav ===== */
.site-nav {
  background: var(--steel);
}
.site-nav .container {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.site-nav a {
  color: #cfd6df;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 16px;
  display: inline-block;
  transition: background .15s, color .15s;
}
.site-nav a:hover, .site-nav a.active {
  background: var(--steel-light);
  color: #fff;
}
.site-nav a.hot { color: var(--yellow); }

.nav-toggle { display: none; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(120deg, #232b36 0%, #2b3440 60%, #3a4553 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,106,0,.35), transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--orange); }
.hero p {
  font-size: 18px;
  color: #c8cfd8;
  margin-bottom: 26px;
  max-width: 520px;
}
.hero-badges {
  display: flex;
  gap: 26px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #dbe1e8; }
.hero-badge .ic { font-size: 22px; }
.hero-art {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.hero-art .deal-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 16px;
}
.hero-art .big-price { font-size: 54px; font-weight: 900; color: var(--yellow); }
.hero-art .old-price { text-decoration: line-through; color: #9aa4b0; font-size: 20px; }
.hero-art h3 { font-size: 22px; margin: 8px 0 4px; }

/* ===== Section headings ===== */
.section { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-head h2 {
  font-size: 30px;
}
.section-head .sub { color: var(--gray); font-size: 15px; }
.section-head a.more { color: var(--orange); font-weight: 700; font-size: 15px; }

/* ===== Category tiles ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 14px;
  text-align: center;
  transition: transform .12s, box-shadow .12s, border-color .12s;
}
.cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.cat-tile .emoji { font-size: 40px; }
.cat-tile h3 { font-size: 15px; margin-top: 10px; }
.cat-tile p { font-size: 12px; color: var(--gray); }

/* ===== Product grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .12s, box-shadow .12s;
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-thumb {
  height: 200px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 72px;
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 12px;
  overflow: hidden;
}
.product-thumb.has-img img {
  max-width: 100%;
  max-height: 176px; /* 200px box minus 12px padding top & bottom */
  object-fit: contain;
}
.product-model {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 6px;
}
.cond-badge { left: auto; right: 10px; }
.badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 5px;
  letter-spacing: .4px;
}
.badge.new { background: var(--green); }
.badge.top { background: var(--steel); }
.product-body { padding: 14px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.product-brand { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--orange); font-weight: 700; }
.product-title { display: block; font-size: 15px; font-weight: 600; margin: 4px 0 6px; min-height: 42px; color: var(--ink); }
a.product-title:hover { color: var(--orange); }
.product-thumb.has-img { cursor: pointer; }
.product-desc {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.stars { color: var(--yellow); letter-spacing: 1px; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; margin-top: auto; }
.product-price { font-size: 22px; font-weight: 900; color: var(--ink); }
.product-old { text-decoration: line-through; color: var(--gray); font-size: 14px; }
.product-save { font-size: 12px; color: var(--green); font-weight: 700; }
.product-card .btn { width: 100%; text-align: center; }
.stock-note { font-size: 12px; margin-bottom: 8px; font-weight: 600; }
.in-stock { color: var(--green); }
.low-stock { color: var(--orange); }

/* ===== Shop layout ===== */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0 60px;
}
.filters {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 150px;
}
.filters h3 { font-size: 18px; margin-bottom: 6px; }
.filter-group { border-top: 1px solid var(--line); padding: 16px 0; }
.filter-group:last-of-type { border-bottom: 1px solid var(--line); }
.filter-group h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--steel);
  margin-bottom: 12px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  padding: 4px 0;
  cursor: pointer;
  color: #333;
}
.filter-option input { width: 16px; height: 16px; accent-color: var(--orange); cursor: pointer; }
.cat-row { display: flex; align-items: center; }
.cat-row .cat-label { flex: 1; }
.cat-toggle {
  flex-shrink: 0;
  width: 20px; height: 26px;
  background: none; border: none; padding: 0;
  cursor: pointer; color: var(--gray);
  font-size: 11px; line-height: 1;
  transition: transform .15s;
}
.cat-toggle:hover { color: var(--orange); }
.cat-toggle.open { transform: rotate(90deg); }
.cat-toggle-spacer { flex-shrink: 0; width: 20px; }
.cat-check { width: 16px; height: 16px; accent-color: var(--orange); cursor: pointer; flex-shrink: 0; margin-right: 9px; }
.cat-name {
  flex: 1;
  display: flex;
  align-items: center;
  background: none; border: none; padding: 4px 0;
  font: inherit; color: #333; text-align: left; cursor: pointer;
}
.cat-name:hover { color: var(--orange); }
.cat-name .count { margin-left: auto; color: var(--gray); font-size: 12px; }
.subcat-wrap { margin-bottom: 2px; }
.filter-option.filter-sub { padding-left: 28px; font-size: 13px; color: #555; }
.filter-option.filter-sub .count { color: var(--gray); }
.filter-option .count { margin-left: auto; color: var(--gray); font-size: 12px; }
.price-range { display: flex; align-items: center; gap: 8px; }
.price-range input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px;
  font-size: 13px;
}
.filters .clear-all {
  background: none;
  border: none;
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  margin-top: 14px;
  padding: 0;
}

.shop-main .toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.toolbar .result-count { font-size: 14px; color: var(--gray); }
.toolbar .result-count strong { color: var(--ink); }
.toolbar select {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
}
.active-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.chip {
  background: #fff;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.chip:hover { background: var(--orange); color: #fff; }

.no-results {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 60px 20px;
  text-align: center;
  color: var(--gray);
}
.no-results .emoji { font-size: 52px; }

.filter-toggle-mobile { display: none; }

/* ===== Cart ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; padding: 34px 0 60px; align-items: start; }
.cart-items { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cart-row { display: grid; grid-template-columns: 80px 1fr auto auto auto; gap: 16px; align-items: center; padding: 18px; border-bottom: 1px solid var(--line); }
.cart-row:last-child { border-bottom: none; }
.cart-row .thumb { width: 80px; height: 80px; background: #fff; border: 1px solid var(--line); border-radius: 8px; display: grid; place-items: center; font-size: 38px; overflow: hidden; }
.cart-row .thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-row .info h4 { font-size: 15px; }
.cart-row .info .brand { font-size: 12px; color: var(--orange); font-weight: 700; text-transform: uppercase; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.qty-control button { border: none; background: var(--light); width: 32px; height: 34px; font-size: 18px; cursor: pointer; }
.qty-control button:hover { background: var(--line); }
.qty-control span { width: 36px; text-align: center; font-weight: 700; }
.cart-row .line-price { font-weight: 800; font-size: 16px; min-width: 70px; text-align: right; }
.cart-row .remove { background: none; border: none; color: var(--red); cursor: pointer; font-size: 20px; }
.cart-summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: sticky; top: 150px; }
.cart-summary h3 { margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 15px; }
.summary-row.total { border-top: 2px solid var(--line); margin-top: 10px; padding-top: 14px; font-size: 20px; font-weight: 900; }
.summary-row .free { color: var(--green); font-weight: 700; }
.cart-summary .btn { width: 100%; margin-top: 16px; }
.empty-cart { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 70px 20px; text-align: center; }
.empty-cart .emoji { font-size: 64px; }
.promo-input { display: flex; gap: 8px; margin-top: 14px; }
.promo-input input { flex: 1; border: 1px solid var(--line); border-radius: 8px; padding: 10px; font-size: 14px; }

/* ===== Product detail page ===== */
.breadcrumb-bar { font-size: 13px; color: var(--gray); padding: 20px 0 14px; }
.breadcrumb-bar a:hover { color: var(--orange); }
.breadcrumb-bar span { color: var(--ink); font-weight: 600; }
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 20px; align-items: start; }
.pdp-gallery {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  place-items: center;
  position: relative;
  min-height: 380px;
}
.pdp-gallery img { max-width: 100%; max-height: 420px; object-fit: contain; }
.pdp-info h1 { font-size: 28px; margin: 6px 0 8px; line-height: 1.2; }
.pdp-model { color: var(--gray); font-size: 14px; margin-bottom: 14px; }
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; margin: 14px 0; flex-wrap: wrap; }
.pdp-meta { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.pill { font-size: 13px; font-weight: 700; padding: 5px 12px; border-radius: 16px; }
.pill.in-stock { background: #e6f7ee; color: var(--green); }
.pill.low-stock { background: #fff2e6; color: var(--orange-dark); }
.pdp-desc { font-size: 16px; color: #333; margin-bottom: 22px; line-height: 1.6; }
.pdp-actions { display: flex; gap: 14px; align-items: center; margin-bottom: 26px; }
.pdp-actions .qty-control button { width: 40px; height: 44px; font-size: 20px; }
.pdp-actions .qty-control span { width: 44px; }
.pdp-actions .btn { flex: 1; font-size: 16px; padding: 13px; }
.pdp-specs {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.pdp-specs div {
  display: flex;
  justify-content: space-between;
  padding: 11px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.pdp-specs div:last-child { border-bottom: none; }
.pdp-specs div:nth-child(odd) { background: var(--light); }
.pdp-specs span { color: var(--gray); }
.pdp-assurance { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--steel); font-weight: 600; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 24px; } }

/* ===== Generic page content ===== */
.page-header {
  background: var(--steel);
  color: #fff;
  padding: 40px 0;
}
.page-header h1 { font-size: 34px; }
.page-header .breadcrumb { font-size: 13px; color: #aeb6c0; margin-top: 6px; }
.page-header .breadcrumb a:hover { color: var(--orange); }

.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}
.prose h2 { font-size: 24px; margin: 26px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 14px; color: #333; }
.prose ul { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 6px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 30px 0; }
.value-card { background: var(--light); border-radius: var(--radius); padding: 24px; text-align: center; }
.value-card .emoji { font-size: 40px; }
.value-card h3 { margin: 10px 0 6px; }
.value-card p { font-size: 14px; color: var(--gray); }

/* Contact form */
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); }
.form-success {
  background: #e6f7ee;
  border: 1px solid var(--green);
  color: #0e7a3e;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  display: none;
}

/* ===== Deals banner ===== */
.deals-banner {
  background: linear-gradient(90deg, var(--orange), #ff9248);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.deals-banner h2 { font-size: 28px; }
.deals-banner p { opacity: .95; }
.deals-banner .btn { background: #fff; color: var(--orange); }
.deals-banner .btn:hover { background: var(--ink); color: #fff; }

/* ===== Brand strip ===== */
.brand-strip { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 30px 0; }
.brand-strip span { font-weight: 900; font-size: 22px; color: var(--gray); opacity: .7; letter-spacing: 1px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--steel);
  color: #c8cfd8;
  padding: 50px 0 24px;
  margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
.footer-grid h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer-grid a { display: block; padding: 5px 0; font-size: 14px; }
.footer-grid a:hover { color: var(--orange); }
.footer-brand p { font-size: 14px; margin: 12px 0; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; background: var(--steel-light); border-radius: 8px; display: grid; place-items: center; font-size: 18px; }
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--steel-light);
  margin-top: 34px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #97a1ad;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  z-index: 200;
  transform: translateY(120px);
  opacity: 0;
  transition: transform .3s, opacity .3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .ic { color: var(--green); font-size: 20px; }

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .header-main { flex-wrap: wrap; }
  .search-bar { order: 3; max-width: none; width: 100%; }
  .site-nav .container { display: none; flex-direction: column; align-items: stretch; }
  .site-nav .container.open { display: flex; }
  .nav-toggle {
    display: block;
    background: var(--steel);
    color: #fff;
    border: none;
    width: 100%;
    text-align: left;
    padding: 12px 20px;
    font-weight: 700;
    cursor: pointer;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
  .filters.open { display: block; }
  .filter-toggle-mobile { display: inline-block; }
  .two-col, .form-row, .value-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .cart-row { grid-template-columns: 60px 1fr auto; grid-template-areas: "thumb info remove" "thumb qty price"; }
}
@media (max-width: 460px) {
  .product-grid { grid-template-columns: 1fr; }
}
