/* ==========================================================
   City Chain Malaysia – Wokiee-inspired Mobile Theme
   Match: https://citychain.com.my  (mobile viewport)
   ========================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --cc-font: Hind, sans-serif;
  --cc-black: #191919;
  --cc-white: #ffffff;
  --cc-bg: #f5f5f5;
  --cc-border: #e8e8e8;
  --cc-border-light: #efefef;
  --cc-text: #191919;
  --cc-text-muted: #777777;
  --cc-text-light: #999999;
  --cc-red: #e4002b;
  --cc-blue-new: #13a5ed;
  --cc-gold: #d4a853;
  --cc-green: #2e7d32;
  --cc-radius: 0;
  --cc-shadow-card: 0 1px 3px rgba(0,0,0,.06);
  --safe-top: env(safe-area-inset-top, 0px);
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #e8e8e8;
  color: var(--cc-text);
  font-family: var(--cc-font);
  font-size: 14px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--cc-black);
  outline-offset: 2px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1, h2, h3, p, fieldset {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ================================
   Mobile Shell
   ================================ */
.mobile-shell {
  width: min(100%, 425px);
  min-height: 100dvh;
  margin-inline: auto;
  overflow: clip;
  background: var(--cc-white);
}

/* ================================
   Announcement / Promo Bar
   ================================ */
.promo-bar {
  background: var(--cc-white);
  border-bottom: 1px solid var(--cc-border);
  padding: 14px 16px 16px;
  text-align: center;
}

.promo-bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.promo-title {
  font-family: Arial, sans-serif;
  max-width: 360px;
  font-size: 17px;
  font-weight: 800;
  color: var(--cc-black);
  line-height: 1.2;
  text-transform: uppercase;
  text-wrap: balance;
}

.promo-sub {
  font-family: Arial, sans-serif;
  max-width: 360px;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--cc-black);
  line-height: 1.35;
  text-transform: uppercase;
  text-wrap: balance;
}

.promo-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
}

.promo-cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  padding: 6px 8px;
  background: #f8f8f8;
  border-radius: 5px;
}

.promo-cd-item strong {
  font-size: 28px;
  font-weight: 600;
  color: var(--cc-black);
  line-height: 1.1;
}

.promo-cd-item span {
  font-size: 11px;
  font-weight: 500;
  color: var(--cc-black);
}

.promo-cd-sep {
  font-size: 24px;
  font-weight: 600;
  color: var(--cc-black);
  padding-bottom: 14px;
}

/* ================================
   Sticky Header
   ================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 90px;
  align-items: center;
  min-height: 56px;
  padding: max(6px, var(--safe-top)) 12px 6px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--cc-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.menu-button,
.header-actions button {
  border: 0;
  background: transparent;
  color: var(--cc-black);
  padding: 0;
}

.menu-button {
  display: inline-grid;
  grid-template-columns: 22px auto;
  gap: 6px;
  align-items: center;
  justify-self: start;
  min-height: 40px;
  font-size: 0;
}

.menu-button span {
  position: relative;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.menu-button span::before,
.menu-button span::after {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-button span::before { top: -7px; }
.menu-button span::after { bottom: -7px; }

.brand {
  display: grid;
  justify-items: center;
  align-items: center;
}

.brand img {
  width: 130px;
  height: auto;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
}

.header-actions button {
  display: grid;
  width: 36px;
  height: 40px;
  place-items: center;
}

.header-actions svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.cart-button {
  position: relative;
}

.cart-button span {
  position: absolute;
  top: 4px;
  right: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 999px;
  background: var(--cc-black);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

/* ================================
   Hero Slideshow
   ================================ */
.hero-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.slideshow-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1938 / 812;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.slideshow-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  padding: 0;
  cursor: pointer;
  transition: all .3s ease;
}

.dot.active {
  width: 20px;
  background: var(--cc-white);
}

/* ================================
   Trust Strip
   ================================ */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--cc-white);
  border-bottom: 1px solid var(--cc-border);
}

.trust-strip span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 52px;
  padding: 8px 4px;
  color: var(--cc-text-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid var(--cc-border-light);
}

.trust-strip span:last-child {
  border-right: 0;
}

.trust-strip svg {
  width: 18px;
  height: 18px;
  color: var(--cc-text-muted);
}

/* ================================
   Countdown Section
   ================================ */
.countdown-section {
  display: grid;
  gap: 12px;
  padding: 20px 16px 22px;
  background: var(--cc-white);
  border-bottom: 1px solid var(--cc-border);
  text-align: center;
}

