/* ============================================================
   JOJO WATCH WHOLESALE — main.css
   Genuine Casio Watches · B2B Wholesale & Distribution
   ============================================================ */

:root {
  --navy: #0b1f33;
  --navy-2: #10283f;
  --navy-3: #16344f;
  --ink: #0f172a;
  --muted: #5b6b7b;
  --muted-2: #7c8a99;
  --red: #e6322a;
  --red-dark: #c02620;
  --gold: #c9a24b;
  --green: #0f9d58;
  --whatsapp: #25d366;
  --whatsapp-dark: #1eb954;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-navy-soft: #eef3f8;
  --line: #e5eaf0;
  --line-strong: #d4dce6;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(11, 31, 51, .06), 0 1px 3px rgba(11, 31, 51, .08);
  --shadow-md: 0 6px 20px rgba(11, 31, 51, .08);
  --shadow-lg: 0 18px 48px rgba(11, 31, 51, .14);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); font-weight: 700; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.4em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: #e6edf5; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.lead { font-size: 1.15rem; color: var(--muted); }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.mono { font-variant-numeric: tabular-nums; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(230, 50, 42, .28); }
.btn--primary:hover { background: var(--red-dark); }
.btn--whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, .28); }
.btn--whatsapp:hover { background: var(--whatsapp-dark); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--sm { padding: 9px 15px; font-size: .86rem; }
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* Top bar (WhatsApp strong CTA) */
.topbar { background: linear-gradient(90deg, var(--whatsapp-dark) 0%, var(--whatsapp) 100%); color: #fff; }
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 9px 16px; font-size: .88rem; flex-wrap: wrap; text-align: center; }
.topbar a { color: #fff; font-weight: 800; text-decoration: underline; }
.topbar .topbar-btn { background: #fff; color: var(--whatsapp-dark) !important; padding: 5px 14px; border-radius: 999px; font-weight: 800; text-decoration: none !important; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none !important; color: var(--navy); }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--red) 0%, #b71c1c 100%);
  color: #fff; font-weight: 800; font-size: 1.1rem;
  display: grid; place-items: center; letter-spacing: .02em;
}
.brand-text { line-height: 1.15; }
.brand-name { font-weight: 800; font-size: 1.06rem; letter-spacing: .01em; }
.brand-sub { font-size: .68rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--navy); font-weight: 600; font-size: .92rem;
  padding: 8px 12px; border-radius: 8px; text-decoration: none !important;
}
.nav a:hover { background: var(--bg-navy-soft); }
.nav a.active { color: var(--red); }
.nav .nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }

