:root {
  --navy: #24265C;
  --navy-2: #1B1D47;
  --orange: #FF6A3D;
  --orange-dark: #E5502A;
  --green: #0E3B2E;
  --blue-tile: #DCE6FA;
  --link-blue: #3355FF;
  --ink: #1A1A1A;
  --gray: #6B7280;
  --line: #E5E7EB;
  --lavender: #D6D9F5;
  --lavender-2: #B9BEEF;
  --font: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===================== Topbar ===================== */
.topbar { background: var(--navy); }
.topbar-inner {
  display: flex; align-items: center; gap: 28px;
  height: 68px;
}
.logo {
  font-weight: 800; font-size: 22px; letter-spacing: 0.02em;
  color: #fff; white-space: nowrap;
}
.logo .dot { color: var(--orange); }

.search {
  flex: 1; max-width: 620px;
  display: flex; align-items: center;
  background: #EFEFF3; border-radius: 6px;
  padding: 2px 4px 2px 16px;
}
.search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-family: var(--font); font-size: 14px; padding: 10px 0; color: var(--ink);
}
.search button {
  border: 0; background: transparent; color: var(--gray);
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; cursor: pointer;
}

.topbar-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; white-space: nowrap; }
.nav-link { color: #fff; font-size: 14px; font-weight: 600; }
.nav-link:hover { text-decoration: underline; }
.divider { width: 1px; height: 22px; background: rgba(255,255,255,0.3); }
.icon-btn { background: none; border: 0; color: #fff; cursor: pointer; display: flex; }
.btn-sell {
  background: #fff; color: var(--navy);
  font-weight: 700; font-size: 14px;
  padding: 9px 22px; border-radius: 999px;
}
.btn-sell:hover { background: #EFEFF3; }

/* Category icon nav */
.catnav-wrap { background: #fff; border-bottom: 1px solid var(--line); }
.catnav {
  display: flex; gap: 26px; overflow-x: auto;
  padding: 14px 32px; scrollbar-width: none;
}
.catnav::-webkit-scrollbar { display: none; }
.catnav-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  min-width: 56px; flex-shrink: 0;
}
.catnav-item:hover { color: var(--green); }
.cat-ico { font-size: 20px; }
.catnav-more { flex-direction: row; gap: 3px; color: var(--gray); font-weight: 600; }
.catnav-more span { font-size: 11px; }

/* ===================== Promo banner ===================== */
.promo-wrap { padding-top: 24px; }
.promo {
  position: relative;
  background: linear-gradient(120deg, var(--green), #145A44);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 40px 48px;
  overflow: hidden;
  min-height: 300px;
}
.promo-copy { position: relative; z-index: 2; max-width: 480px; }
.promo-eyebrow { color: rgba(255,255,255,0.7); font-weight: 700; letter-spacing: 0.08em; font-size: 12px; text-transform: uppercase; margin-bottom: 6px; }
.promo-title {
  color: #fff; font-weight: 800; font-size: 46px; line-height: 1.02;
  letter-spacing: -0.01em; margin-bottom: 22px;
}
.promo-title span { color: var(--orange); }

.coupons { display: flex; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.coupon {
  background: var(--orange); color: #fff; border-radius: 8px;
  padding: 10px 16px; display: flex; flex-direction: column; gap: 2px;
  border: 2px dashed rgba(255,255,255,0.6);
}
.coupon strong { font-size: 16px; font-weight: 800; }
.coupon span { font-size: 12px; font-weight: 600; }
.coupon code { font-family: var(--font); font-size: 10px; background: rgba(0,0,0,0.2); border-radius: 4px; padding: 2px 6px; margin-top: 4px; width: fit-content; }

.promo-fine { color: rgba(255,255,255,0.65); font-size: 11px; max-width: 420px; margin-bottom: 18px; }
.btn-learn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--navy); font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: 999px;
}
.btn-learn:hover { background: #EFEFF3; }

.promo-collage { position: relative; width: 420px; height: 260px; flex-shrink: 0; display: none; }
.promo-collage img {
  position: absolute; border-radius: 10px; object-fit: cover; box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.promo-collage img:nth-child(1) { width: 150px; height: 190px; top: 10px; left: 0; }
.promo-collage img:nth-child(2) { width: 150px; height: 190px; top: 40px; left: 160px; }
.promo-collage img:nth-child(3) { width: 130px; height: 110px; top: 0; left: 300px; }
.promo-collage img:nth-child(4) { width: 130px; height: 110px; top: 130px; left: 300px; }
.ribbon {
  position: absolute; top: 18px; right: -46px; background: var(--navy); color: #fff;
  font-size: 11px; font-weight: 700; padding: 6px 50px; transform: rotate(28deg);
}
@media (min-width: 980px) { .promo-collage { display: block; } }

/* ===================== Category tile rows ===================== */
.tiles-row {
  display: grid; gap: 16px; margin-top: 32px;
  grid-template-columns: repeat(3, 1fr);
}
.tiles-row-4 { grid-template-columns: repeat(4, 1fr); }
.tiles-row-3.promo-mid { grid-template-columns: repeat(3, 1fr); }

.tile {
  position: relative;
  background: var(--blue-tile);
  border-radius: 12px;
  padding: 20px 20px 0;
  overflow: hidden;
  display: block;
  min-height: 210px;
}
.tile-text { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.tile-text span:first-child { font-size: 12px; color: var(--gray); font-weight: 500; max-width: 65%; }
.see-more { font-size: 12px; color: var(--link-blue); font-weight: 600; white-space: nowrap; }
.tile h3 { font-size: 22px; font-weight: 800; margin: 4px 0 12px; }
.tile img { width: 100%; height: 130px; object-fit: cover; border-radius: 8px 8px 0 0; }

.tile-app {
  background: linear-gradient(135deg, #5B4FDB, #38C6C0);
  color: #fff; padding: 24px;
}
.tile-app-eyebrow { font-size: 12px; opacity: 0.85; margin-bottom: 6px; }
.tile-app h3 { font-size: 24px; font-weight: 800; margin-bottom: 16px; }
.store-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  background: rgba(0,0,0,0.55); color: #fff; font-size: 12px; font-weight: 600;
  padding: 8px 12px; border-radius: 6px; display: inline-flex; align-items: center; gap: 6px;
}
.qr-block { width: 70px; height: 70px; background: repeating-linear-gradient(45deg,#fff 0 4px,#0002 4px 8px); border-radius: 6px; margin-top: 16px; }

/* ===================== Lifestyle photo row ===================== */
.lifestyle-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.lifestyle-card { position: relative; border-radius: 12px; overflow: hidden; display: block; aspect-ratio: 3/4; background: #eee; }
.lifestyle-card img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-text { position: absolute; top: 16px; left: 16px; }
.lifestyle-text span { display: block; font-size: 12px; color: rgba(0,0,0,0.55); font-weight: 600; margin-bottom: 2px; }
.lifestyle-text h3 { font-size: 20px; font-weight: 800; color: var(--ink); }

/* ===================== Top brands ===================== */
.brands-section { margin-top: 52px; }
.section-title { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.brands-row { display: flex; align-items: center; gap: 28px; overflow-x: auto; padding-bottom: 4px; }
.brand-pill {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; flex-shrink: 0;
}
.brand-ico {
  width: 76px; height: 76px; border-radius: 50%; background: #F1F1F5;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.brand-next {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; cursor: pointer; font-size: 16px; flex-shrink: 0;
}

/* ===================== Product grids ===================== */
.products-section { margin-top: 52px; }
.section-head-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.section-head-row.small { margin-top: 36px; margin-bottom: 14px; }
.section-head-row.small h3 { font-size: 17px; font-weight: 700; }
.see-all { color: var(--link-blue); font-size: 13px; font-weight: 600; }
.favorite-icons { display: flex; gap: 10px; font-size: 22px; }

.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.product-grid-6 { grid-template-columns: repeat(6, 1fr); }

.product-card { display: block; }
.product-thumb { position: relative; border-radius: 10px; overflow: hidden; background: #F1F1F1; aspect-ratio: 1/1; margin-bottom: 8px; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.badge-sold {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: rgba(0,0,0,0.85); color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em; padding: 3px 7px; border-radius: 3px;
}
.p-title { font-size: 13px; color: var(--ink); line-height: 1.35; margin-bottom: 3px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.p-price { font-size: 13px; font-weight: 700; }
.strike { color: var(--gray); text-decoration: line-through; font-weight: 500; margin-right: 4px; }

/* ===================== Get the app ===================== */
.get-app {
  margin-top: 64px;
  background: linear-gradient(120deg, var(--lavender) 55%, var(--lavender-2) 55%);
  padding: 56px 0;
}
.get-app-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.get-app-copy h2 { font-size: 34px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.get-app-copy p { font-size: 16px; color: var(--navy); margin-bottom: 18px; }
.get-app-visual { display: flex; gap: 16px; }
.phone-card {
  background: #fff; border-radius: 12px; padding: 10px; width: 150px;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.25);
}
.phone-card img { width: 100%; height: 110px; object-fit: cover; border-radius: 8px; margin-bottom: 8px; }
.phone-card p { font-size: 11px; line-height: 1.3; }
.phone-card-b { margin-top: 28px; position: relative; }
.phone-price { position: absolute; bottom: 10px; right: 10px; background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }

/* ===================== Footer ===================== */
.site-footer { background: var(--navy); color: #fff; padding-top: 48px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr) 1.3fr; gap: 24px; padding-bottom: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.9); }
.footer-col a:hover { text-decoration: underline; }
.footer-col-wide { gap: 12px; }
.pay-icons, .social-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-icons span, .social-icons span {
  background: rgba(255,255,255,0.12); border-radius: 4px; padding: 4px 8px;
  font-size: 11px; font-weight: 600;
}
.social-icons span { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0; }

.footer-wordmark {
  text-align: center; font-weight: 800; font-size: 20px; letter-spacing: 0.04em;
  padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-wordmark .dot { color: var(--orange); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  background: #14152F; padding: 16px 32px; font-size: 11px; color: rgba(255,255,255,0.6);
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { text-decoration: underline; }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .tiles-row, .tiles-row-4, .lifestyle-row { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .product-grid-6 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-title { font-size: 34px; }
}
@media (max-width: 640px) {
  .topbar-inner { flex-wrap: wrap; height: auto; padding: 12px 0; }
  .search { order: 3; max-width: 100%; margin-top: 8px; }
  .nav-link { display: none; }
  .tiles-row, .tiles-row-4, .lifestyle-row { grid-template-columns: 1fr 1fr; }
  .product-grid, .product-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .promo { flex-direction: column; align-items: flex-start; }
}

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--orange); outline-offset: 2px;
}



/* Form Styles */
#contact {
    --c-navy: #24265C;
    --c-orange: #FF6A3D;
    --c-orange-dark: #E5502A;
    --c-blue-tile: #DCE6FA;
    --c-ink: #1A1A1A;
    --c-gray: #6B7280;
    --c-line: #E5E7EB;
    padding: 72px 0;
    background: #fff;
    font-family: 'Inter', sans-serif;
    color: var(--c-ink);
  }
  #contact .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  #contact .contact-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
  }
  #contact .contact-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--c-orange-dark); margin: 0 0 10px;
  }
  #contact h2 { font-size: 32px; font-weight: 800; margin: 0 0 14px; color: var(--c-navy); }
  #contact .contact-lead { font-size: 15px; color: var(--c-gray); max-width: 380px; margin: 0 0 30px; line-height: 1.6; }

  #contact .contact-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
  #contact .contact-points li { display: flex; flex-direction: column; gap: 2px; padding-left: 16px; border-left: 2px solid var(--c-orange); }
  #contact .contact-points strong { font-size: 14px; color: var(--c-navy); }
  #contact .contact-points span { font-size: 13px; color: var(--c-gray); }

  #contact .contact-form {
    background: var(--c-blue-tile);
    border-radius: 16px;
    padding: 32px;
  }
  #contact .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  #contact .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
  #contact .field label { font-size: 13px; font-weight: 700; color: var(--c-navy); }
  #contact .field .optional { font-weight: 400; color: var(--c-gray); }

  #contact .field input,
  #contact .field select,
  #contact .field textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 11px 13px;
    border-radius: 8px;
    border: 1px solid var(--c-line);
    background: #fff;
    outline: none;
    resize: vertical;
    transition: border-color .15s ease, box-shadow .15s ease;
  }
  #contact .field input:focus,
  #contact .field select:focus,
  #contact .field textarea:focus {
    border-color: var(--c-orange);
    box-shadow: 0 0 0 3px rgba(255, 106, 61, 0.16);
  }

  #contact .field input[type="file"] {
    padding: 9px 10px;
    background: #fff;
    cursor: pointer;
  }
  #contact .field input[type="file"]::file-selector-button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #fff;
    background: var(--c-navy);
    border: 0;
    border-radius: 6px;
    padding: 7px 12px;
    margin-right: 10px;
    cursor: pointer;
  }

  #contact .radio-field {
    border: 0;
    padding: 0;
    margin: 0 0 18px;
  }
  #contact .radio-field legend {
    font-size: 13px; font-weight: 700; color: var(--c-navy);
    padding: 0; margin: 0 0 8px;
  }
  #contact .radio-field .optional { font-weight: 400; color: var(--c-gray); }
  #contact .radio-options { display: flex; gap: 20px; flex-wrap: wrap; }
  #contact .radio-option {
    display: flex; align-items: center; gap: 7px;
    font-size: 14px; font-weight: 500; cursor: pointer;
  }
  #contact .radio-option input[type="radio"] {
    accent-color: var(--c-orange);
    width: 16px; height: 16px; cursor: pointer;
  }

  #contact .field-error { font-size: 12px; color: var(--c-orange-dark); min-height: 14px; }
  #contact .hp-field { position: absolute; left: -9999px; top: -9999px; }

  #contact .contact-submit {
    width: 100%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--c-navy); color: #fff;
    font-weight: 700; font-size: 15px;
    padding: 13px 22px; border: 0; border-radius: 999px; cursor: pointer;
    transition: background .15s ease;
  }
  #contact .contact-submit:hover { background: var(--c-orange-dark); }
  #contact .contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }

  #contact .form-status { margin-top: 14px; font-size: 13px; text-align: center; min-height: 18px; }
  #contact .form-status.success { color: #1F8A5F; }
  #contact .form-status.error { color: var(--c-orange-dark); }

  #contact a:focus-visible,
  #contact button:focus-visible,
  #contact input:focus-visible,
  #contact textarea:focus-visible {
    outline: 2px solid var(--c-orange); outline-offset: 2px;
  }

  @media (max-width: 860px) {
    #contact .contact-inner { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    #contact .form-row { grid-template-columns: 1fr; }
  }