.cd-label {
  color: var(--cc-black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 320px;
  margin: 0 auto;
}

.countdown div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 64px;
  background: #f8f8f8;
  border-radius: 5px;
}

.countdown strong {
  color: var(--cc-black);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
}

.countdown span {
  color: var(--cc-black);
  font-size: 11px;
  font-weight: 500;
}

/* ================================
   Brand Tabs / Filter
   ================================ */
.brand-tabs {
  position: sticky;
  top: 56px;
  z-index: 20;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 11px 12px;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--cc-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  scrollbar-width: none;
}

.brand-tabs::-webkit-scrollbar {
  display: none;
}

.brand-tabs button {
  flex: 0 0 auto;
  display: grid;
  min-width: 92px;
  min-height: 48px;
  padding: 0 13px;
  place-items: center;
  border: 1px solid #ddd;
  border-radius: 0;
  background: var(--cc-white);
  color: var(--cc-black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: all .2s;
}

.brand-tabs button.is-active {
  border-color: var(--cc-black);
  background: var(--cc-black);
  color: var(--cc-white);
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  white-space: nowrap;
}

.brand-wordmark--all {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-wordmark--seiko {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
}

.brand-wordmark--gshock {
  font-family: Arial Black, Arial, sans-serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-wordmark--tissot {
  position: relative;
  flex-direction: row;
  gap: 4px;
  font-family: Arial Black, Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
}

.brand-wordmark--tissot::before {
  content: "+";
  display: inline-grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 1px;
  background: #d31928;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.brand-wordmark--tissot > span {
  display: none;
}

.brand-wordmark--longines {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.brand-wordmark--omega {
  gap: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.brand-wordmark--omega > span {
  color: #b00020;
  font-size: 18px;
  line-height: 1;
}

.brand-logo {
  display: inline-grid;
  width: 74px;
  height: 34px;
  place-items: center;
}

.brand-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-tabs button.is-active:has(.brand-logo) {
  border-color: var(--cc-black);
  background: var(--cc-white);
  color: var(--cc-black);
  box-shadow: inset 0 0 0 1px var(--cc-black);
}

.brand-logo--seiko img {
  max-height: 34px;
}

.brand-logo--gshock img {
  max-height: 34px;
}

.brand-logo--tissot img {
  max-height: 32px;
}

.brand-logo--longines img {
  width: 76px;
  max-width: 76px;
  max-height: 20px;
}

/* ================================
   Collection Section
   ================================ */
.collection {
  padding: 0 0 20px;
  background: var(--cc-white);
}

.section-heading {
  display: grid;
  gap: 4px;
  padding: 20px 16px 14px;
}

.section-heading h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--cc-black);
  letter-spacing: -.01em;
  line-height: 1.3;
}

.section-heading span {
  color: var(--cc-text-muted);
  font-size: 13px;
}

/* ================================
   Product Grid
   ================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 8px;
  padding: 16px 10px 24px;
  background: var(--cc-white);
  border-top: 0;
}

/* ================================
   Brand Divider
   ================================ */
.brand-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px 8px;
  background: var(--cc-white);
}

.brand-divider:first-child {
  padding-top: 8px;
}

.brand-divider p {
  color: var(--cc-black);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.brand-divider span {
  color: var(--cc-text-light);
  font-size: 12px;
  font-weight: 500;
}

/* ================================
   Product Card — Wokiee style
   ================================ */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cc-white);
  min-height: 388px;
  transition: opacity .2s;
}

.product-card[hidden] {
  display: none;
}

.product-card.is-sold-out .product-image img {
  opacity: .46;
  filter: grayscale(.35);
}

/* Badges */
.product-badges {
  position: absolute;
  top: 9px;
  left: 8px;
  z-index: 2;
  display: flex;
  gap: 3px;
}

.new-badge,
.sale-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 2px 6px;
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.new-badge {
  background: var(--cc-blue-new);
}

.sale-badge {
  background: #ff3042;
}

/* Wishlist */
.wish-button {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  display: none;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #bbb;
  transition: color .2s;
}

.wish-button:hover {
  color: var(--cc-red);
}

.wish-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* Product image */
.product-image {
  display: grid;
  place-items: center;
  height: 204px;
  min-height: 204px;
  padding: 14px 6px 4px;
  background: var(--cc-white);
}

.product-image img {
  width: auto;
  height: auto;
  max-width: 178px;
  max-height: 184px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-image[data-fit="tall"] img {
  max-width: 148px;
  max-height: 188px;
}

.product-image[data-fit="wide"] img {
  max-width: 184px;
  max-height: 160px;
}

.product-image[data-fit="balanced"] img {
  max-width: 170px;
  max-height: 176px;
}

.product-image[data-fit="placeholder"] img {
  max-width: 92px;
  max-height: 92px;
  opacity: .24;
}

/* Product copy */
.product-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-height: 174px;
  padding: 4px 4px 14px;
  text-align: center;
}

.product-brand {
  color: #999;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.product-copy h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--cc-text);
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-wrap: balance;
}

.product-copy p,
.stock-note {
  display: none;
}

/* Price */
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 24px;
  margin-top: 0;
}

