*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --navy:    #03375B;
  --navy-dk: #022a47;
  --navy-lt: #ddeaf5;
  --cream:   #faf8f4;
  --border:  #e2ddd5;
  --text:    #1a1a1a;
  --muted:   #6b7a87;
  --white:   #ffffff;
  --rad:     10px;
  --green:   #1a7f4e;
  --green-lt:#e8f5ed;
}
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body { background:var(--cream); color:var(--text); font-family:'DM Sans',sans-serif; font-size:16px; line-height:1.6; overflow-x:hidden; }
img { max-width:100%; display:block; }
a { color:inherit; }
h1,h2,h3,h4 { font-family:'Cabin',sans-serif; line-height:1.15; letter-spacing:-.02em; }
h1 { font-size:clamp(26px,5vw,42px); font-weight:700; }
h2 { font-size:clamp(20px,4vw,26px); font-weight:700; margin:0 0 14px; }
.wrap { max-width:1080px; margin:0 auto; padding:0 20px; }
@media(min-width:640px){ .wrap { padding:0 32px; } }
.btn { display:inline-block; font-family:'DM Sans',sans-serif; font-weight:600; font-size:14px; text-decoration:none; border-radius:6px; transition:all .18s; line-height:1; cursor:pointer; text-align:center; padding:10px 18px; border:none; }
.btn-white { background:white; color:var(--navy); border:2px solid white; }
.btn-white:hover { background:var(--navy-lt); border-color:var(--navy-lt); }
.btn-navy { background:var(--navy); color:white; border:2px solid var(--navy); }
.btn-navy:hover { background:var(--navy-dk); }
.btn-ebay { background:#f3ede3; color:var(--navy); border:2px solid var(--border); }
.btn-ebay:hover { background:#e9e0d0; }
.channel-badge { display:inline-flex; align-items:center; gap:5px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); background:var(--cream); border:1px solid var(--border); padding:4px 11px; border-radius:100px; }
.btn-lg { padding:15px 26px; font-size:16px; }
.btn-block { display:block; width:100%; }
.btn:disabled, .btn.is-disabled { background:var(--border); border-color:var(--border); color:var(--muted); cursor:not-allowed; }
.breadcrumb { background:var(--white); border-bottom:1px solid var(--border); padding:12px 20px; font-size:13px; color:var(--muted); }
@media(min-width:640px){ .breadcrumb { padding:12px 32px; } }
.breadcrumb a { color:var(--navy); text-decoration:none; }
.breadcrumb a:hover { text-decoration:underline; }
.breadcrumb span { margin:0 6px; }

.product-layout { max-width:1080px; margin:0 auto; padding:40px 20px 20px; display:grid; grid-template-columns:1fr; gap:40px; }
@media(min-width:768px){ .product-layout { grid-template-columns:1fr 1fr; padding:56px 32px 20px; align-items:start; } }

/* Gallery */
.gallery-main { border-radius:var(--rad); overflow:hidden; border:1px solid var(--border); background:var(--white); aspect-ratio:4/3; position:relative; }
.gallery-main img { width:100%; height:100%; object-fit:cover; }
.gallery-brand-badge { position:absolute; top:16px; left:16px; background:white; border-radius:10px; padding:8px 14px; box-shadow:0 2px 10px rgba(0,0,0,.14); }
.gallery-brand-badge img { max-height:26px; width:auto; object-fit:contain; }
.gallery-brand-badge .brand-fallback { font-family:'Cabin',sans-serif; font-size:14px; font-weight:700; color:var(--navy); white-space:nowrap; }
.gallery-sold-banner { position:absolute; inset:0; background:rgba(3,55,91,.55); display:flex; align-items:center; justify-content:center; }
.gallery-sold-banner span { background:white; color:var(--navy); font-family:'Cabin',sans-serif; font-weight:700; font-size:22px; text-transform:uppercase; letter-spacing:.1em; padding:12px 30px; border-radius:8px; transform:rotate(-6deg); box-shadow:0 4px 20px rgba(0,0,0,.25); }
.gallery-thumbs { display:flex; gap:10px; margin-top:10px; flex-wrap:wrap; }
.gallery-thumbs img { width:72px; height:72px; object-fit:cover; border-radius:8px; border:2px solid var(--border); cursor:pointer; transition:border-color .15s; }
.gallery-thumbs img:hover, .gallery-thumbs img.active { border-color:var(--navy); }

/* Info column */
.product-info-top { display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin-bottom:10px; }
.condition-badge { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; padding:4px 12px; border-radius:100px; }
.condition-excellent { background:var(--green-lt); color:var(--green); }
.condition-good { background:var(--navy-lt); color:var(--navy); }
.condition-fair { background:#f3ede3; color:#8a6d3b; }
.brand-tag-inline { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); }
.product-title { margin-bottom:8px; }
.product-short-desc { font-size:15.5px; color:var(--muted); font-weight:300; line-height:1.7; margin-bottom:22px; }

.price-box { background:var(--white); border:1px solid var(--border); border-radius:var(--rad); padding:22px; margin-bottom:22px; }
.price-row { display:flex; align-items:baseline; gap:12px; margin-bottom:4px; }
.price-now { font-size:32px; font-weight:700; color:var(--navy); font-family:'Cabin',sans-serif; }
.price-rrp { font-size:16px; color:var(--muted); text-decoration:line-through; }
.price-save { font-size:13px; color:var(--green); font-weight:600; margin-bottom:16px; }
.status-note { font-size:13px; color:var(--muted); margin-bottom:14px; }
.status-note.is-sold { color:var(--navy); font-weight:600; }

.trust-row { display:flex; flex-wrap:wrap; gap:14px; margin-top:18px; }
.trust-item { display:flex; align-items:center; gap:6px; font-size:12.5px; color:var(--muted); }

.spec-card { background:var(--white); border:1px solid var(--border); border-radius:var(--rad); padding:22px; margin-bottom:22px; }
.spec-table { width:100%; border-collapse:collapse; }
.spec-table tr { border-bottom:1px solid var(--border); }
.spec-table tr:last-child { border-bottom:none; }
.spec-table td { padding:10px 0; font-size:14.5px; vertical-align:top; }
.spec-table td:first-child { color:var(--muted); font-weight:500; width:44%; padding-right:12px; }
.spec-table td:last-child { color:var(--text); font-weight:500; }

.desc-card { background:var(--white); border:1px solid var(--border); border-radius:var(--rad); padding:22px; margin-bottom:22px; }
.desc-card p { font-size:15px; line-height:1.8; color:var(--text); }

.product-cta { background:var(--navy); padding:48px 20px; text-align:center; margin-top:20px; }
.product-cta h2 { color:white; font-size:clamp(22px,4vw,30px); margin:0 0 10px; }
.product-cta p { color:rgba(255,255,255,.6); font-size:15px; font-weight:300; margin-bottom:24px; }
.product-cta-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

footer {
  background: var(--navy);
  color: white;
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 44px;
}
@media(min-width:768px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  line-height: 1.7;
  max-width: 230px;
}
.footer-col-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.35);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: color .15s;
}
.footer-areas-block {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 8px;
  padding-top: 26px;
  margin-bottom: 26px;
}
.footer-nav-areas {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-nav-areas a {
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all .15s ease;
}
.footer-nav-areas a:hover {
  background: rgba(255,255,255,.14);
  color: white;
}
.footer-nav a:hover { color: white; }
.footer-nav a.footer-contact-highlight { color: white; font-weight: 600; font-size: 15px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; flex-direction: column; gap: 6px; }
@media(min-width:768px){ .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-end; } }
.footer-legal { font-size: 11px; color: rgba(255,255,255,.25); line-height: 1.8; max-width: 580px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.25); white-space: nowrap; }
.scroll-top { position: fixed; bottom: 20px; right: 20px; width: 44px; height: 44px; background: var(--navy); color: white; border: none; cursor: pointer; font-size: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 50; box-shadow: 0 2px 16px rgba(3,55,91,.35); }
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--navy-dk); }
