/* =========================================================
   Mobile Accessories Wholesale India — style.css
   Mobile-first · Light theme · Cyan/Sky accents
   ========================================================= */

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

:root {
  --bg:            #FFFFFF;
  --surface:       #F4F7FA;
  --surface-2:     #EAF2F9;
  --sky:           #DDEEFB;
  --sky-2:         #CFE7FB;
  --cyan:          #0EA5E9;
  --cyan-strong:   #0284C7;
  --cyan-soft:     #CFF6FB;
  --ink:           #1F2430;
  --ink-soft:      #5B6472;
  --ink-mute:      #8A93A2;
  --border:        #E4EAF0;
  --border-strong: #D3DCE6;
  --white:         #FFFFFF;
  --shadow-sm:     0 2px 8px rgba(16, 61, 108, 0.05);
  --shadow-md:     0 8px 28px rgba(16, 61, 108, 0.08);
  --shadow-lg:     0 20px 50px rgba(16, 61, 108, 0.10);
  --r-sm:          10px;
  --r-md:          16px;
  --r-lg:          22px;
  --r-xl:          28px;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; object-fit: contain; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
}
p { margin: 0 0 12px; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--cyan); color: #fff; box-shadow: 0 6px 20px rgba(14, 165, 233, 0.28); }
.btn-primary:hover { background: var(--cyan-strong); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--cyan); color: var(--cyan-strong); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #101319; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  min-height: 64px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

.nav { display: none; margin-left: auto; gap: 26px; }
.nav a {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 14.5px;
  transition: color .18s ease;
}
.nav a:hover { color: var(--cyan-strong); }
.nav-cta { display: none; margin-left: 4px; }

.menu-btn {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-menu {
  border-top: 1px solid var(--border);
  padding: 14px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}
.mobile-menu a {
  padding: 10px 4px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--sky);
  color: var(--cyan-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(14,165,233,0.18); }

/* ---------- Sections ---------- */
.section { padding: 68px 0; }
.section-tint { background: var(--surface); }
.section-head { max-width: 720px; margin: 0 0 34px; }
.section-head h2 {
  font-size: clamp(28px, 5.2vw, 42px);
  line-height: 1.12;
  margin-top: 14px;
}
.section-sub { font-size: 16px; color: var(--ink-soft); }

/* ---------- Hero ---------- */
.hero {
  padding: 44px 0 20px;
  background:
    radial-gradient(1200px 500px at 100% -100px, var(--sky) 0%, transparent 60%),
    radial-gradient(800px 400px at -10% 20%, var(--cyan-soft) 0%, transparent 55%),
    #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(34px, 8.5vw, 66px);
  line-height: 1.02;
  margin: 16px 0 18px;
  letter-spacing: -0.028em;
}
.hero-copy h1 .hl {
  background: linear-gradient(120deg, var(--cyan) 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 560px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 24px;
}
.trust-badges {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 14px;
  color: var(--ink-soft);
}
.trust-badges li { display: inline-flex; align-items: center; gap: 6px; }
.trust-badges strong { color: var(--ink); font-weight: 700; }

/* Hero collage */
.hero-visual { position: relative; }
.collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding: 8px;
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 2;
}
.tile {
  background: var(--tint, var(--surface));
  border-radius: var(--r-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  min-height: 130px;
  border: 1px solid rgba(14,165,233,0.08);
}
.tile-lg { grid-row: span 2; }
.tile-lg svg { max-height: 220px; }
.tile svg { flex: 1; min-height: 0; max-height: 90px; }
.tile-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  margin-top: 10px;
  letter-spacing: -0.01em;
}
.collage-blob {
  position: absolute;
  inset: -30px -30px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(closest-side, rgba(14,165,233,0.22), transparent 70%);
  filter: blur(4px);
  z-index: 1;
  pointer-events: none;
}

/* Marquee */
.marquee {
  margin-top: 44px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 22px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 14px;
}
.marquee-track span:nth-child(2n) { color: var(--cyan); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: block;
  min-height: 100%;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sky-2); }