/* Hero */
.hero { position: relative; background: radial-gradient(1200px 500px at 70% -10%, #1c3a5c 0%, var(--navy) 55%); color: #e9f0f8; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,31,51,.35)); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; padding: 84px 0 96px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); letter-spacing: -.02em; margin-bottom: .35em; }
.hero h1 .accent { color: #ff8a80; }
.hero .lead { color: #c7d6e6; font-size: 1.18rem; max-width: 560px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 18px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 18px; color: #b9cbdc; font-size: .9rem; }
.hero-points span { display: inline-flex; align-items: center; gap: 6px; }
.hero-points .dot { color: #6ee7a0; }
.hero-card {
  background: #fff; color: var(--ink); border-radius: 16px; padding: 26px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1);
}
.hero-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.hero-card .stat { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.hero-card .stat:last-child { border-bottom: 0; }
.hero-card .stat b { color: var(--navy); font-variant-numeric: tabular-nums; }

/* Trust bar */
.trust-bar { background: #fff; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 20px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .ic {
  width: 42px; height: 42px; border-radius: 10px; flex: 0 0 auto;
  display: grid; place-items: center; background: var(--bg-navy-soft); color: var(--navy);
}
.trust-item .ic svg { width: 22px; height: 22px; }
.trust-item b { display: block; font-size: .95rem; color: var(--navy); }
.trust-item span { font-size: .8rem; color: var(--muted); }

/* Cards & grids */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.08rem; }
.card p { color: var(--muted); font-size: .94rem; margin-bottom: 0; }
.card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-navy-soft); color: var(--red); margin-bottom: 14px; }
.card .ic svg { width: 24px; height: 24px; }

/* Collection tiles */
.collection-tile {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--bg-soft);
  padding: 26px 24px; text-decoration: none !important; color: var(--ink);
  display: flex; flex-direction: column; gap: 10px; min-height: 150px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.collection-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.collection-tile .tile-top { display: flex; justify-content: space-between; align-items: flex-start; }
.collection-tile .badge { background: var(--navy); color: #fff; }
.collection-tile h3 { margin: 0; font-size: 1.18rem; }
.collection-tile p { color: var(--muted); font-size: .86rem; margin: 0; }
.collection-tile .tile-cta { color: var(--red); font-weight: 700; font-size: .85rem; }

/* Badges & pills */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .02em;
}
.badge--green { background: #e7f6ee; color: var(--green); }
.badge--red { background: #fdecea; color: var(--red); }
.badge--gold { background: #f7f0df; color: #8a6d1f; }
.badge--navy { background: var(--bg-navy-soft); color: var(--navy); }

/* Steps */
.step { position: relative; }
.step .step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.05rem; margin-bottom: 14px;
}

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split .visual { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-soft); }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding: 8px 0 8px 32px; position: relative; color: var(--muted); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 7px; width: 20px; height: 20px;
  background: #e7f6ee; color: var(--green); border-radius: 50%; font-weight: 800; font-size: .8rem;
  display: grid; place-items: center;
}

/* Catalog / price table */
.catalog-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 20px; }
.search-wrap { position: relative; flex: 1 1 260px; }
.search-wrap input {
  width: 100%; padding: 12px 16px 12px 42px; border: 1px solid var(--line-strong);
  border-radius: 10px; font-size: .95rem; font-family: inherit; background: #fff;
}
.search-wrap .search-ic { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted-2); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: #fff; color: var(--muted); font-weight: 600; font-size: .85rem; cursor: pointer;
  transition: all .12s ease;
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.price-table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .92rem; }
.price-table thead th {
  text-align: left; padding: 14px 16px; background: var(--navy); color: #fff;
  font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap;
  position: sticky; top: 68px; z-index: 5;
}
.price-table tbody td { padding: 13px 16px; border-top: 1px solid var(--line); vertical-align: middle; }
.price-table tbody tr:hover { background: var(--bg-soft); }
.price-table .p-model { font-weight: 700; color: var(--navy); white-space: nowrap; }
.price-table .p-name { color: var(--muted); }
.price-table .p-price { font-weight: 800; color: var(--navy); white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-table .p-price::before { content: "US$"; color: var(--red); font-size: .78em; margin-right: 1px; }
.price-table .p-moq { color: var(--muted); white-space: nowrap; }
.catalog-note { margin-top: 18px; padding: 16px 18px; border-left: 4px solid var(--gold); background: #fbf7ec; border-radius: 6px; color: #6b5a26; font-size: .9rem; }
.catalog-count { color: var(--muted); font-size: .9rem; }
.no-results { text-align: center; padding: 48px 16px; color: var(--muted); }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin-top: 18px; }
.photo-grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.photo-grid figure { margin: 0; background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 6px 18px rgba(11,31,51,.06); }
.photo-grid img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-grid figcaption { padding: 10px 14px; font-size: .85rem; color: var(--muted); }

/* FAQ */
details.faq { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: 12px; overflow: hidden; }
details.faq summary {
  cursor: pointer; padding: 18px 20px; font-weight: 700; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--red); font-weight: 400; }
details.faq[open] summary::after { content: "–"; }
details.faq .faq-body { padding: 0 20px 18px; color: var(--muted); font-size: .95rem; }

/* Footer */
.site-footer { background: var(--navy); color: #c7d4e2; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; margin-bottom: 40px; }
.site-footer h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.site-footer a { color: #c7d4e2; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-name { color: #fff; font-size: 1.2rem; }
.footer-brand .brand-sub { color: #8ba0b5; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; font-size: .92rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .82rem; color: #8ba0b5; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; background: var(--whatsapp); color: #fff;
  font-weight: 800; font-size: .95rem; text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.05); color: #fff; }
.wa-float svg { width: 22px; height: 22px; fill: #fff; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--red) 0%, #b71c1c 100%); color: #fff; border-radius: 20px; padding: 44px 40px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #ffd9d6; margin: 0; }

/* Page hero (subpages) */
.page-hero { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: #e9f0f8; padding: 60px 0 64px; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-hero .lead { color: #c7d6e6; }
.crumb { font-size: .82rem; color: #8ba0b5; margin-bottom: 16px; }
.crumb a { color: #b9cbdc; }

/* Tables (generic) */
.generic-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.generic-table th, .generic-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.generic-table th { background: var(--bg-soft); color: var(--navy); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }

/* Contact cards */
.contact-card { display: flex; gap: 16px; align-items: flex-start; }
.contact-card .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-navy-soft); display: grid; place-items: center; color: var(--red); flex: 0 0 auto; }
.contact-card .ic svg { width: 22px; height: 22px; }

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.whatsapp-num { font-weight: 800; color: var(--navy); white-space: nowrap; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding: 56px 0 64px; }
  .hero-card { max-width: 460px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { position: fixed; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 12px 16px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 12px; }
  .nav .nav-cta { margin-left: 0; margin-top: 6px; }
  .nav-toggle { display: grid; }
}
@media (max-width: 560px) {
  .section { padding: 52px 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 24px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

@media print {
  .site-header, .site-footer, .wa-float, .btn { display: none !important; }
  .price-table thead th { position: static; }
}
