/*
Theme Name: LashLift Factory
Theme URI: https://www.yourdomain.com
Author: LashLift Factory
Description: Custom WordPress theme built from the LashLift Factory static site - professional Lash Lift / Brow Lamination / Brow Tint OEM manufacturer. Clean modern design with a floating quote configurator and inquiry forms.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: lashlift-factory
*/

/* ==========================================================================
   LASHLIFT FACTORY — Global Stylesheet
   Clean & modern, beauty-industry aesthetic
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg: #FAF7F4;
  --bg-alt: #F2ECE6;
  --bg-deep: #2B2320;
  --white: #FFFFFF;
  --ink: #211C19;
  --body: #5B544D;
  --muted: #93897F;
  --accent: #B76E79;
  --accent-dark: #9C5B66;
  --accent-soft: #F6E7E9;
  --line: #E9E0D7;
  --gold: #C9A227;

  --font-head: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 34px rgba(33, 28, 25, 0.08);
  --shadow-lg: 0 24px 60px rgba(33, 28, 25, 0.12);
  --container: 1200px;
  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
p { margin: 0 0 1em; }
strong { color: var(--ink); }

::selection { background: var(--accent); color: #fff; }

/* ---------- Layout utilities ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-alt { background: var(--bg-alt); }
.section-white { background: var(--white); }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lead { font-size: 1.08rem; color: var(--muted); }

.lead { font-size: 1.1rem; color: var(--body); }

.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-lg { padding: 17px 38px; font-size: 16px; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(183,110,121,.35); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-outline { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 244, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(33,28,25,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { height: 70px; width: auto; }
.brand-text { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; color: var(--ink); letter-spacing: .02em; }

.site-nav ul { display: flex; align-items: center; gap: 4px; }
.site-nav ul a {
  display: block;
  padding: 9px 13px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
}
.site-nav ul a:hover { color: var(--accent); }
.site-nav ul a.active { color: var(--accent); }
.nav-cta { margin-left: 10px; }

.nav-toggle { display: none; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero-home { background-image: linear-gradient(90deg, rgba(28,20,17,.82) 0%, rgba(28,20,17,.55) 45%, rgba(28,20,17,.15) 100%), url('../assets/img/hero-1.jpg'); }
.hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 620px; padding: 90px 0; }
.hero .eyebrow { color: #E8C4C4; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero .hero-sub { font-size: 1.13rem; color: rgba(255,255,255,.88); margin-bottom: 1.6em; max-width: 520px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.hero-badge {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.08);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 56px); margin-top: clamp(40px, 6vw, 64px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.22); }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 600; color: #fff; line-height: 1.1; }
.hero-stat span { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(70px, 10vw, 120px) 0 clamp(50px, 8vw, 90px);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.page-hero.hero-banner-1 { background-image: linear-gradient(rgba(28,20,17,.72), rgba(28,20,17,.72)), url('../assets/img/banner-1.jpg'); }
.page-hero.hero-banner-2 { background-image: linear-gradient(rgba(28,20,17,.74), rgba(28,20,17,.74)), url('../assets/img/banner-2.jpg'); }
.page-hero.hero-banner-3 { background-image: linear-gradient(rgba(28,20,17,.74), rgba(28,20,17,.74)), url('../assets/img/banner-3.jpg'); }
.page-hero h1 { color: #fff; margin-bottom: .25em; }
.page-hero .page-crumb { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.page-hero .page-crumb a:hover { color: #fff; }
.page-hero .page-sub { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.85); font-size: 1.05rem; }

/* ---------- Feature tiles ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 14px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.22rem; margin-bottom: .4em; }
.feature-card p { font-size: .93rem; margin: 0; }

/* ---------- Tech cards ---------- */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tech-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tech-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tech-img { aspect-ratio: 16 / 10; overflow: hidden; }
.tech-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tech-card:hover .tech-img img { transform: scale(1.05); }
.tech-body { padding: 28px 28px 30px; }
.tech-body h3 { font-size: 1.32rem; }
.tech-body .benefit-list { margin: 14px 0 0; display: grid; gap: 8px; }
.tech-body .benefit-list li { display: flex; gap: 9px; font-size: .92rem; color: var(--body); }
.tech-body .benefit-list li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.tech-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent-soft);
  -webkit-text-stroke: 1px var(--accent);
  position: absolute;
  top: 22px; right: 24px;
  line-height: 1;
}
.step h3 { font-size: 1.22rem; }
.step p { font-size: .93rem; margin: 0; }
.step-num { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: .1em; display: block; margin-bottom: 6px; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--bg-alt); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: var(--ink); color: #fff; padding: 6px 12px; border-radius: 999px;
}
.product-badge.hot { background: var(--accent); }
.product-info { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-info h3 { font-size: 1.25rem; margin: 0; }
.product-info h3 a:hover { color: var(--accent); }
.product-desc { font-size: .9rem; color: var(--muted); margin: 0; flex: 1; }
.product-meta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--muted); padding-top: 12px; border-top: 1px dashed var(--line); }
.product-meta .pm-key { font-weight: 600; color: var(--body); }
.product-link { color: var(--accent); font-weight: 600; font-size: 13.5px; }
.product-link:hover { color: var(--accent-dark); }