.cat-card h3 { font-size: 16px; margin: 12px 0 6px; letter-spacing: -0.015em; }
.cat-card p  { font-size: 13.5px; color: var(--ink-soft); margin: 0; }
.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--tint, var(--sky));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cat-icon svg { width: 30px; height: 30px; }
.cat-card-wide { grid-column: span 2; display: flex; gap: 16px; align-items: center; }
.cat-card-wide .cat-icon { flex: 0 0 auto; }
.cat-card-wide h3 { margin-top: 0; }

/* ---------- Benefits ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.benefit .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  color: var(--cyan);
  font-size: 14px;
  letter-spacing: 0.06em;
}
.benefit h3 { font-size: 18px; margin: 10px 0 8px; letter-spacing: -0.015em; }
.benefit p  { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cyan-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.feature h3 { font-size: 17px; margin: 0 0 6px; }
.feature p  { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ---------- Sources ---------- */
.src-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.src-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.src-top { display: flex; align-items: center; gap: 14px; }
.src-top h3 { font-size: 20px; margin: 0 0 2px; letter-spacing: -0.015em; }
.src-domain {
  color: var(--cyan-strong);
  font-weight: 600;
  font-size: 13px;
}
.src-card > p { color: var(--ink-soft); margin: 0; font-size: 15px; }
.check {
  list-style: none;
  padding: 0;
  margin: 4px 0 10px;
  display: grid;
  gap: 10px;
}
.check li {
  padding-left: 30px;
  position: relative;
  font-size: 15px;
  color: var(--ink);
}
.check li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cyan-soft);
}
.check li::after {
  content: "";
  position: absolute;
  left: 6px; top: 8px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--cyan-strong);
  border-bottom: 2px solid var(--cyan-strong);
  transform: rotate(-45deg);
}

/* ---------- Ordering ---------- */
.order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.order-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.order-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.order-head h3 { margin: 0; font-size: 20px; letter-spacing: -0.015em; }
.pill {
  background: var(--cyan-soft);
  color: var(--cyan-strong);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
.pill-dark { background: var(--ink); color: #67E8F9; }

.order-list { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 10px; }
.order-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--surface);
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.order-list li strong { color: var(--ink); font-weight: 700; }
.note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ink-mute);
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; }
.faq { display: grid; gap: 10px; }
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 4px 4px 4px 4px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); border-color: var(--sky-2); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 18px;
  font-weight: 700;
  color: var(--ink);
  font-size: 15.5px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 20px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-body {
  padding: 0 18px 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- CTA ---------- */
.cta {
  background:
    radial-gradient(600px 260px at 15% 20%, var(--sky) 0%, transparent 55%),
    radial-gradient(500px 260px at 90% 80%, var(--cyan-soft) 0%, transparent 55%),
    #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(28px, 6vw, 44px); }
.cta p { font-size: 16.5px; color: var(--ink-soft); }
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 22px 0 14px;
}
.fine { font-size: 13px; color: var(--ink-mute); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0F1520;
  color: #C7D0DE;
  padding: 56px 0 24px;
}
.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: #7C8798; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.foot-col h4 {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-col a {
  color: #C7D0DE;
  font-size: 14.5px;
  transition: color .18s ease;
}
.foot-col a:hover { color: #67E8F9; }
.foot-about, .foot-serve {
  color: #A6B2C3;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 12px 0 0;
}
.foot-seo {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 34px;
  padding-top: 22px;
}
.foot-seo p { color: #8892A5; font-size: 13.5px; line-height: 1.7; }
.foot-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 20px;
  padding-top: 20px;
  font-size: 13px;
  color: #7C8798;
}
.foot-bottom p { color: inherit; margin: 0; }
.foot-links a { color: #67E8F9; }

/* =========================================================
   Responsive
   ========================================================= */

@media (min-width: 600px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .order-grid { grid-template-columns: repeat(2, 1fr); }
  .src-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card-wide { grid-column: span 3; }
}

@media (min-width: 900px) {
  .container { padding: 0 28px; }
  .section { padding: 90px 0; }
  .nav { display: inline-flex; }
  .nav-cta { display: inline-flex; }
  .menu-btn { display: none; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 60px; padding: 20px 0 30px; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-card-wide { grid-column: span 4; }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; }
  .foot-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

/* Focus + accessibility */
:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.45);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Print / safety */
@media (max-width: 380px) {
  .hero-copy h1 { font-size: 34px; }
  .btn { padding: 12px 18px; font-size: 14.5px; }
}
