/*
Theme Name: Fluid Airbrush
Theme URI: https://fluidairbrush.com
Author: Simon Media LLC
Description: Dark chrome shop theme for Fluid Airbrush — custom airbrush art and car-culture goods.
Version: 1.0
License: Proprietary
Text Domain: fluidairbrush
*/

:root {
  --bg:        #0a0c10;
  --bg-2:      #10141a;
  --panel:     #151b23;
  --panel-2:   #1b222c;
  --line:      #263140;
  --ink:       #e9eef5;
  --muted:     #9aa8b8;
  --chrome-1:  #ffffff;
  --chrome-2:  #b9c6d4;
  --chrome-3:  #7d8b9c;
  --blue:      #4d9dff;
  --blue-dim:  #2f7fe0;
  --violet:    #8b7bd8;
  --radius:    14px;
  --maxw:      1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: #7ab6ff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 780px; }

/* ---------- chrome type ---------- */
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
h3 { font-size: 1.15rem; }

.chrome {
  background: linear-gradient(180deg, var(--chrome-1) 0%, var(--chrome-2) 45%, var(--chrome-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10, 12, 16, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 42px; height: 42px; border-radius: 9px; }
.brand .bname { font-weight: 800; letter-spacing: 0.14em; font-size: 0.98rem; text-transform: uppercase; }
nav.main { display: flex; align-items: center; gap: 4px; }
nav.main a {
  color: var(--muted); font-weight: 500; font-size: 0.95rem;
  padding: 9px 15px; border-radius: 999px; transition: all .16s ease;
}
nav.main a:hover { color: var(--ink); background: var(--panel-2); }
nav.main a.current { color: var(--ink); background: var(--panel-2); }
nav.main a.shop-cta {
  background: linear-gradient(135deg, var(--blue-dim), var(--blue));
  color: #fff; font-weight: 700;
}
nav.main a.shop-cta:hover { filter: brightness(1.12); color: #fff; }
#navtoggle {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--ink); border-radius: 9px; padding: 8px 12px; font-size: 1.1rem; cursor: pointer;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 66vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 22px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(5,7,10,.72), rgba(5,7,10,.88)),
    url(assets/banner.jpg) center/cover no-repeat,
    #05070a;
}
.hero .hero-inner { max-width: 760px; }
.hero h1 { text-shadow: 0 2px 34px rgba(0,0,0,.8); }
.hero p { color: #c9d6e4; max-width: 560px; margin: 14px auto 0; font-size: 1.06rem; }
.hero .btns { margin-top: 26px; }

@media (max-width: 720px) {
  .hero { min-height: 0; padding: 62px 20px 68px; }
  .hero .btns .btn { display: block; margin: 10px auto 0; max-width: 260px; }
  .hero .btn-ghost { margin-left: auto; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 700; font-size: .97rem; transition: transform .12s ease, filter .12s ease;
  border: 0; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue-dim), var(--blue)); color: #fff; }
.btn-primary:hover { color: #fff; filter: brightness(1.12); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); margin-left: 8px; }
.btn-ghost:hover { color: var(--ink); border-color: var(--blue); }

/* ---------- sections ---------- */
section.block { padding: 76px 0; }
section.block.tight { padding: 48px 0; }
section.alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.sec-head { text-align: center; margin-bottom: 40px; }
.sec-head p { color: var(--muted); max-width: 620px; margin: 10px auto 0; }

/* ---------- product grid ---------- */
.pgrid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.pcard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.pcard:hover {
  transform: translateY(-4px);
  border-color: var(--blue-dim);
  box-shadow: 0 14px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(77,157,255,.15);
}
.pcard .shot { position: relative; aspect-ratio: 1/1; background: #fff; overflow: hidden; }
.pcard .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pcard:hover .shot img { transform: scale(1.05); }
.pcard .body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.pcard h3 { font-size: 1.05rem; line-height: 1.3; }
.pcard .blurb { color: var(--muted); font-size: .9rem; line-height: 1.55; flex: 1; }
.pcard .foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.pcard .price { font-weight: 800; font-size: 1.22rem; color: var(--ink); }
.pcard .buy {
  background: linear-gradient(135deg, var(--blue-dim), var(--blue));
  color: #fff; font-weight: 700; font-size: .88rem;
  padding: 10px 18px; border-radius: 999px; white-space: nowrap;
  transition: filter .12s ease;
}
.pcard .buy:hover { filter: brightness(1.15); color: #fff; }

/* ---------- feature cards ---------- */
.fgrid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.fcard {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.fcard .ico { font-size: 1.9rem; margin-bottom: 10px; }
.fcard h3 { margin-bottom: 8px; }
.fcard p { color: var(--muted); font-size: .95rem; }

/* ---------- care / prose ---------- */
.prose { color: var(--muted); font-size: 1.02rem; }
.prose h2 { color: var(--ink); margin: 34px 0 12px; }
.prose h3 { color: var(--ink); margin: 26px 0 8px; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }
.prose a { text-decoration: underline; }

.step {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 22px; margin-bottom: 14px;
}
.step .num {
  flex: 0 0 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dim), var(--blue));
  color: #fff; font-weight: 800; display: grid; place-items: center; font-size: .95rem;
}
.step h3 { margin-bottom: 4px; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

.warn {
  border-left: 3px solid var(--blue);
  background: rgba(77,157,255,.07);
  padding: 16px 20px; border-radius: 0 10px 10px 0; margin: 20px 0;
}
.warn strong { color: var(--ink); }

/* ---------- cta strip ---------- */
.cta {
  background: linear-gradient(135deg, #14304f 0%, #0f2036 55%, #101820 100%);
  border-block: 1px solid var(--line);
  text-align: center; padding: 64px 22px;
}
.cta h2 { margin-bottom: 10px; }
.cta p { color: #c2d2e3; max-width: 540px; margin: 0 auto 24px; }

/* ---------- footer ---------- */
footer.site { background: #06080b; border-top: 1px solid var(--line); padding: 52px 0 28px; }
.fgrid-foot { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
footer.site h4 { color: var(--ink); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }
footer.site p, footer.site li { color: var(--muted); font-size: .93rem; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 8px; }
footer.site a { color: var(--muted); }
footer.site a:hover { color: var(--ink); }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.foot-brand img { width: 46px; height: 46px; border-radius: 9px; }

.socials { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--panel); border: 1px solid var(--line);
  display: grid; place-items: center; transition: all .16s ease;
}
.socials a:hover { border-color: var(--blue); background: var(--panel-2); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; fill: var(--muted); transition: fill .16s ease; }
.socials a:hover svg { fill: var(--blue); }

.colophon {
  border-top: 1px solid var(--line); margin-top: 34px; padding-top: 20px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  color: var(--chrome-3); font-size: .84rem;
}

@media (max-width: 860px) {
  .fgrid-foot { grid-template-columns: 1fr; }
  #navtoggle { display: block; }
  nav.main {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 12px 18px 18px;
  }
  nav.main.open { display: flex; }
  nav.main a { padding: 12px 14px; }
}