.price-row span {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.price-row strong {
  color: var(--cc-red);
  font-size: 16px;
  font-weight: 500;
}

.price-row s {
  color: var(--cc-text);
  font-size: 15px;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.info-button {
  display: none;
}

/* Order / Add-to-cart button */
.order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(100%, 150px);
  min-height: 43px;
  margin-top: 7px;
  padding: 0 12px;
  border: 0;
  border-radius: 5px;
  background: var(--cc-black);
  color: var(--cc-white);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .2s;
}

.order-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.order-button:hover {
  background: #333;
  color: var(--cc-white);
}

.order-button:disabled {
  background: #777;
  color: #fff;
  cursor: not-allowed;
  opacity: .75;
}

/* Promo card (inline banners in grid) */
.promo-card {
  position: relative;
  grid-column: 1 / -1;
  min-height: 180px;
  overflow: hidden;
  background: #f0ede6;
}

.promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.promo-card div {
  position: absolute;
  inset: auto 14px 14px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

.promo-card p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.promo-card h3 {
  font-size: 22px;
  line-height: 1.1;
  max-width: 260px;
}

/* ================================
   Footer — Wokiee style
   ================================ */
.site-footer {
  display: grid;
  gap: 0;
  background: var(--cc-white);
  color: var(--cc-black);
  border-top: 1px solid var(--cc-border);
}

.footer-signup {
  display: grid;
  gap: 12px;
  padding: 22px 16px;
  border-bottom: 1px solid var(--cc-border);
}

.footer-signup h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-signup form {
  display: grid;
  grid-template-columns: 1fr 96px;
  min-height: 42px;
  border: 1px solid var(--cc-black);
}

.footer-signup input {
  min-width: 0;
  border: 0;
  padding: 0 12px;
  color: var(--cc-black);
  font-size: 13px;
  outline: 0;
}

.footer-signup button {
  border: 0;
  background: var(--cc-black);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Footer accordion */
.footer-links {
  border-bottom: 1px solid var(--cc-border);
}

.footer-accordion {
  border-bottom: 1px solid var(--cc-border);
}

.footer-accordion:last-child {
  border-bottom: 0;
}

.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  text-align: left;
}

.accordion-toggle h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cc-black);
}

.accordion-toggle svg {
  width: 12px;
  height: 12px;
  color: var(--cc-text-muted);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.accordion-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 16px 14px;
}

.accordion-body.is-open {
  display: grid;
  gap: 8px;
}

.accordion-body a {
  color: var(--cc-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.payment-icons img {
  width: auto;
  max-width: 80px;
  height: 20px;
  object-fit: contain;
}

/* Social links */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 18px 16px 0;
}

.footer-social a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--cc-text-muted);
  transition: color .2s;
}