/* ---------- Before / After ---------- */
.ba-strip { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.ba-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ba-points { display: grid; gap: 16px; margin-top: 24px; }
.ba-point { display: flex; gap: 14px; align-items: flex-start; }
.ba-point .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; margin-top: 2px; }
.ba-point b { display: block; color: var(--ink); }
.ba-point span { font-size: .92rem; color: var(--muted); }

/* ---------- Certifications ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cert-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .22s ease, box-shadow .22s ease;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cert-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.cert-card h3 { font-size: 1.06rem; margin-bottom: .25em; font-family: var(--font-body); font-weight: 600; }
.cert-card p { font-size: .88rem; color: var(--muted); margin: 0; }

.cert-img-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cert-img-item { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px; background: var(--white); }
.cert-img-item img { border-radius: 6px; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.cert-img-item figcaption { text-align: center; font-size: 12.5px; color: var(--muted); padding-top: 10px; }

/* ---------- Logos / badges row ---------- */
.logo-row { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; align-items: center; }
.logo-chip {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
  opacity: .85;
  white-space: nowrap;
}
.logo-chip b { color: var(--accent); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, #2B2320 0%, #3E2F2B 55%, #4A3732 100%);
  border-radius: 24px;
  padding: clamp(48px, 7vw, 84px);
  overflow: hidden;
  color: #fff;
}
.cta-band::before { content: ''; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(183,110,121,.25); filter: blur(10px); }
.cta-band-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: .3em; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 560px; margin: 0; }
.cta-band .btn-accent { background: var(--accent); color: #fff; }
.cta-band .btn-accent:hover { background: #D08590; }
.cta-list { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.cta-list li { font-size: 13.5px; color: rgba(255,255,255,.85); display: flex; gap: 8px; align-items: center; }
.cta-list li::before { content: '✔'; color: #E8C4C4; font-weight: 700; }

/* ---------- Cases / testimonials ---------- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.case-region { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.case-card h3 { font-size: 1.2rem; margin: 8px 0 .35em; }
.case-card p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(183,110,121,.12);
  background: #fff;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-msg { margin-top: 16px; padding: 13px 18px; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 500; }
.form-msg.success { background: #EAF5EC; color: #2E7D46; border: 1px solid #C6E4CE; }
.form-msg.error { background: #FCEFEF; color: #B33A3A; border: 1px solid #F2CDCD; }

/* ---------- Contact info cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card .feature-icon { margin: 0 auto 16px; }
.contact-card h3 { font-size: 1.15rem; }
.contact-card p, .contact-card a { font-size: .95rem; color: var(--body); }
.contact-card a:hover { color: var(--accent); }

/* ---------- Tables (specs) ---------- */
.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 18px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.spec-table th { background: var(--bg-alt); font-weight: 600; color: var(--ink); width: 34%; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table td { color: var(--body); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-cover { aspect-ratio: 16 / 9; overflow: hidden; }
.blog-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-cover img { transform: scale(1.05); }
.blog-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-meta { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }
.blog-meta span { color: var(--accent); font-weight: 600; }
.blog-body h3 { font-size: 1.22rem; margin: 0; line-height: 1.3; }
.blog-body h3 a:hover { color: var(--accent); }
.blog-body p { font-size: .92rem; color: var(--muted); margin: 0; flex: 1; }
.blog-more { color: var(--accent); font-weight: 600; font-size: 13.5px; }

/* Blog article */
.article { max-width: 780px; margin: 0 auto; }
.article-header { text-align: center; margin-bottom: 40px; }
.article-header .blog-meta { margin-bottom: 10px; }
.article h2 { margin-top: 1.4em; font-size: 1.8rem; }
.article h3 { margin-top: 1.3em; font-size: 1.35rem; }
.article p { font-size: 1.02rem; }
.article ul { list-style: disc; padding-left: 22px; margin: 0 0 1.2em; }
.article li { margin-bottom: .4em; }
.article blockquote { margin: 1.6em 0; padding: 18px 24px; border-left: 4px solid var(--accent); background: var(--accent-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--ink); font-style: italic; }
.article .article-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 36px; }
.article .article-cover img { width: 100%; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q::after { content: '+'; font-size: 22px; color: var(--accent); font-weight: 400; transition: transform .25s ease; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 24px 22px; font-size: .95rem; color: var(--body); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: rgba(255,255,255,.72); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding: clamp(48px, 7vw, 76px) 0 40px; }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col ul a { font-size: 14.5px; color: rgba(255,255,255,.68); }
.footer-col ul a:hover { color: #fff; }
.footer-logo { height: 38px; width: auto; margin-bottom: 18px; }
.footer-tagline { font-size: 15px; color: rgba(255,255,255,.85); margin-bottom: 10px; }
.footer-tags { font-size: 12.5px; color: rgba(255,255,255,.5); margin-bottom: 20px; line-height: 1.6; }
.footer-contact li { font-size: 14.5px; color: rgba(255,255,255,.68); }
.footer-contact a:hover { color: #fff; }
.footer-addr { line-height: 1.6; font-size: 13.5px !important; color: rgba(255,255,255,.55) !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; align-items: center; }
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,.45); }
.footer-mini { color: rgba(255,255,255,.35) !important; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Back to top ---------- */
#backTop {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  font-size: 18px; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease; box-shadow: 0 10px 24px rgba(183,110,121,.4);
}
#backTop.show { opacity: 1; visibility: visible; transform: none; }
#backTop:hover { background: var(--accent-dark); }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: clamp(80px, 14vw, 160px) 0; }
.notfound .code { font-family: var(--font-head); font-size: clamp(6rem, 16vw, 10rem); line-height: 1; color: var(--accent-soft); -webkit-text-stroke: 2px var(--accent); font-weight: 600; }
.notfound h1 { margin-bottom: .3em; }

/* ---------- Misc ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.badge-pill { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-dark); font-size: 12.5px; font-weight: 600; }
.bg-factory { background-image: linear-gradient(rgba(28,20,17,.78), rgba(28,20,17,.78)), url('../assets/img/factory.jpg'); background-size: cover; background-position: center; color: #fff; }
.bg-factory h2, .bg-factory h3 { color: #fff; }
.bg-factory .lead, .bg-factory p { color: rgba(255,255,255,.8); }
.bg-factory .eyebrow { color: #E8C4C4; }
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.checklist li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 0 6px; }
  .nav-toggle span { height: 2px; width: 24px; background: var(--ink); border-radius: 2px; transition: all .25s ease; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 18px 24px 26px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all .28s ease;
    overflow-y: auto;
    max-height: calc(100vh - var(--header-h));
  }
  .site-nav.open { transform: none; opacity: 1; visibility: visible; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav ul a { padding: 13px 12px; font-size: 16px; }
  .nav-cta { margin: 14px 0 0; width: 100%; }
  body.nav-locked { overflow: hidden; }

  .tech-grid, .product-grid, .blog-grid, .case-grid, .cert-grid, .contact-cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split, .ba-strip { grid-template-columns: 1fr; }
  .ba-img { order: -1; }
  .cert-img-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .feature-grid, .tech-grid, .product-grid, .blog-grid, .case-grid, .cert-grid, .contact-cards, .steps, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stat b { font-size: 1.6rem; }
  .cta-band { padding: 36px 26px; }
  .cert-img-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ==========================================================================
   QUOTE WIDGET — 首页右下角微缩询盘配置器
   ========================================================================== */
.quote-widget { position: fixed; right: 20px; bottom: 86px; z-index: 95; }

.quote-fab {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--ink); color: #fff; font-family: var(--font-body);
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  box-shadow: 0 12px 30px rgba(33,28,25,.30);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  /* 未点击时每隔几秒小幅动效吸引注意（打开面板后停用） */
  animation: ll-fab-nudge 6s ease-in-out infinite;
}
.quote-fab:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(183,110,121,.4); animation: none; }
.quote-fab .fab-icon { display: inline-flex; align-items: center; }

/* 面板打开时停用吸引动效（见 quote.js openPanel 的 fab-open 类切换） */
.quote-widget.fab-open .quote-fab { animation: none; }

@keyframes ll-fab-nudge {
  0%, 90%, 100% { transform: translateY(0); box-shadow: 0 12px 30px rgba(33,28,25,.30); }
  93%           { transform: translateY(-7px); box-shadow: 0 18px 38px rgba(183,110,121,.45); }
  96%           { transform: translateY(0); box-shadow: 0 12px 30px rgba(33,28,25,.30); }
  98%           { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  .quote-fab { animation: none; }
}

.quote-panel {
  position: absolute; right: 0; bottom: calc(100% + 14px);
  width: 372px; max-width: calc(100vw - 28px);
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  display: flex; flex-direction: column;
  max-height: min(72vh, 660px);
}
.quote-panel[hidden] { display: none; }

.quote-panel-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: 18px 20px; background: var(--bg-deep); color: #fff; flex-shrink: 0;
}
.quote-panel-head strong { display: block; color: #fff; font-family: var(--font-head); font-size: 1.18rem; line-height: 1.2; }
.quote-panel-head span { font-size: 12px; color: rgba(255,255,255,.62); }
.quote-close {
  background: none; border: none; color: rgba(255,255,255,.75);
  font-size: 24px; line-height: 1; cursor: pointer; padding: 2px 6px;
}
.quote-close:hover { color: #fff; }

.quote-panel-body { padding: 18px 20px 22px; overflow-y: auto; }
.quote-panel-foot { padding: 14px 20px 16px; border-top: 1px solid var(--line); background: var(--bg); flex-shrink: 0; }

.opt-group { margin-bottom: 20px; }
.opt-group:last-child { margin-bottom: 0; }
.opt-title {
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 9px;
}
.opt-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-pill { position: relative; display: inline-block; }
.opt-pill input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.opt-pill .pill-label {
  display: inline-block; padding: 9px 15px; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--white);
  font-size: 13px; font-weight: 500; color: var(--body); cursor: pointer;
  transition: all .18s ease; line-height: 1.3;
}
.opt-pill .pill-label:hover { border-color: var(--accent); color: var(--accent-dark); }
.opt-pill input:checked + .pill-label {
  border-color: var(--accent); background: var(--accent); color: #fff;
  box-shadow: 0 4px 14px rgba(183,110,121,.30);
}
.opt-pill small { display: block; font-size: 10.5px; font-weight: 400; color: var(--muted); }
.opt-pill input:checked + .pill-label small { color: rgba(255,255,255,.82); }
.quote-note { font-size: 11.5px; color: var(--muted); margin-top: 10px; }

/* ---------- Config summary (contact page) ---------- */
.cfg-summary {
  background: var(--accent-soft);
  border: 1px solid #E9CBD0;
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 24px;
}
.cfg-summary[hidden] { display: none; }
.cfg-summary-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.cfg-summary-head strong { font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); }
.cfg-summary-list { display: grid; gap: 7px; }
.cfg-summary-list li { display: flex; gap: 10px; font-size: 14px; color: var(--body); }
.cfg-summary-list li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.cfg-summary-list li b { color: var(--ink); font-weight: 600; }
.cfg-summary-note { font-size: 12.5px; color: var(--muted); margin: 12px 0 0; }
.cfg-clear {
  background: none; border: none; cursor: pointer;
  color: var(--accent); font-size: 12.5px; font-weight: 600; padding: 0;
}
.cfg-clear:hover { color: var(--accent-dark); }

@media (max-width: 600px) {
  .quote-widget { right: 12px; bottom: 76px; }
  .quote-fab { padding: 11px 16px; font-size: 13px; }
  .quote-panel { width: calc(100vw - 24px); max-width: 372px; }
}

/* ==========================================================================
   INLINE CUSTOMIZER — 首页第二屏内联定制板块
   ========================================================================== */
.customize-board {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 48px);
  margin-top: clamp(44px, 6vw, 64px);
}
.customize-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 40px; }
.customize-groups .opt-title { font-size: 13px; }
.customize-groups .opt-pill .pill-label { padding: 11px 16px; font-size: 13.5px; }
.customize-actions {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px dashed var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}

/* ==========================================================================
   HOME INQUIRY FORM — 首页底部直提询盘表单
   ========================================================================== */
.cta-form-card {
  width: 420px; max-width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 3vw, 34px);
}
.cta-form-card h3 { font-family: var(--font-body); font-size: 1.18rem; margin-bottom: 2px; }
.cta-form-card .form-sub { font-size: 13px; color: var(--muted); margin: 0 0 16px; }
.cta-form-card .form-msg { margin-top: 14px; }

/* ---------- 整卡可点击产品卡 ---------- */
.product-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  color: inherit;
}
.product-card-link:hover h3 { color: var(--accent); }
.product-card-link:hover .product-link { color: var(--accent-dark); }
.product-card-link .product-info { flex: 1; }

