/* ============================================================
   House Of Qacym — Weekend Gears
   ============================================================ */

:root {
  --bg:        #021523;
  --bg-2:      #041c2e;
  --panel:     #07253c;
  --panel-2:   #0c3049;
  --line:      #14405c;
  --text:      #eef4f9;
  --muted:     #90a6b7;
  --accent:    #a8d400;
  --accent-2:  #7fa300;
  --accent-dim: rgba(168, 212, 0, .14);
  --radius:    18px;
  --radius-sm: 11px;
  --maxw:      1200px;
  --ff: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ff-display: "Space Grotesk", var(--ff);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  font-family: var(--ff);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
  background: var(--accent);
  color: #04121d;
  box-shadow: 0 8px 26px rgba(168, 212, 0, .22);
}
.btn-accent:hover { background: #b6e300; box-shadow: 0 12px 32px rgba(168, 212, 0, .34); }
.btn-ghost {
  background: rgba(255, 255, 255, .05);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .1); }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.topbar {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12.5px;
  text-align: center;
  padding: 9px 20px;
}
.topbar strong { color: var(--accent); font-weight: 600; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(2, 21, 35, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-mark {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.logo-mark span { color: var(--accent); }
.logo-sub {
  font-size: 9.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.nav-links { display: flex; gap: 30px; font-size: 14px; color: var(--muted); }
.nav-links a { transition: color .16s ease; }
.nav-links a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 28px;
  background:
    radial-gradient(900px 460px at 78% 22%, rgba(168, 212, 0, .13), transparent 62%),
    radial-gradient(700px 420px at 8% 78%, rgba(168, 212, 0, .06), transparent 60%),
    linear-gradient(180deg, #052134 0%, var(--bg) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 62px 62px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent-dim);
  border: 1px solid rgba(168, 212, 0, .28);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.9s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 { font-size: clamp(2.35rem, 5.1vw, 4.05rem); }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p.lead {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 500px;
  margin: 22px 0 30px;
}
.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-note { color: var(--muted); font-size: 12.5px; margin-top: 15px; }
.hero-note b { color: var(--text); font-weight: 600; }

/* Right hero column: the photo with the delivery offer stacked beneath it,
   so the two columns end at a similar height instead of the copy running long. */
.hero-right { display: flex; flex-direction: column; gap: 14px; }

/* Flat upcountry delivery fee — a headline selling point, not fine print */
.delivery-flag {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: var(--accent-dim);
  border: 1px solid rgba(168, 212, 0, .34);
  border-radius: var(--radius-sm);
}
.delivery-flag .df-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(168, 212, 0, .16);
  border-radius: 10px;
  color: var(--accent);
}
.delivery-flag b {
  display: block;
  color: var(--accent);
  font-family: var(--ff-display);
  font-size: 15.5px;
  line-height: 1.3;
  margin-bottom: 3px;
}
.delivery-flag span { font-size: 12.8px; color: var(--muted); line-height: 1.5; }

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-stats .num {
  font-family: var(--ff-display);
  font-size: 25px;
  font-weight: 700;
  color: var(--accent);
}
.hero-stats .lbl {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 3px;
}

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .6);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.price-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(2, 21, 35, .84);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 18px;
}
.price-badge .p-lbl {
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.price-badge .p-val {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

/* ---------- Section furniture ---------- */
.section { padding: 68px 0; }

/* The gear section sits directly under the hero, so it does not need a full
   section's worth of padding on top — the hero already provides breathing room. */
#gear { padding-top: 34px; }

/* No width cap on the block: the headline is meant to sit on a single line
   on desktop. The paragraph gets its own cap so it stays readable. */
.section-head { margin-bottom: 32px; }
.section-head h2 { font-size: clamp(1.65rem, 3.05vw, 2.3rem); text-wrap: balance; }
.section-head p { color: var(--muted); margin: 12px 0 0; font-size: 15.5px; max-width: 780px; }
.kicker {
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ---------- Product + order split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 44px;
  align-items: start;
}

.showcase-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative;
}
.showcase-main img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.showcase-tag {
  position: absolute;
  top: 15px; left: 15px;
  background: rgba(2, 21, 35, .8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; margin-top: 11px; }
.thumb {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--panel);
  cursor: pointer;
  padding: 0;
  transition: border-color .16s ease, transform .16s ease;
}
.thumb img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.thumb:hover { transform: translateY(-2px); }
.thumb.is-active { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.thumb .t-name {
  font-size: 10px;
  color: var(--muted);
  padding: 6px 4px;
  text-align: center;
  letter-spacing: .04em;
}
.thumb.is-active .t-name { color: var(--accent); }

.uses { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 22px; }
.use {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 17px;
}
.use .ico {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--accent-dim);
  border-radius: 9px;
  margin-bottom: 11px;
  color: var(--accent);
}
.use h4 { margin: 0 0 4px; font-size: 14.5px; font-family: var(--ff-display); font-weight: 600; }
.use p { margin: 0; font-size: 12.8px; color: var(--muted); line-height: 1.55; }

.video-card {
  margin-top: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
}
.video-card video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* ---------- Order form ---------- */
.order-card {
  background: linear-gradient(170deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 27px;
  position: sticky;
  top: 88px;
}
.order-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 6px; }
.order-head h3 { font-size: 21px; }
.order-price { text-align: right; }
.order-price .amt {
  font-family: var(--ff-display);
  font-size: 25px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}
.order-price .per { font-size: 11px; color: var(--muted); }
.order-sub { color: var(--muted); font-size: 13.2px; margin: 0 0 20px; }

.pod-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--accent-dim);
  border: 1px solid rgba(168, 212, 0, .3);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 21px;
}
.pod-badge svg { flex-shrink: 0; color: var(--accent); }
.pod-badge b { color: var(--accent); font-size: 13.2px; display: block; }
.pod-badge span { color: var(--muted); font-size: 12.2px; }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12.2px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
  letter-spacing: .03em;
}
.field label .req { color: var(--accent); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(0, 0, 0, .35);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14.2px;
  font-family: var(--ff);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { resize: vertical; min-height: 66px; }
.field input::placeholder, .field textarea::placeholder { color: #5c7891; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(168, 212, 0, .12);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2390a6b7' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field select option { background: #0c3049; color: var(--text); }

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #ef5350; }
.err { display: none; color: #ef7a76; font-size: 11.8px; margin-top: 5px; }
.field.has-error .err { display: block; }

/* colour + size chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .3);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: all .16s ease;
  color: var(--muted);
}
.chip input:checked + span {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--text);
}
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(168, 212, 0, .2); }
.sw { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); }

.qty-row { display: flex; align-items: center; gap: 12px; }
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, .35);
}
.qty button {
  background: none;
  border: 0;
  color: var(--text);
  width: 38px;
  height: 42px;
  font-size: 18px;
  cursor: pointer;
  transition: background .15s ease;
}
.qty button:hover { background: rgba(255, 255, 255, .07); }
.qty input {
  width: 46px;
  text-align: center;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.totals {
  border-top: 1px dashed var(--line);
  margin-top: 18px;
  padding-top: 16px;
}
.total-line {
  display: flex;
  justify-content: space-between;
  font-size: 13.2px;
  color: var(--muted);
  margin-bottom: 8px;
}
.total-line.grand {
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  font-family: var(--ff-display);
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.total-line.grand span:last-child { color: var(--accent); }
.hp { position: absolute; left: -9999px; opacity: 0; }

.form-note { text-align: center; font-size: 11.8px; color: var(--muted); margin-top: 12px; }

.alert { border-radius: 10px; padding: 12px 14px; font-size: 13.2px; margin-bottom: 16px; display: none; }
.alert.error { display: block; background: rgba(239, 83, 80, .12); border: 1px solid rgba(239, 83, 80, .35); color: #ff9a96; }

/* success state */
.order-success { display: none; text-align: center; padding: 20px 4px; }
.order-success.show { display: block; }
.tick {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(168, 212, 0, .4);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.order-success h3 { font-size: 22px; margin-bottom: 10px; }
.order-success p { color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.ref-pill {
  display: inline-block;
  background: rgba(0, 0, 0, .4);
  border: 1px dashed var(--accent);
  color: var(--accent);
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: .1em;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 14px 0 18px;
  font-size: 17px;
}
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(0, 0, 0, .25);
  border-top-color: #04121d;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.is-loading .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item .ti { color: var(--accent); margin-bottom: 9px; display: flex; justify-content: center; }
.trust-item b { display: block; font-size: 13.8px; font-family: var(--ff-display); }
.trust-item span { font-size: 12px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: border-color .18s ease, transform .18s ease;
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.contact-card .ci {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 10px;
  margin-bottom: 14px;
}
.contact-card .cl {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.contact-card .cv { font-size: 16px; font-weight: 600; font-family: var(--ff-display); word-break: break-word; }
.contact-card .cn { font-size: 12.2px; color: var(--muted); margin-top: 5px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 30px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 22px; font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--accent); }
.copy { font-size: 12.2px; color: var(--muted); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 80;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.07); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { gap: 26px; }

  /* Lead with the product photo on phones so it lands on the first screen,
     then the headline and CTA, with the delivery offer after them.
     display:contents lets the two right-column children be ordered
     independently once everything collapses into a single column. */
  .hero-right { display: contents; }
  .hero-media { order: -2; }
  .hero-copy  { order: -1; }
  .delivery-flag { order: 0; }

  .order-card { position: static; }
  .hero { padding: 30px 0 22px; }
  .section { padding: 56px 0; }
  #gear { padding-top: 26px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .uses, .row-2 { grid-template-columns: 1fr; }
  .thumbs { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 22px; }
  .order-card { padding: 20px; }
  .nav-cta-text { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
