:root {
  --nav-dark: #131921;
  --nav-mid: #232f3e;
  --nav-hover: #485769;
  --orange: #ff9900;
  --orange-dark: #e88a00;
  --cta-yellow: #ffd814;
  --cta-yellow-hover: #f7ca00;
  --cta-orange: #ffa41c;
  --cta-orange-hover: #fa8900;
  --bg: #ffffff;
  --bg-grey: #eaeded;
  --bg-light: #f7f8f8;
  --text: #0f1111;
  --text-soft: #565959;
  --link: #007185;
  --link-hover: #c7511f;
  --border: #d5d9d9;
  --border-light: #e7e7e7;
  --price-red: #b12704;
  --star: #ffa41c;
  --shadow-sm: 0 1px 3px rgba(15,17,17,0.08);
  --shadow-md: 0 4px 12px rgba(15,17,17,0.10);
  --radius: 4px;
  --radius-pill: 999px;
  --maxw: 1500px;
  --font: 'Inter', 'Amazon Ember', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

/* ============ Top navigation (dark navy) ============ */
.amzn-topnav {
  background: var(--nav-dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  font-size: 14px;
}
.amzn-topnav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.amzn-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  padding: 8px 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  margin-right: 4px;
  white-space: nowrap;
}
.amzn-logo:hover { border-color: #fff; }
.amzn-logo .wordmark {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #fff;
}
.amzn-logo .tld {
  font-weight: 500;
  font-size: 13px;
  color: var(--orange);
  margin-left: 1px;
}

.amzn-loc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: #fff;
}
.amzn-loc:hover { border-color: #fff; }
.amzn-loc-pin { color: #fff; opacity: 0.85; font-size: 14px; line-height: 1; }
.amzn-loc-text { display: flex; flex-direction: column; line-height: 1.1; }
.amzn-loc-text .small { font-size: 12px; color: #ccc; font-weight: 400; }
.amzn-loc-text .big { font-size: 14px; color: #fff; font-weight: 700; }

.amzn-search {
  flex: 1;
  display: flex;
  align-items: stretch;
  height: 40px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 6px;
  min-width: 0;
}
.amzn-search:focus-within {
  outline: 3px solid var(--cta-orange);
  outline-offset: 0;
}
.amzn-search-cat {
  background: #f3f3f3;
  border: 0;
  border-right: 1px solid var(--border);
  padding: 0 8px;
  font-size: 12px;
  color: var(--text);
  cursor: pointer;
  max-width: 130px;
}
.amzn-search-input {
  flex: 1;
  border: 0;
  padding: 0 12px;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  min-width: 0;
}
.amzn-search-input:focus { outline: 0; }
.amzn-search-btn {
  background: var(--cta-orange);
  border: 0;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 120ms;
}
.amzn-search-btn:hover { background: var(--cta-orange-hover); }
.amzn-search-btn svg { width: 22px; height: 22px; }

.amzn-actions { display: flex; align-items: stretch; gap: 0; margin-left: 4px; }
.amzn-action {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  white-space: nowrap;
  color: #fff;
  line-height: 1.1;
}
.amzn-action:hover { border-color: #fff; }
.amzn-action .small { font-size: 12px; font-weight: 400; color: #ddd; }
.amzn-action .big { font-size: 14px; font-weight: 700; color: #fff; }
.amzn-action.cart { display: inline-flex; flex-direction: row; align-items: center; gap: 4px; }
.amzn-action.cart .cart-icon-wrap { position: relative; padding-top: 6px; }
.amzn-action.cart .cart-icon { width: 35px; height: 25px; color: #fff; }
.amzn-action.cart .cart-count {
  position: absolute;
  top: -2px;
  left: 16px;
  background: transparent;
  color: var(--cta-orange);
  font-weight: 700;
  font-size: 16px;
  min-width: 16px;
  text-align: center;
}
.amzn-action.cart .label { font-weight: 700; font-size: 14px; color: #fff; padding-bottom: 2px; }

/* ============ Sub-nav (slightly lighter navy) ============ */
.amzn-subnav {
  background: var(--nav-mid);
  color: #fff;
  font-size: 14px;
  position: sticky;
  top: 60px;
  z-index: 49;
}
.amzn-subnav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 8px;
  max-width: var(--maxw);
  margin: 0 auto;
  height: 39px;
  overflow-x: auto;
  scrollbar-width: none;
}
.amzn-subnav-inner::-webkit-scrollbar { display: none; }
.amzn-subnav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  font-size: 14px;
}
.amzn-subnav a:hover { border-color: #fff; }
.amzn-subnav a.menu {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.amzn-subnav a.menu .ic { font-weight: 400; }
.amzn-subnav .promo {
  margin-left: auto;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  padding: 8px 9px;
  white-space: nowrap;
}
.amzn-subnav .promo b { font-weight: 700; }

/* ============ Mobile overrides for nav ============ */
@media (max-width: 900px) {
  .amzn-topnav-inner { flex-wrap: wrap; padding: 6px 8px; gap: 4px; }
  .amzn-loc { display: none; }
  .amzn-action.account { display: none; }
  .amzn-search { order: 5; flex-basis: 100%; margin: 6px 0 2px; }
  .amzn-subnav { top: auto; position: static; }
}

/* ============ Hero rotating banner ============ */
.amzn-hero {
  position: relative;
  background: linear-gradient(180deg, var(--nav-mid) 0%, transparent 280px);
  padding: 0 0 12px;
  overflow: hidden;
}
.amzn-hero-slide {
  position: relative;
  height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
}
.amzn-hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(255,255,255,0.95) 100%);
}
.amzn-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.amzn-hero-card {
  background: #fff;
  border-radius: 4px;
  padding: 24px 28px;
  margin-top: 36px;
  max-width: 460px;
  box-shadow: var(--shadow-md);
}
.amzn-hero-card .eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--orange-dark);
}
.amzn-hero-card h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
}
.amzn-hero-card p { color: var(--text-soft); margin: 0 0 16px; font-size: 14.5px; }
.amzn-hero-card .cta {
  display: inline-block;
  background: var(--cta-yellow);
  color: var(--text);
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #fcd200;
  transition: background 120ms;
}
.amzn-hero-card .cta:hover { background: var(--cta-yellow-hover); }

/* Hero arrows */
.amzn-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 36px;
  height: 60px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--text);
}
.amzn-hero-nav.prev { left: 12px; }
.amzn-hero-nav.next { right: 12px; }
.amzn-hero-nav:hover { background: rgba(255,255,255,0.95); }

/* ============ Page layout ============ */
.amzn-page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 14px 80px;
}

/* ============ Tile shelves (overlap on hero) ============ */
.amzn-tile-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: -180px 0 24px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding: 0 14px;
}
@media (max-width: 1100px) { .amzn-tile-row { grid-template-columns: repeat(2, 1fr); margin-top: -100px; } }
@media (max-width: 600px)  { .amzn-tile-row { grid-template-columns: 1fr; margin-top: 14px; } }

.amzn-tile {
  background: #fff;
  border-radius: 4px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
}
.amzn-tile h3 { font-size: 19px; font-weight: 700; margin: 0 0 14px; color: var(--text); letter-spacing: -0.005em; }
.amzn-tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.amzn-tile-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text);
}
.amzn-tile-cell .tile-img {
  background: var(--bg-grey);
  background-size: cover;
  background-position: center;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
}
.amzn-tile-cta {
  display: inline-block;
  margin-top: 12px;
  color: var(--link);
  font-size: 13px;
}
.amzn-tile-cta:hover { color: var(--link-hover); text-decoration: underline; }