.footer-social a:hover {
  color: var(--cc-black);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-brand {
  display: grid;
  justify-content: center;
  padding: 16px 16px 6px;
}

.footer-brand img {
  width: 140px;
  height: auto;
}

.footer-copy {
  padding: 0 16px 24px;
  color: var(--cc-text-light);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

/* ================================
   Order Dialog
   ================================ */
.order-dialog {
  width: min(100%, 425px);
  max-width: 425px;
  max-height: min(92dvh, 900px);
  margin: auto;
  padding: 0;
  overflow: hidden auto;
  border: 0;
  border-radius: 16px 16px 0 0;
  background: #fff;
  color: #202020;
}

.order-dialog::backdrop {
  background: rgba(0,0,0,.55);
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 22px 18px 24px;
}

.dialog-close {
  position: sticky;
  top: 10px;
  z-index: 3;
  justify-self: end;
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: -44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--cc-black);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.dialog-title {
  display: grid;
  gap: 6px;
  padding-right: 60px;
}

.dialog-title img {
  width: 130px;
  height: auto;
}

.dialog-title p {
  color: var(--cc-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dialog-title h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.dialog-product {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 12px;
  align-items: center;
  min-height: 200px;
  padding: 14px;
  border: 1px solid var(--cc-border);
  border-radius: 16px;
  background: #fafaf8;
}

.dialog-visual {
  display: grid;
  min-height: 170px;
  place-items: center;
  border-radius: 12px;
  background: #fff;
}

.dialog-visual img {
  max-width: 90%;
  max-height: 160px;
  object-fit: contain;
}

.dialog-copy {
  display: grid;
  gap: 6px;
}

.dialog-copy p {
  color: var(--cc-green);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
}

.dialog-copy h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.15;
  text-transform: uppercase;
}

.dialog-copy span,
.dialog-copy small {
  color: #66635d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.3;
  text-transform: uppercase;
}

.dialog-copy strong {
  color: var(--cc-red);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}

.dialog-benefits,
.location-grid,
.qty-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.dialog-benefits span,
.qty-options label {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--cc-border);
  border-radius: 12px;
  color: #4d4a45;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #c5c2b9;
  border-radius: 12px;
  background: #fff;
  color: #1f1f1f;
  font-size: 16px;
  outline: 0;
}

.order-form textarea {
  min-height: 86px;
  padding-block: 14px;
  resize: vertical;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: #8a877f;
}

.qty-options {
  border: 0;
  padding: 0;
}

.qty-options legend {
  grid-column: 1 / -1;
  color: #66635d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.qty-options label {
  grid-template-columns: auto 1fr;
  justify-items: start;
  color: #222;
  font-size: 12px;
}

.qty-options input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--cc-green);
}

.confirm-order {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--cc-green);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-status {
  min-height: 16px;
  color: #6d685d;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

/* ================================
   Thank You Page
   ================================ */
.thank-shell {
  background: #fff;
}

.thank-header {
  grid-template-columns: 70px 1fr 70px;
}

.thank-back {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

.thank-back svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.thank-hero,
.thank-card,
.order-details-card {
  margin: 0 16px;
  border: 1px solid var(--cc-border);
}

.thank-hero {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 40px 24px;
  text-align: center;
}

.thank-hero p:first-child {
  color: var(--cc-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.thank-hero h1 {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.04em;
}

.thank-hero p:last-child {
  color: #5f5d58;
  font-size: 18px;
  line-height: 1.5;
}

.thank-card,
.order-details-card {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 20px;
}

.thank-label {
  color: var(--cc-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.thank-card strong {
  font-size: 20px;
}

.thank-product {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
}

.thank-product img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #f8f8f5;
}

.thank-product p {
  font-size: 16px;
  font-weight: 700;
}

.thank-product span {
  color: var(--cc-red);
  font-size: 16px;
  font-weight: 800;
}

.order-details-card h2 {
  font-size: 26px;
  line-height: 1.1;
}

.thank-details {
  display: grid;
  gap: 12px;
  margin: 0;
}

.thank-details div {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cc-border-light);
}

.thank-details dt {
  color: var(--cc-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.thank-details dd {
  margin: 0;
  color: #232323;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.thank-actions {
  display: grid;
  gap: 12px;
  padding: 20px 16px 34px;
}

.primary-link,
.secondary-link {
  display: grid;
  min-height: 52px;
  place-items: center;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.primary-link {
  background: var(--cc-green);
  color: #fff;
}

.secondary-link {
  border: 1px solid var(--cc-green);
  color: var(--cc-green);
}

/* ================================
   Responsive tweaks
   ================================ */
@media (max-width: 360px) {
  .brand img {
    width: 110px;
  }

  .promo-title {
    font-size: 16px;
  }

  .promo-cd-item {
    min-width: 44px;
    padding: 4px 6px;
  }

  .promo-cd-item strong {
    font-size: 22px;
  }

  .countdown strong {
    font-size: 24px;
  }

  .product-image {
    height: 182px;
    min-height: 182px;
    padding: 12px 8px;
  }

  .product-image img {
    max-width: 146px;
    max-height: 156px;
  }

  .product-image[data-fit="tall"] img {
    max-width: 124px;
    max-height: 162px;
  }

  .product-image[data-fit="wide"] img {
    max-width: 154px;
    max-height: 138px;
  }

  .product-image[data-fit="balanced"] img {
    max-width: 142px;
    max-height: 150px;
  }

  .product-copy h3 {
    font-size: 12px;
  }

  .order-button {
    min-width: 100px;
    font-size: 10px;
  }

  .dialog-product {
    grid-template-columns: 38% 1fr;
  }
}