/* 滚动到询盘区时隐藏浮动配置按钮 */
.quote-widget.hide-fab .quote-fab { display: none; }

@media (max-width: 1024px) {
  .customize-groups { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .cta-form-card { width: 100%; }
}
@media (max-width: 600px) {
  .customize-groups { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRODUCT REVIEWS（产品评论 + 星标评分）
   ========================================================================== */
.ll-reviews { max-width: 820px; margin: 0 auto; }
.ll-reviews-head { text-align: center; margin-bottom: clamp(28px, 4vw, 44px); }
.ll-rating-summary { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.ll-rating-avg { font-weight: 600; color: var(--ink); }

.ll-stars-display { display: inline-flex; gap: 2px; font-size: 15px; letter-spacing: 1px; }
.ll-stars-display span { color: var(--line); }
.ll-stars-display span.on { color: var(--gold); }

.ll-comment-list { margin: 0; }
.ll-comment-list > li { border-bottom: 1px solid var(--line); padding: 22px 0; }
.ll-comment-list .children { list-style: none; margin: 18px 0 0 34px; padding: 14px 0 0; border-top: 1px dashed var(--line); }
.ll-comment-inner { display: flex; gap: 16px; }
.ll-comment-avatar img { border-radius: 50%; }
.ll-comment-main { flex: 1; min-width: 0; }
.ll-comment-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 6px; }
.ll-comment-author { font-weight: 600; color: var(--ink); }
.ll-comment-date { font-size: 12.5px; color: var(--muted); }
.ll-comment-text { font-size: 15px; color: var(--body); }
.ll-comment-text p { margin: 0 0 .6em; }
.ll-comment-main .reply a { font-size: 13px; color: var(--accent); font-weight: 600; }
.ll-comment-main .reply a:hover { color: var(--accent-dark); }

.ll-comments-closed { text-align: center; color: var(--muted); }

/* 评论表单 */
.ll-reviews .comment-form { margin-top: 34px; padding: clamp(22px, 3vw, 34px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.ll-reviews .comment-form .comment-notes { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.ll-reviews .comment-form label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: .02em; }
.ll-reviews .comment-form input[type="text"],
.ll-reviews .comment-form input[type="email"],
.ll-reviews .comment-form input[type="url"],
.ll-reviews .comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color .2s ease;
}
.ll-reviews .comment-form input:focus,
.ll-reviews .comment-form textarea:focus { border-color: var(--accent); }
.ll-reviews .comment-form textarea { resize: vertical; min-height: 120px; }
.ll-reviews .comment-form .form-submit { margin: 18px 0 0; }
.ll-reviews .comment-form .submit {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s ease;
  font-family: var(--font-body);
}
.ll-reviews .comment-form .submit:hover { background: var(--accent-dark); transform: translateY(-2px); }
.ll-reviews .comment-form .comment-form-cookies-consent { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.ll-reviews .comment-form .comment-form-cookies-consent input { width: auto; }
.ll-reviews .comment-form .comment-form-cookies-consent label { display: inline; margin: 0; font-weight: 400; color: var(--muted); font-size: 13px; }

/* 星标输入（radio 隐藏 + 反向排列，实现悬浮/选中高亮） */
.comment-form-rating { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.comment-form-rating .rating-title { margin-bottom: 0 !important; }
.ll-star-input { direction: rtl; unicode-bidi: bidi-override; display: inline-flex; gap: 4px; }
.ll-star-input input { display: none; }
.ll-star-input label { font-size: 24px; color: var(--line); cursor: pointer; margin: 0; line-height: 1; transition: color .15s ease; }
.ll-star-input label:hover,
.ll-star-input label:hover ~ label,
.ll-star-input input:checked ~ label { color: var(--gold); }
.ll-star-input input:focus + label { outline: 1px dotted var(--accent); }

@media (max-width: 600px) {
  .comment-form-rating { align-items: flex-start; flex-direction: column; gap: 6px; }
  .ll-comment-list .children { margin-left: 14px; }
}