/* ============ Shelf (horizontal product row) ============ */
.amzn-shelf {
  background: #fff;
  border-radius: 4px;
  padding: 14px 16px 18px;
  margin: 16px 0;
  box-shadow: var(--shadow-sm);
}
.amzn-shelf-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 0 10px;
  gap: 16px;
}
.amzn-shelf-head h2 { font-size: 21px; font-weight: 700; margin: 0; letter-spacing: -0.005em; }
.amzn-shelf-head .more { color: var(--link); font-size: 13px; }
.amzn-shelf-head .more:hover { color: var(--link-hover); text-decoration: underline; }
.amzn-shelf-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(160px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.amzn-shelf-track::-webkit-scrollbar { height: 6px; }
.amzn-shelf-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
@media (min-width: 1200px) { .amzn-shelf-track { grid-auto-columns: minmax(180px, 1fr); } }

/* ============ Product card (compact) ============ */
.pcard {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  scroll-snap-align: start;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  transition: background 120ms;
}
.pcard:hover { background: rgba(0,113,133,0.04); }
.pcard .img {
  aspect-ratio: 1 / 1;
  background: var(--bg-grey);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 4px;
}
.pcard .title {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}
.pcard .title:hover { color: var(--link-hover); text-decoration: underline; }
.pcard .rating { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; }
.pcard .stars { color: var(--star); letter-spacing: -1px; font-size: 14px; }
.pcard .review-count { color: var(--link); }
.pcard .price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 2px;
}
.pcard .price {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.pcard .price .sym { font-size: 11px; vertical-align: super; }
.pcard .strike {
  font-size: 12px;
  color: var(--text-soft);
  text-decoration: line-through;
}
.pcard .badge-prime {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #00a8e1;
  margin-top: 2px;
}
.pcard .ship {
  font-size: 11.5px;
  color: var(--text-soft);
  margin-top: 2px;
}

/* ============ Shop page (filter sidebar + grid) ============ */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  margin: 16px 0;
}
@media (max-width: 800px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-aside { order: 2; }
}
.shop-aside {
  background: #fff;
  border-radius: 4px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  align-self: start;
  position: sticky;
  top: 110px;
}
.shop-aside h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}
.shop-aside .filter-block { margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border-light); }
.shop-aside .filter-block:last-child { border: 0; padding-bottom: 0; }
.shop-aside ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.shop-aside ul a {
  display: block;
  font-size: 13.5px;
  color: var(--link);
  padding: 2px 0;
}
.shop-aside ul a:hover { color: var(--link-hover); text-decoration: underline; }
.shop-aside ul a.active {
  color: var(--text);
  font-weight: 700;
}
.shop-aside .stars-row {
  font-size: 13px;
  color: var(--link);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
}
.shop-aside .stars-row .stars { color: var(--star); letter-spacing: -1px; font-size: 14px; }
.shop-aside .stars-row:hover { color: var(--link-hover); text-decoration: underline; }

.shop-main { min-width: 0; }
.shop-bar {
  background: #fff;
  border-radius: 4px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.shop-bar .hits { font-size: 13.5px; color: var(--text); }
.shop-bar .hits b { font-weight: 700; }
.shop-bar .sort {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.shop-bar select {
  font: inherit;
  font-size: 13px;
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-grey);
}

.amzn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  background: #fff;
  border-radius: 4px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.amzn-grid .pcard { padding: 8px; }
.amzn-grid .pcard .title { font-size: 14px; }
.amzn-grid .pcard .price { font-size: 20px; }

/* ============ Product detail ============ */
.product-detail {
  background: #fff;
  border-radius: 4px;
  padding: 22px 24px;
  margin: 18px 0;
  display: grid;
  grid-template-columns: 380px 1fr 320px;
  gap: 28px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 1000px) {
  .product-detail { grid-template-columns: 1fr; }
}
.pd-img-wrap {
  background: var(--bg-grey);
  border-radius: 4px;
  overflow: hidden;
}
.pd-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.pd-info h1 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.pd-info .by-brand { color: var(--link); font-size: 13.5px; margin-bottom: 8px; }
.pd-info .ratings-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border-light); margin-bottom: 8px; }
.pd-info .ratings-row .stars { color: var(--star); letter-spacing: -1px; font-size: 16px; }
.pd-info .ratings-row .review-count { color: var(--link); font-size: 13.5px; }
.pd-info .price-block { padding: 6px 0 12px; border-bottom: 1px solid var(--border-light); margin-bottom: 14px; }
.pd-info .price-row { display: flex; align-items: baseline; gap: 8px; }
.pd-info .price-row .price {
  font-size: 28px;
  font-weight: 500;
}
.pd-info .price-row .price .sym { font-size: 14px; vertical-align: super; }
.pd-info .price-row .strike { font-size: 14px; color: var(--text-soft); text-decoration: line-through; }
.pd-info .price-row .saving { color: var(--price-red); font-weight: 700; font-size: 14px; }
.pd-info .features { list-style: none; padding: 0; margin: 12px 0; }
.pd-info .features li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 13.5px;
  color: var(--text);
}
.pd-info .features li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 12px;
  width: 4px;
  height: 4px;
  background: var(--text);
  border-radius: 50%;
}
.pd-info .desc { font-size: 14px; color: var(--text); white-space: pre-line; margin: 12px 0; }

/* Buy box (right column) */
.buy-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: start;
}
.buy-box .price {
  font-size: 26px;
  font-weight: 500;
}
.buy-box .price .sym { font-size: 13px; vertical-align: super; }
.buy-box .ship-line { font-size: 12.5px; color: var(--text); }
.buy-box .ship-line b { color: #007600; font-weight: 700; }
.buy-box .stock { color: #007600; font-weight: 500; font-size: 16px; margin: 4px 0; }
.buy-box .qty-row { display: flex; align-items: center; gap: 8px; font-size: 13px; margin: 6px 0 4px; }
.buy-box .qty-row select {
  padding: 5px 6px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-grey);
  font: inherit;
  font-size: 13px;
}
.btn-add, .btn-buy {
  display: inline-block;
  width: 100%;
  text-align: center;
  border: 1px solid;
  border-radius: 100px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font: inherit;
}
.btn-add { background: var(--cta-yellow); border-color: #fcd200; color: var(--text); }
.btn-add:hover { background: var(--cta-yellow-hover); }
.btn-buy { background: var(--cta-orange); border-color: #ff8f00; color: var(--text); }
.btn-buy:hover { background: var(--cta-orange-hover); }
.buy-box .meta { font-size: 12px; color: var(--text-soft); padding: 4px 0; }
.buy-box .meta b { color: var(--text); font-weight: 500; }

/* ============ Cart page ============ */
.cart-page {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  margin: 16px 0;
}
@media (max-width: 900px) { .cart-page { grid-template-columns: 1fr; } }
.cart-list-card {
  background: #fff;
  border-radius: 4px;
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.cart-list-card h1 { font-size: 26px; font-weight: 500; margin: 0 0 10px; letter-spacing: -0.005em; }
.cart-list-card .head { display: flex; justify-content: space-between; padding-bottom: 8px; border-bottom: 1px solid var(--border-light); margin-bottom: 12px; }
.cart-list-card .head .price-h { font-size: 13.5px; color: var(--text-soft); }
.cart-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.cart-row:last-of-type { border: 0; }
.cart-row .img {
  width: 100px;
  height: 100px;
  background: var(--bg-grey);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.cart-row .name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--link);
}
.cart-row .name:hover { color: var(--link-hover); text-decoration: underline; }
.cart-row .stock { color: #007600; font-size: 12.5px; margin-bottom: 6px; }
.cart-row .controls { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; }
.cart-row .qty-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-grey);
  padding: 2px;
}
.cart-row .qty-pill button {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  font-size: 16px;
  border-radius: 100px;
}
.cart-row .qty-pill button:hover { background: var(--border); }
.cart-row .qty-pill .qty-val { padding: 0 6px; font-weight: 500; min-width: 20px; text-align: center; }
.cart-row .delete { color: var(--link); background: none; border: 0; padding: 0; }
.cart-row .delete:hover { color: var(--link-hover); text-decoration: underline; }
.cart-row .price { font-size: 18px; font-weight: 700; text-align: right; }

.cart-summary {
  background: #fff;
  border-radius: 4px;
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  align-self: start;
  position: sticky;
  top: 110px;
}
.cart-summary .sub { font-size: 18px; margin-bottom: 12px; }
.cart-summary .sub b { font-weight: 700; }
.cart-summary .free-ship { color: #007600; font-size: 13.5px; margin-bottom: 12px; }
.cart-summary .checkout-btn {
  width: 100%;
  background: var(--cta-yellow);
  border: 1px solid #fcd200;
  border-radius: 100px;
  padding: 9px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}
.cart-summary .checkout-btn:hover { background: var(--cta-yellow-hover); }

/* ============ Checkout ============ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 18px;
  margin: 16px 0;
}
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
.co-section {
  background: #fff;
  border-radius: 4px;
  padding: 16px 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.co-section h3 { font-size: 18px; font-weight: 700; margin: 0 0 12px; }

.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 4px; color: var(--text); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 9px 11px;
  font: inherit;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--text);
}
.form-row input:focus, .form-row select:focus { outline: 2px solid var(--cta-orange); outline-offset: -1px; border-color: var(--cta-orange); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }

.payment-methods { display: flex; flex-direction: column; gap: 8px; }
.paymethod {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  background: #fff;
}
.paymethod input[type="radio"] { margin: 3px 0 0; accent-color: var(--cta-orange); }
.paymethod:hover { border-color: var(--cta-orange); background: #fff8eb; }
.paymethod:has(input[type="radio"]:checked) { border-color: var(--cta-orange); background: #fff8eb; }
.paymethod-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.paymethod-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.paymethod-title { font-weight: 700; color: var(--text); font-size: 15px; }
.paymethod-desc { font-size: 12.5px; color: var(--text-soft); }
.paymethod-marks { display: flex; gap: 6px; flex-wrap: wrap; }
.cardmark {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  line-height: 1;
}
.cardmark.visa   { color: #1A1F71; border-color: #1A1F71; }
.cardmark.mc     { color: #EB001B; border-color: #EB001B; }
.cardmark.amex   { color: #2E77BB; border-color: #2E77BB; }
.cardmark.disc   { color: #FF6000; border-color: #FF6000; }
.cardmark.paypal { color: #003087; border-color: #003087; background: #ffc439; }

.co-summary {
  background: #fff;
  border-radius: 4px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  align-self: start;
  position: sticky;
  top: 110px;
}
.co-summary .row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 13.5px; }
.co-summary .row.total { border-top: 1px solid var(--border-light); padding-top: 10px; margin-top: 8px; font-size: 17px; font-weight: 700; color: var(--price-red); }
.co-summary .place-btn {
  width: 100%;
  margin-top: 12px;
  background: var(--cta-yellow);
  border: 1px solid #fcd200;
  border-radius: 100px;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}
.co-summary .place-btn:hover { background: var(--cta-yellow-hover); }

/* ============ Static text pages ============ */
.page-body {
  background: #fff;
  border-radius: 4px;
  padding: 32px 36px;
  margin: 16px 0;
  max-width: 920px;
  box-shadow: var(--shadow-sm);
}
.page-body h1 { font-size: 28px; font-weight: 500; margin: 0 0 16px; letter-spacing: -0.005em; }
.page-body h2 { font-size: 18px; font-weight: 700; margin: 24px 0 8px; }
.page-body p { color: var(--text); margin: 0 0 12px; line-height: 1.55; font-size: 14.5px; }
.page-body a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }
.page-body a:hover { color: var(--link-hover); }
.page-body ul { padding-left: 22px; }
.page-body li { margin: 4px 0; font-size: 14.5px; }

.empty {
  background: #fff;
  text-align: center;
  padding: 64px 24px;
  border-radius: 4px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}
.empty h2 { color: var(--text); font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.empty p { color: var(--text-soft); }
.empty .cta {
  display: inline-block;
  margin-top: 16px;
  background: var(--cta-yellow);
  border: 1px solid #fcd200;
  color: var(--text);
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 500;
}

/* ============ Footer ============ */
.amzn-back-top {
  background: var(--nav-mid);
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 13px;
  cursor: pointer;
}
.amzn-back-top:hover { background: var(--nav-hover); }

.amzn-footer-main {
  background: var(--nav-dark);
  color: #fff;
  padding: 36px 14px 24px;
}
.amzn-footer-cols {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid #3a4553;
}
@media (max-width: 700px) { .amzn-footer-cols { grid-template-columns: repeat(2, 1fr); } }
.amzn-footer-col h5 { font-size: 14px; font-weight: 700; margin: 0 0 10px; color: #fff; }
.amzn-footer-col ul { list-style: none; padding: 0; margin: 0; }
.amzn-footer-col li { margin: 6px 0; }
.amzn-footer-col a { color: #ddd; font-size: 12.5px; }
.amzn-footer-col a:hover { color: #fff; text-decoration: underline; }

.amzn-footer-brand {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 0 0;
  text-align: center;
  font-size: 13px;
  color: #ddd;
}
.amzn-footer-brand .wm {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  margin-bottom: 8px;
}
.amzn-footer-brand .wm .wordmark { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.amzn-footer-brand .wm .tld { color: var(--orange); font-size: 12px; }

.amzn-footer-bottom {
  background: #0f1111;
  color: #ddd;
  padding: 22px 14px;
  text-align: center;
  font-size: 12px;
}
.amzn-footer-bottom .links {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.amzn-footer-bottom a { color: #ddd; }
.amzn-footer-bottom a:hover { text-decoration: underline; }
.amzn-footer-bottom .copy { color: #999; }

/* ============ Helpers ============ */
.section-title-row {
  margin: 16px 0 6px;
  padding: 0 4px;
  font-size: 13px;
  color: var(--text);
  text-transform: none;
}
.no-results {
  background: #fff;
  border-radius: 4px;
  padding: 36px 22px;
  text-align: center;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}
