/* ==========================================================================
   CT TOYS — Page-level styles
   ========================================================================== */

/* ==========================================================================
   HERO (home)
   ========================================================================== */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--ink);
}
.hero__slider { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease;
  aspect-ratio: auto !important;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(43, 18, 36, 0.88) 0%, rgba(61, 26, 51, 0.65) 50%, rgba(236, 72, 153, 0.40) 100%);
}
.hero__slide .img-slot-label { opacity: 0.35; }

.hero__content {
  position: relative; z-index: 10;
  height: 100%;
  display: flex; align-items: center;
}
.hero__text { max-width: 580px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(236, 72, 153, 0.22);
  border: 1px solid rgba(236, 72, 153, 0.5);
  color: var(--accent-light);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.hero__badge .dot { width: 8px; height: 8px; background: var(--accent-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800; color: #fff; line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin-bottom: 18px;
}
.hero h1 span { color: var(--accent-light); }
.hero__desc { font-size: 14px; color: rgba(255, 255, 255, 0.9); max-width: 520px; margin-bottom: 22px; line-height: 1.7; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__dots { position: absolute; bottom: 22px; right: 40px; z-index: 12; display: flex; gap: 8px; }
.hero__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); border: 0; transition: var(--transition); }
.hero__dot.is-active { background: var(--accent-light); width: 28px; border-radius: 5px; }

/* Stats bar */
.stats-bar {
  position: relative; z-index: 11;
  background: var(--ink-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 18px 14px; border-right: 1px solid rgba(255, 255, 255, 0.08); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--accent-light); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 11px; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 1px; }

/* ==========================================================================
   ABOUT (home) — left image + right text
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; max-width: 420px; margin: 0 auto; }
.about-visual__main {
  width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; z-index: 2;
  --ar: 3 / 4; aspect-ratio: 3 / 4;
  background: var(--surface-elevated); background-image: none;
}
.about-visual__main > img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.about-visual__main .img-slot-label { display: none; }
.about-visual__deco {
  position: absolute; top: -18px; left: -18px; width: 160px; height: 160px;
  background: var(--surface-elevated); border-radius: 50%; z-index: 1;
}
.about-badge {
  position: absolute; bottom: -22px; right: -22px; z-index: 3;
  background: var(--accent); color: #fff; padding: 18px 22px; border-radius: var(--radius);
  text-align: center; box-shadow: 0 12px 36px rgba(236, 72, 153, 0.4); min-width: 130px;
}
.about-badge .big { font-family: var(--font-display); font-size: 34px; font-weight: 800; line-height: 1; }
.about-badge .small { font-size: 11px; opacity: 0.92; margin-top: 4px; letter-spacing: 1px; }
.about-content p { color: var(--text-secondary); margin-bottom: 16px; font-size: 15.5px; line-height: 1.85; }

.cert-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.cert-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-elevated); border: 1px solid var(--accent-light);
  color: var(--accent-hover); padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; transition: var(--transition);
}
.cert-chip:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }
.cert-chip svg { width: 16px; height: 16px; }

/* ==========================================================================
   ADVANTAGES (dark band)
   ========================================================================== */
.advantages { background: var(--ink); position: relative; overflow: hidden; }
.advantages::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, transparent 70%);
}
.advantages::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
}
.advantages .section__head { position: relative; z-index: 2; }
.advantages .section__head .section-title { color: #fff; }
.advantages .section__head .section-subtitle { color: rgba(255, 255, 255, 0.78); }
.adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 2; }
.adv-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  transition: var(--transition);
}
.adv-card:hover { background: rgba(236, 72, 153, 0.12); border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(236, 72, 153, 0.18); }
.adv-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.adv-card h3 { color: #fff; font-size: 17px; margin-bottom: 10px; }
.adv-card p { color: rgba(255, 255, 255, 0.66); font-size: 14px; line-height: 1.75; }

/* ==========================================================================
   CERTIFICATIONS (light pink band)
   ========================================================================== */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 44px; }
.cert-card {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
  box-shadow: 0 4px 24px rgba(236, 72, 153, 0.08); transition: var(--transition);
}
.cert-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: var(--shadow); }
.cert-badge {
  width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 14px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.cert-badge.img-slot {
  width: 100%; height: 0; padding-bottom: 75%; margin: 0 0 18px;
  border-radius: 14px; position: relative; overflow: hidden;
  display: block;
}
.cert-badge.img-slot img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.cert-badge--flag { background: #fff; }
.cert-flag { width: 50px; height: 34px; display: block; border-radius: 4px; overflow: hidden; }
.cert-card h3 { color: var(--accent-hover); font-size: 20px; margin-bottom: 8px; }
.cert-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }
.document-proof--cert {
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
}
.document-proof--cert figure {
  box-shadow: 0 20px 48px rgba(194, 24, 91, .12);
}
.cert-grid--text .cert-card {
  text-align: left;
  min-height: 260px;
}
.cert-symbol {
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hover);
  font-weight: 900;
  letter-spacing: .08em;
  background:
    linear-gradient(135deg, rgba(236, 72, 153, .16), rgba(255, 255, 255, .92)),
    #fff;
  border: 1px solid rgba(236, 72, 153, .22);
  box-shadow: 0 12px 30px rgba(236, 72, 153, .12);
}
.cert-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}
.cert-evidence-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.cert-evidence-card figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-secondary);
}
.cert-evidence-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cert-evidence-card h3 {
  margin: 22px 22px 8px;
  color: var(--text-primary);
  font-size: 18px;
}
.cert-evidence-card p {
  margin: 0 22px 24px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}
.cert-check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}
.cert-check-card {
  min-height: 230px;
  padding: 30px 24px;
  border: 1px solid rgba(236, 72, 153, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 40px rgba(194, 24, 91, .08);
  text-align: left;
  transition: var(--transition);
}
.cert-check-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 22px 56px rgba(194, 24, 91, .14);
}
.cert-check-card__icon {
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hover);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  background: linear-gradient(135deg, rgba(236, 72, 153, .16), rgba(255, 255, 255, .92));
  border: 1px solid rgba(236, 72, 153, .26);
}
.cert-check-card h3 {
  margin-bottom: 10px;
  color: var(--text-primary);
  font-size: 18px;
}
.cert-check-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

/* ==========================================================================
   PROCESS + FACTORY BENTO
   ========================================================================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card {
  background: var(--bg-secondary); border: 2px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
  position: relative;
}
.process-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: var(--shadow); }
.process-num {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent); color: #fff; font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.process-card__img {
  width: 100%;
  aspect-ratio: 600 / 400;
  overflow: hidden;
  background-image: none;
  position: relative;
}
.process-card__img .img-slot-label { display: none; }
.process-info { padding: 14px 16px; font-weight: 700; font-size: 14px; color: var(--text-primary); border-top: 2px solid var(--border); }
.factory-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }

/* ==========================================================================
   FACTORY SHOWCASE (compact 5-column grid: 10 items = 2 clean rows)
   ========================================================================== */
.factory-section.section { padding: 64px 0; }
.factory-section .section__head { margin-bottom: 36px; }
.factory-section .section-title { font-size: clamp(26px, 3vw, 36px); }
.factory-section .section-subtitle { font-size: 15px; max-width: 620px; line-height: 1.7; }
.factory-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: start; }
.factory-card {
  background: var(--bg-secondary); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 4px 20px rgba(43, 18, 36, 0.06); transition: var(--transition);
  position: relative;
}
.factory-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.factory-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-image: none;
  position: relative;
}
.factory-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.factory-card__img .img-slot-label { display: none; }
.factory-card:hover .factory-card__img .img-slot::after { opacity: 1; }
.factory-card__img .img-slot::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(236, 72, 153, 0.65) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}
.factory-card__label {
  padding: 10px 12px; font-size: 13px; font-weight: 700; color: var(--text-primary);
  display: flex; align-items: center; gap: 8px; border-top: 1px solid var(--border);
}
.factory-card__label::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.factory-section .text-center { margin-top: 36px !important; }

/* ==========================================================================
   WHY CHOOSE US — left list + right stacked images
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 70px; align-items: center; }
.why-list { list-style: none; }
.why-item { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border); transition: var(--transition); }
.why-item:last-child { border-bottom: none; }
.why-item:hover { padding-left: 8px; }
.why-ico {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: var(--surface-elevated); display: flex; align-items: center; justify-content: center; font-size: 22px;
  transition: var(--transition);
}
.why-item:hover .why-ico { background: var(--accent); }
.why-text h4 { font-size: 16px; margin-bottom: 6px; color: var(--text-primary); }
.why-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.why-visual { position: relative; }
.why-stack { position: relative; max-width: 460px; margin-left: auto; }
.why-stack__main {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4; background: var(--surface-elevated); background-image: none;
}
.why-stack__main img,
.why-stack__secondary img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.why-stack__main .img-slot-label,
.why-stack__secondary .img-slot-label { display: none; }
.why-stack__secondary {
  position: absolute; bottom: -28px; left: -28px; width: 180px;
  border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid #fff;
  aspect-ratio: 4 / 5; background: var(--surface-elevated); background-image: none;
}

/* ==========================================================================
   PARALLAX (dark mission banner)
   ========================================================================== */
.parallax {
  position: relative; height: 480px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
}
.parallax__bg {
  position: absolute; inset: -80px; background-size: cover; background-position: center;
  will-change: transform;
}
.parallax__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(43, 18, 36, 0.85) 0%, rgba(236, 72, 153, 0.55) 100%);
}
.parallax__content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 24px; }
.parallax__content h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); color: #fff; margin-bottom: 18px; }
.parallax__content h2 span { color: var(--accent-light); }
.parallax__content p { font-size: 17px; color: rgba(255, 255, 255, 0.82); margin-bottom: 32px; line-height: 1.7; }
.parallax .img-slot { position: absolute; inset: -80px; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reviews-grid--rich { align-items: stretch; }
.review-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 250, 253, .94));
  border: 1px solid rgba(236, 72, 153, .13);
  border-radius: 28px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(43, 18, 36, .06);
}
.review-card::before {
  content: '"'; position: absolute; top: -14px; right: 20px;
  font-size: 120px; font-family: Georgia, serif; color: rgba(236, 72, 153, .08); line-height: 1; pointer-events: none;
}
.review-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-6px); }
.review-card--featured {
  border-color: rgba(236, 72, 153, .42);
  box-shadow: 0 24px 70px rgba(236, 72, 153, .13);
}
.review-card--featured::after {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #f59e0b, rgba(20, 184, 166, .82));
}
.review-stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-focus {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(236, 72, 153, .1);
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 18px; position: relative; z-index: 1; }
.review-meta {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 245, 249, .92);
  border: 1px solid rgba(236, 72, 153, .12);
  position: relative;
  z-index: 1;
}
.review-meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.review-meta strong {
  display: block;
  color: var(--text-primary);
  font-size: 13px;
  line-height: 1.45;
}
.reviewer { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.reviewer__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.reviewer__name { font-weight: 700; color: var(--text-primary); font-size: 15px; }
.reviewer__country { font-size: 13px; color: var(--text-secondary); }

/* ==========================================================================
   CTA section (dark gradient)
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 50%, var(--accent-hover) 130%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px; opacity: 0.6;
}
.cta-section > .container { position: relative; z-index: 2; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 42px); color: #fff; margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: rgba(255, 255, 255, 0.82); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.cta-section__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: #fff; padding: 90px 0 96px;
}
.page-hero .img-slot { position: absolute; inset: 0; aspect-ratio: auto !important; background-image: none; }
.page-hero .img-slot::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(43, 18, 36, 0.82) 0%, rgba(61, 26, 51, 0.55) 60%, rgba(236, 72, 153, 0.4) 100%);
}
.page-hero--buyer .img-slot {
  /* Match the dark edge of the hero artwork so the right-aligned image has no visible seam. */
  background-color: #090611;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right center;
}
.page-hero--buyer .img-slot::after {
  background: linear-gradient(105deg, rgba(43, 18, 36, 0.88) 0%, rgba(61, 26, 51, 0.65) 50%, rgba(236, 72, 153, 0.40) 100%);
}
.page-hero--buyer {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: #fff;
}
.page-hero--buyer .section-label--light {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  border-color: rgba(255, 255, 255, .30);
}
.page-hero--buyer h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.page-hero--buyer p {
  color: rgba(255, 255, 255, .90);
}
.page-hero--buyer .btn--white {
  background: #fff;
  color: var(--accent-hover);
  box-shadow: 0 6px 24px rgba(43, 18, 36, .15);
}
.page-hero--buyer .btn--white:hover {
  background: var(--surface-elevated);
  color: var(--accent-hover);
}
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero .section-label--light { margin-bottom: 14px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); color: #fff; margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: rgba(255, 255, 255, 0.82); line-height: 1.8; max-width: 620px; }

/* ==========================================================================
   PRODUCTS PAGE (category grid + product grid)
   ========================================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  display: block; background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition); color: inherit;
}
.cat-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow); }
.cat-card__media { aspect-ratio: 4 / 3; }
.cat-card__body { padding: 16px 18px; }
.cat-card__title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.cat-card__count { font-size: 12.5px; color: var(--text-secondary); }

.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; justify-content: center;
}
.filter-chip {
  padding: 9px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); background: var(--bg-secondary);
  color: var(--text-secondary); font-size: 14px; font-weight: 600; transition: var(--transition);
}
.filter-chip:hover, .filter-chip.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ==========================================================================
   CATALOG PAGE
   ========================================================================== */
.catalog-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.catalog-cover { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.catalog-cover.img-slot { aspect-ratio: 4 / 3; background: var(--bg-secondary); }
.catalog-cover.img-slot img { object-fit: cover; }
.cat-index-list { columns: 2; column-gap: 24px; }
.cat-index-list a {
  display: block; break-inside: avoid; padding: 10px 14px; margin-bottom: 8px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text-secondary); font-size: 14px; font-weight: 600;
  transition: var(--transition);
}
.cat-index-list a:hover { background: var(--surface-elevated); color: var(--accent-text); border-color: var(--accent-light); }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-section p { color: var(--text-secondary); font-size: 15.5px; line-height: 1.85; margin-bottom: 16px; }
.timeline { position: relative; margin: 40px 0 0; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.timeline__item { position: relative; padding-bottom: 28px; }
.timeline__item::before {
  content: ''; position: absolute; left: -28px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg-primary);
}
.timeline__year { font-family: var(--font-display); font-weight: 800; color: var(--accent-hover); font-size: 16px; }
.timeline__title { font-weight: 700; color: var(--text-primary); margin: 2px 0 4px; }
.timeline__desc { font-size: 14px; color: var(--text-secondary); }

.data-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.data-card { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 24px; text-align: center; }
.data-card .num { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--accent); line-height: 1; }
.data-card .lbl { font-size: 14px; color: var(--text-secondary); margin-top: 8px; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { border-radius: var(--radius); overflow: hidden; background: var(--bg-secondary); border: 1px solid var(--border); }
.team-card__img { aspect-ratio: 3 / 2; }
.team-card__body { padding: 16px 18px; }
.team-card__body h4 { font-size: 15px; color: var(--text-primary); }
.team-card__body p { font-size: 13px; color: var(--text-secondary); }

.logo-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.logo-wall__item {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  padding: 18px; transition: var(--transition);
}
.logo-wall__item:hover { border-color: var(--accent); transform: translateY(-4px); }
.logo-wall__item .img-slot { width: 100%; aspect-ratio: 2 / 1; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-list { margin-top: 8px; }
.contact-info-list li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-info-list .ico {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: var(--surface-elevated); color: var(--accent); display: flex; align-items: center; justify-content: center;
}
.contact-info-list .ico svg { width: 20px; height: 20px; }
.contact-info-list .txt strong { display: block; color: var(--text-primary); font-size: 15px; }
.contact-info-list .txt span, .contact-info-list .txt a { color: var(--text-secondary); font-size: 14px; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 24px; }
.contact-map .img-slot { aspect-ratio: 3 / 1; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: var(--bg-secondary); }
.faq-q { width: 100%; text-align: left; padding: 16px 20px; background: transparent; border: 0; font-weight: 700; color: var(--text-primary); font-size: 15px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q .ico { transition: transform 0.3s ease; color: var(--accent); }
.faq-item.is-open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a__inner { padding: 0 20px 18px; color: var(--text-secondary); font-size: 14px; line-height: 1.8; }

/* ==========================================================================
   RESOURCE PAGE
   ========================================================================== */
.resource-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.resource-card {
  display: block; background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 28px; color: inherit; transition: var(--transition);
}
.resource-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: var(--shadow); }
.resource-card__ico {
  width: 60px; height: 60px; border-radius: var(--radius-sm); margin-bottom: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.resource-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--text-primary); }
.resource-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.resource-card .more { color: var(--accent-text); font-weight: 700; font-size: 14px; }

/* ==========================================================================
   PRODUCT DETAIL
   ========================================================================== */
.pd-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.pd-gallery__main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 16px; }
.pd-gallery__main .img-slot {
  aspect-ratio: 4 / 3;
  background: #fff;
}
.pd-gallery__main .img-slot > img,
.pd-thumb .img-slot > img {
  object-fit: contain;
  padding: 14px;
  box-sizing: border-box;
  background: #fff;
}
.pd-gallery__main .img-slot[style*="background-image"],
.pd-thumb .img-slot[style*="background-image"] {
  background-size: contain !important;
  background-repeat: no-repeat;
  background-color: #fff;
}
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pd-thumb { border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--border); cursor: pointer; transition: var(--transition); }
.pd-thumb.is-active, .pd-thumb:hover { border-color: var(--accent); }
.pd-thumb .img-slot { aspect-ratio: 1 / 1; }
.pd-info h1 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.pd-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 18px; }
.pd-meta .pill { background: var(--surface-elevated); border: 1px solid var(--accent-light); color: var(--accent-hover); padding: 6px 14px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; }
.pd-info__desc { color: var(--text-secondary); font-size: 15.5px; line-height: 1.85; }
.pd-info__desc p { margin-bottom: 14px; }
.pd-features { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.pd-feature { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-secondary); border: 1px solid var(--border); padding: 8px 14px; border-radius: var(--radius-pill); font-size: 13.5px; font-weight: 600; color: var(--text-primary); }
.pd-feature .ico { color: var(--accent); }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.spec-table th { color: var(--text-secondary); font-weight: 600; width: 40%; }
.spec-table td { color: var(--text-primary); font-weight: 600; }

/* ==========================================================================
   BLOG DETAIL
   ========================================================================== */
.blog-article { max-width: 820px; margin: 0 auto; }
.blog-article__hero { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 32px; }
.blog-article__hero .img-slot { aspect-ratio: 12 / 5; }
.blog-article__meta { display: flex; gap: 14px; flex-wrap: wrap; color: var(--text-secondary); font-size: 14px; margin-bottom: 18px; }
.blog-article__meta .tag { color: var(--accent-text); font-weight: 600; }
.blog-article h2 { font-size: 26px; margin: 32px 0 14px; }
.blog-article h3 { font-size: 21px; margin: 26px 0 12px; }
.blog-article p { color: var(--text-secondary); font-size: 16px; line-height: 1.9; margin-bottom: 16px; }
.blog-article ul { margin: 0 0 18px 22px; color: var(--text-secondary); font-size: 16px; line-height: 1.9; }
.blog-article ul li { list-style: disc; margin-bottom: 8px; }
.blog-article__inline { border-radius: var(--radius-sm); overflow: hidden; margin: 24px 0; box-shadow: var(--shadow-sm); }
.blog-article__inline .img-slot { aspect-ratio: 2 / 1; }
.author-box { display: flex; align-items: center; gap: 14px; margin-top: 40px; padding: 20px; background: var(--bg-soft); border-radius: var(--radius); }
.author-box__avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.author-box__name { font-weight: 700; color: var(--text-primary); }
.author-box__role { font-size: 13px; color: var(--text-secondary); }

/* ==========================================================================
   GLOBAL SERVICE / TOP SEARCH
   ========================================================================== */
.gs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gs-card { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px; transition: var(--transition); }
.gs-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: var(--shadow); }
.gs-card__ico { width: 56px; height: 56px; border-radius: var(--radius-sm); margin-bottom: 16px; background: linear-gradient(135deg, var(--accent), var(--accent-light)); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.gs-card h3 { font-size: 18px; margin-bottom: 10px; }
.gs-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

.kw-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.kw-tag { display: inline-block; padding: 10px 18px; border-radius: var(--radius-pill); background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-secondary); font-size: 14px; font-weight: 600; transition: var(--transition); }
.kw-tag:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition);
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-hover); transform: translateY(-4px); }

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */
@media (max-width: 1120px) {
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }
  .main-nav {
    position: fixed; top: 0; inset-inline-end: 0; height: 100dvh; width: 84%; max-width: min(360px, calc(100vw - 36px));
    background: var(--bg-secondary); box-shadow: -10px 0 40px rgba(43, 18, 36, 0.18);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 88px 18px 24px; transform: translate3d(100%, 0, 0); transition: transform 0.35s ease; z-index: 1001;
    visibility: hidden; pointer-events: none; overflow-y: auto;
  }
  .main-nav.is-open { transform: translate3d(0, 0, 0); visibility: visible; pointer-events: auto; }
  .nav-list { flex-direction: column; width: 100%; gap: 0; }
  .nav-link { padding: 14px 12px; border-bottom: 1px solid var(--border); border-radius: 0; text-transform: none; }
  .nav-item:hover > .nav-link, .nav-item.is-active > .nav-link { background: var(--surface-elevated); }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-radius: 0; background: var(--bg-soft); display: none; padding: 0 0 6px;
  }
  .nav-item.has-dropdown.is-open > .dropdown { display: block; }
  .dropdown a { padding: 10px 18px; border-bottom: 0; }
  .nav-cta--mobile { display: block; margin: 18px 0 0; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .factory-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .factory-grid, .factory-bento { grid-template-columns: repeat(3, 1fr); }
  .factory-card--wide { grid-column: span 1; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .why-grid, .catalog-layout, .contact-layout, .pd-layout { grid-template-columns: 1fr; gap: 40px; }
  .pd-info { order: 1; }
  .pd-gallery { order: 2; }
  .data-grid, .team-grid, .resource-cards, .gs-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { height: 480px; }
  .hero__dots { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .cert-evidence-grid { grid-template-columns: 1fr; }
  .cert-check-grid { grid-template-columns: 1fr 1fr; }
  .about-visual__deco { display: none; }
  .about-badge { right: 0; }
  .cat-index-list { columns: 1; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 40px 24px; }
}
@media (max-width: 520px) {
  .adv-grid, .process-grid, .factory-grid, .factory-bento, .cat-grid,
  .data-grid, .team-grid, .resource-cards, .gs-grid, .reviews-grid, .cert-grid, .cert-evidence-grid, .cert-check-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .top-bar .container { justify-content: center; }
  .top-bar { padding: 7px 0; font-size: 11px; }
  .top-bar__contact a:first-child { display: none; }
  .site-header__inner { height: 64px; }
  .brand img { height: 34px; }
}

/* ==========================================================================
   B2B manufacturer homepage
   ========================================================================== */
.hero--b2b { height: min(600px, calc(100dvh - 112px)); min-height: 500px; }
.hero--b2b .hero__text { max-width: 760px; }
.hero--b2b .hero__text h1 { max-width: 760px; }
.hero--b2b .hero__desc { max-width: 640px; }

.buyer-strip {
  background: #2b1224;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.buyer-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.buyer-strip__grid > div {
  position: relative;
  padding: 28px 30px 28px 48px;
  border-inline-end: 1px solid rgba(255, 255, 255, .12);
}
.buyer-strip__grid > div:last-child { border-inline-end: 0; }
.buyer-strip__grid > div::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 26px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.buyer-strip strong { display: block; color: #fff; font-size: 14px; margin-bottom: 5px; }
.buyer-strip span { display: block; color: rgba(255, 255, 255, .68); font-size: 12px; line-height: 1.5; }

.home-about-section {
  background: #fff;
}
.home-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
  gap: 62px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(236, 72, 153, .1);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(43, 18, 36, .07);
}
.home-about__copy p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 16px;
}
.home-product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 28px;
}
.home-product-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}
.home-product-pills a:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.home-about__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.home-about__video {
  position: relative;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 28px;
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(43, 18, 36, .18);
}
.home-about__video::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
  pointer-events: none;
  z-index: 1;
}
.home-about__video video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.home-about__video figcaption {
  padding: 12px 16px;
  color: rgba(255, 255, 255, .76);
  background: #2b1224;
  font-size: 13px;
  line-height: 1.55;
}
.home-advantage-section {
  position: relative;
  overflow: hidden;
  background: #2b1224;
}
.home-advantage-section::before {
  content: none;
}
.home-advantage-section > .container { position: relative; z-index: 1; }
.home-advantage-section .section-label {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
}
.home-advantage-section .section-title {
  color: #fff;
}
.home-advantage-section .section-subtitle {
  color: rgba(255, 255, 255, .78);
}
.home-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.home-advantage-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 218px;
  padding: 24px 22px;
  border: 1px solid rgba(236, 72, 153, .22);
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 0 14px rgba(236, 72, 153, .1),
    0 16px 42px rgba(43, 18, 36, .055);
  cursor: pointer;
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}
.home-advantage-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .92);
  pointer-events: none;
  transition: border-color .28s ease, box-shadow .28s ease;
}
.home-advantage-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 0;
  border-radius: 24px 24px 0 0;
  background: #ec4899;
  box-shadow: 0 0 0 rgba(236, 72, 153, 0);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  transition:
    height .2s ease,
    opacity .2s ease,
    box-shadow .2s ease,
    transform .48s cubic-bezier(.18, .78, .18, 1);
}
.home-advantage-card > *:not(.home-advantage-run-border) { position: relative; z-index: 2; }
.home-advantage-card:hover,
.home-advantage-card:focus,
.home-advantage-card:focus-visible,
.home-advantage-card.is-tapped {
  transform: translateY(-6px);
  border-color: #ff4fbc;
  box-shadow:
    0 0 12px rgba(255, 79, 188, .62),
    0 0 28px rgba(255, 79, 188, .28),
    0 22px 50px rgba(43, 18, 36, .12);
  outline: none;
}
.home-advantage-card:hover::before,
.home-advantage-card:focus::before,
.home-advantage-card:focus-visible::before,
.home-advantage-card.is-tapped::before {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .92),
    0 0 16px rgba(255, 79, 188, .52);
}
.home-advantage-card:hover::after,
.home-advantage-card:focus::after,
.home-advantage-card:focus-visible::after,
.home-advantage-card.is-tapped::after {
  height: 2px;
  opacity: 1;
  transform: scaleX(1);
  box-shadow:
    0 0 10px rgba(255, 79, 188, .62),
    0 0 18px rgba(255, 79, 188, .28);
}
.home-advantage-run-border,
.home-advantage-run-border span {
  display: none;
}
.home-advantage-card:active {
  transform: translateY(-8px) scale(1.018);
}
.home-advantage-card.is-tapped {
  animation: advantage-card-tap .46s cubic-bezier(.2, .8, .2, 1);
}
.home-advantage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}
.home-advantage-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(236, 72, 153, .12);
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 900;
}
.home-advantage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(236, 72, 153, .14);
  box-shadow: 0 10px 26px rgba(43, 18, 36, .06);
  font-size: 20px;
  line-height: 1;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.home-advantage-card:hover .home-advantage-icon,
.home-advantage-card:focus-within .home-advantage-icon,
.home-advantage-card:active .home-advantage-icon {
  transform: translateY(-2px);
  border-color: rgba(236, 72, 153, .28);
  box-shadow: 0 12px 30px rgba(43, 18, 36, .08);
}
.home-advantage-card h3 {
  margin-bottom: 10px;
  font-size: 17px;
  color: var(--text-primary);
}
.home-advantage-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}
@keyframes advantage-card-tap {
  0% { transform: translateY(-6px) scale(1); }
  42% { transform: translateY(-10px) scale(1.025); }
  100% { transform: translateY(-6px) scale(1); }
}
.home-certification {
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(236, 72, 153, .1);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(43, 18, 36, .065);
}
.home-certification__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 28px;
  border: 8px solid #fff;
  background: var(--bg-secondary);
  box-shadow: 0 26px 70px rgba(43, 18, 36, .15);
}
.home-certification__media img { object-fit: cover; }
.home-certification__copy p {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 22px;
}
.home-cert-list {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}
.home-cert-list div {
  padding: 16px 18px;
  border: 1px solid rgba(236, 72, 153, .12);
  border-radius: 16px;
  background: rgba(255, 245, 249, .72);
}
.home-cert-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text-primary);
  font-size: 14px;
}
.home-cert-list span {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}
.home-review-section {
  position: relative;
  overflow: hidden;
  background: #f7eff8;
}
.home-review-section > .container { position: relative; z-index: 1; }
.home-review-section .review-card {
  background: #fff;
}
.home-review-section .review-card--featured::after {
  content: none;
}
.home-review-section .reviewer__avatar {
  background: var(--accent);
}
.home-final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  padding: 30px 32px;
  border: 1px solid rgba(236, 72, 153, .14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(43, 18, 36, .07);
}
.home-final-cta h3 {
  margin-bottom: 8px;
  font-size: 24px;
  color: var(--text-primary);
}
.home-final-cta p {
  max-width: 780px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.section__head--compact { max-width: 720px; margin-inline: auto; }
.collection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.collection-card {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 20px; align-items: center;
  min-height: 154px; padding: 26px; color: inherit; background: var(--bg-secondary);
  border: 1px solid var(--border); border-radius: var(--radius); transition: var(--transition);
}
.collection-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.collection-card__code {
  width: 58px; height: 58px; display: grid; place-items: center; border-radius: var(--radius-sm);
  background: var(--surface-elevated); color: var(--accent-hover); font-size: 12px; font-weight: 800; letter-spacing: .08em;
}
.collection-card h3 { margin-bottom: 6px; font-size: 18px; }
.collection-card p { margin-bottom: 8px; color: var(--text-secondary); font-size: 13px; line-height: 1.55; }
.collection-card__meta { color: var(--text-muted); font-size: 12px; }
.collection-card__link { color: var(--accent-text); font-size: 13px; font-weight: 700; white-space: nowrap; }

/* ===== Steps flow (about page): 3D flip-in cards, no track or dots ===== */
.steps-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0; padding: 0;
  perspective: 1100px;
}
.steps-flow__item { min-width: 0; }
.steps-flow__card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  opacity: 0;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.steps-flow__card h3 {
  font-size: 18px; margin-bottom: 12px;
  position: relative; display: inline-block;
}
.steps-flow__card h3::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
}
.steps-flow__card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }
/* staggered 3D flip-in when the block scrolls into view */
.steps-flow.is-visible .steps-flow__item:nth-child(1) .steps-flow__card { animation: stepFlipIn .65s cubic-bezier(.22, 1, .36, 1) .15s both; }
.steps-flow.is-visible .steps-flow__item:nth-child(2) .steps-flow__card { animation: stepFlipIn .65s cubic-bezier(.22, 1, .36, 1) .45s both; }
.steps-flow.is-visible .steps-flow__item:nth-child(3) .steps-flow__card { animation: stepFlipIn .65s cubic-bezier(.22, 1, .36, 1) .75s both; }
.steps-flow.is-visible .steps-flow__item:nth-child(4) .steps-flow__card { animation: stepFlipIn .65s cubic-bezier(.22, 1, .36, 1) 1.05s both; }
@keyframes stepFlipIn {
  from { opacity: 0; transform: rotateX(-62deg) translateY(26px); transform-origin: top center; }
  to   { opacity: 1; transform: rotateX(0) translateY(0); }
}
/* hover: gentle scale + accent underline sweeping under the title */
.steps-flow__item:hover .steps-flow__card {
  transform: scale(1.02);
  border-color: rgba(236, 72, 153, 0.45);
  box-shadow: 0 16px 36px rgba(236, 72, 153, 0.14);
}
.steps-flow__item:hover .steps-flow__card h3::after { transform: scaleX(1); }
@media (max-width: 1024px) {
  .steps-flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .steps-flow { grid-template-columns: 1fr; }
}

.sourcing-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.sourcing-copy > p { color: var(--text-secondary); line-height: 1.8; max-width: 620px; }
.sourcing-steps { margin: 28px 0 30px; counter-reset: sourcing; }
.sourcing-steps li { display: grid; grid-template-columns: 170px 1fr; gap: 22px; padding: 17px 0; border-bottom: 1px solid var(--border); }
.sourcing-steps strong { color: var(--text-primary); font-size: 14px; }
.sourcing-steps span { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.sourcing-image { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.sourcing-video {
  background: var(--ink);
  border: 1px solid var(--border);
}
.sourcing-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-proof { display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; }
.factory-proof__media { display: grid; grid-template-columns: 1fr .66fr; gap: 14px; align-items: end; }
.factory-proof__main, .factory-proof__secondary { overflow: hidden; border-radius: var(--radius); }
.factory-proof__main { aspect-ratio: 4 / 3; }
.factory-proof__secondary { aspect-ratio: 4 / 5; }
.factory-proof__text { color: var(--text-secondary); line-height: 1.8; margin: 18px 0 28px; }
.factory-proof__links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.evidence-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.evidence-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.evidence-card figure { aspect-ratio: 4 / 3; background: #fff; }
.evidence-card figure > img { object-fit: cover; }
.evidence-card figure[data-img-slot="evidence-loading-container"] > img {
  object-fit: contain;
  padding: 10px;
}
.evidence-card h3 { padding: 18px 18px 6px; font-size: 18px; color: var(--text-primary); }
.evidence-card p { padding: 0 18px 20px; color: var(--text-secondary); font-size: 14px; line-height: 1.65; }
.factory-video-strip {
  margin-top: 24px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 20%, rgba(236, 72, 153, .12), transparent 34%),
    linear-gradient(135deg, #fff 0%, var(--surface-elevated) 100%);
  box-shadow: var(--shadow-sm);
}
.factory-video-strip h3 { margin: 4px 0 8px; font-size: 22px; color: var(--text-primary); }
.factory-video-strip p { color: var(--text-secondary); line-height: 1.65; max-width: 740px; }
.factory-media-grid,
.export-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}
.factory-media-card,
.export-proof-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-sm);
}
.factory-media-card video,
.export-proof-card video,
.export-proof-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ink);
}
.factory-media-card div,
.export-proof-card div { padding: 18px 20px 22px; }
.factory-media-card h3,
.export-proof-card h3 { margin-bottom: 8px; font-size: 18px; color: var(--text-primary); }
.factory-media-card p,
.export-proof-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.65; }
.export-proof-grid--services {
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.35fr);
  align-items: stretch;
}
.export-proof-stack {
  display: grid;
  gap: 16px;
}
.export-proof-card--compact {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: stretch;
}
.export-proof-card--compact img {
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
  padding: 8px;
}
.export-proof-grid--services .export-proof-card--video video {
  min-height: 330px;
}
.document-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-sm);
}
.document-proof figure { aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--radius); background: #fff; }
.document-proof figure img { object-fit: cover; }
.document-proof h3 { margin: 8px 0 12px; font-size: clamp(22px, 3vw, 32px); color: var(--text-primary); }
.document-proof p { color: var(--text-secondary); line-height: 1.8; }
.guide-proof-media {
  margin: 18px 0 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-sm);
}
.guide-proof-media img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.guide-proof-media figcaption {
  padding: 12px 16px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}
.text-link { color: var(--accent-text); font-weight: 700; }

@media (max-width: 1024px) {
  .buyer-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .buyer-strip__grid > div:nth-child(2) { border-inline-end: 0; }
  .home-about, .home-certification { grid-template-columns: 1fr; gap: 36px; }
  .home-advantage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sourcing-layout, .factory-proof { grid-template-columns: 1fr; gap: 40px; }
  .factory-media-grid, .export-proof-grid { grid-template-columns: 1fr 1fr; }
  .export-proof-grid--services { grid-template-columns: 1fr; }
  .document-proof { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero--b2b { min-height: 510px; height: auto; }
  .hero--b2b .hero__content { min-height: 510px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card { grid-template-columns: 54px 1fr; }
  .collection-card__link { grid-column: 2; }
  .home-final-cta { display: block; }
  .home-final-cta .btn { margin-top: 18px; }
}

@media (max-width: 520px) {
  .buyer-strip__grid { grid-template-columns: 1fr; }
  .buyer-strip__grid > div { padding: 17px 4px; border-inline-end: 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
  .home-advantage-grid { grid-template-columns: 1fr; }
  .home-about__video figcaption { display: none; }
  .collection-card { grid-template-columns: 1fr; gap: 12px; padding: 22px; }
  .collection-card__link { grid-column: auto; }
  .sourcing-steps li { grid-template-columns: 1fr; gap: 5px; }
  .factory-proof__media { grid-template-columns: 1fr; }
  .factory-proof__secondary { display: none; }
  .factory-video-strip { display: block; padding: 22px; }
  .factory-video-strip .btn { margin-top: 18px; }
  .factory-media-grid, .export-proof-grid { grid-template-columns: 1fr; }
  .export-proof-card--compact { grid-template-columns: 104px minmax(0, 1fr); }
}

/* ==========================================================================
   Wholesale product browser
   ========================================================================== */
.page-hero--buyer .btn { margin-top: 24px; }
.products-browser { padding-top: 54px; }
.products-browser__intro { display: grid; grid-template-columns: 1fr .8fr; gap: 48px; align-items: end; margin-bottom: 30px; }
.products-browser__intro .section-title { margin-bottom: 0; }
.products-browser__intro > p { color: var(--text-secondary); line-height: 1.75; }
.filter-panel { padding: 20px; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 18px; }
.filter-group { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: center; }
.filter-group + .filter-group { margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--border); }
.filter-group__label { color: var(--text-primary); font-size: 12px; font-weight: 800; }
.filter-scroll { display: flex; gap: 8px; flex-wrap: wrap; min-width: 0; }
.filter-panel .filter-chip { padding: 8px 13px; font-size: 12px; }
.products-results-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin: 18px 0; }
.products-results-row p { color: var(--text-secondary); font-size: 13px; }
.products-results-row a { color: var(--accent-text); font-size: 13px; font-weight: 700; }
.product-grid .product-card { content-visibility: auto; contain-intrinsic-size: 420px; }
.product-card__note { color: var(--text-secondary); font-size: 12px; line-height: 1.5; margin-top: 12px; }
.product-empty-state {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin: 16px 0 24px;
  padding: 30px;
}
.product-empty-state h3 { font-size: 24px; margin: 8px 0 10px; }
.product-empty-state p { color: var(--text-secondary); max-width: 760px; margin-bottom: 18px; }
.show-more-wrap { display: flex; justify-content: center; margin-top: 34px; }
.show-more-wrap [hidden] { display: none; }
.buyer-note { display: grid; grid-template-columns: 1fr 1fr auto; gap: 36px; align-items: center; }
.buyer-note .section-title { margin-bottom: 0; font-size: clamp(24px, 3vw, 34px); }
.buyer-note > p { color: var(--text-secondary); line-height: 1.75; }
.page-hero--collection {
  padding: 74px 0 64px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(236, 64, 150, .30), transparent 32%),
    linear-gradient(135deg, #2a0721 0%, #451536 52%, #7c2355 100%);
}
.breadcrumb--hero { margin-bottom: 28px; }
.breadcrumb--hero,
.breadcrumb--hero a { color: rgba(255,255,255,.76); }
.breadcrumb--hero .current { color: #fff; }
.collection-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 46px; align-items: center; }
.collection-hero-grid h1 { max-width: 760px; font-size: clamp(40px, 5vw, 72px); line-height: 1.02; margin: 14px 0 20px; }
.collection-hero-grid p { max-width: 760px; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.8; }
.collection-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.collection-buyer-box {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.collection-buyer-box h2 { color: #fff; font-size: 22px; margin-bottom: 16px; }
.collection-buyer-box ul { display: grid; gap: 11px; color: rgba(255,255,255,.82); font-size: 14px; }
.collection-buyer-box li { position: relative; padding-left: 20px; }
.collection-buyer-box li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-light); font-weight: 900; }
.collection-final-cta {
  margin-top: 36px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-sm);
}
.collection-final-cta h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 10px; }
.collection-final-cta p { max-width: 760px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; }
.collection-buying-guide {
  margin-top: 38px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, var(--bg-secondary) 100%);
  box-shadow: var(--shadow-sm);
}
.collection-buying-guide h2 { font-size: clamp(26px, 3vw, 38px); margin: 8px 0 16px; }
.collection-buying-guide p { color: var(--text-secondary); line-height: 1.85; margin-top: 14px; }

.buyer-guide-page { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 44px; align-items: start; }
.buyer-guide-page article {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  box-shadow: var(--shadow-sm);
}
.buyer-guide-page article h2 { font-size: 28px; margin: 24px 0 10px; }
.buyer-guide-page article h2:first-child { margin-top: 0; }
.buyer-guide-page article p { color: var(--text-secondary); line-height: 1.85; margin-bottom: 12px; }
.buyer-guide-aside {
  position: sticky;
  top: 96px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface-elevated);
  box-shadow: var(--shadow-sm);
}
.buyer-guide-aside h2 { font-size: 22px; margin-bottom: 16px; }
.buyer-guide-aside ul { display: grid; gap: 11px; margin-bottom: 22px; color: var(--text-secondary); }
.buyer-guide-aside li { position: relative; padding-left: 18px; }
.buyer-guide-aside li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-text); font-weight: 900; }

@media (max-width: 768px) {
  .page-hero--collection { padding: 42px 0 46px; }
  .collection-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .collection-buyer-box { padding: 22px; border-radius: 22px; }
  .products-browser__intro, .buyer-note { grid-template-columns: 1fr; gap: 20px; }
  .buyer-guide-page { grid-template-columns: 1fr; gap: 22px; }
  .buyer-guide-page article, .buyer-guide-aside, .collection-buying-guide { padding: 22px; border-radius: 22px; }
  .buyer-guide-aside { position: static; }
  .filter-group { grid-template-columns: 1fr; gap: 8px; }
  .filter-scroll { flex-wrap: nowrap; overflow-x: auto; overscroll-behavior-inline: contain; padding-bottom: 5px; }
  .filter-chip { flex: 0 0 auto; }
  .products-results-row { align-items: flex-start; flex-direction: column; gap: 6px; }
}

@media (max-width: 1120px) {
  .evidence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .evidence-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Wholesale product detail
   ========================================================================== */
.product-detail { padding-top: 32px; }
.pd-sku { color: var(--accent-text); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.pd-summary { color: var(--text-secondary); font-size: 16px; line-height: 1.75; margin: 14px 0 20px; }
.pd-key-facts { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.pd-key-facts div { padding: 14px 16px; background: var(--bg-secondary); border-bottom: 1px solid var(--border); }
.pd-key-facts div:nth-child(odd) { border-inline-end: 1px solid var(--border); }
.pd-key-facts div:nth-last-child(-n+2) { border-bottom: 0; }
.pd-key-facts dt { color: var(--text-muted); font-size: 11px; margin-bottom: 3px; }
.pd-key-facts dd { color: var(--text-primary); font-size: 14px; font-weight: 700; }
.pd-primary-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.pd-confirmation-note { margin: -6px 0 24px; padding: 12px 14px; border: 1px solid var(--accent-light); border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(236, 69, 154, .08), rgba(255, 255, 255, .92)); color: var(--text-secondary); font-size: 13px; font-weight: 700; line-height: 1.55; }
.pd-order-panel { padding: 22px; border-radius: var(--radius); background: var(--surface-elevated); border: 1px solid var(--accent-light); }
.pd-order-panel h2 { font-size: 18px; margin-bottom: 12px; }
.pd-quote-guide { margin-top: 16px; padding: 20px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(43, 18, 36, .06); }
.pd-quote-guide h2 { font-size: 18px; margin-bottom: 8px; }
.pd-quote-guide p { color: var(--text-secondary); font-size: 13px; line-height: 1.65; margin-bottom: 12px; }
.pd-quote-guide ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.pd-quote-guide li { padding: 12px; border-radius: var(--radius-sm); background: var(--bg-primary); border: 1px solid var(--border); }
.pd-quote-guide strong { display: block; color: var(--text-primary); font-size: 13px; margin-bottom: 4px; }
.pd-quote-guide span { display: block; color: var(--text-muted); font-size: 12px; line-height: 1.5; }
.order-data-request strong { display: block; color: var(--text-primary); margin-bottom: 6px; }
.order-data-request p { color: var(--text-secondary); font-size: 13px; line-height: 1.65; margin-bottom: 10px; }
.order-data-request a { color: var(--accent-text); font-size: 13px; font-weight: 800; }
.order-data { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.order-data div { padding: 12px; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.order-data dt { color: var(--text-muted); font-size: 11px; }
.order-data dd { color: var(--text-primary); font-size: 13px; font-weight: 700; }
.pd-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.pd-content-grid h2 { font-size: 26px; margin: 8px 0 18px; }
.spec-note { color: var(--text-muted); font-size: 12px; line-height: 1.6; margin-top: 14px; }
.pd-support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.pd-support-grid article { padding: 30px; background: var(--bg-secondary); }
.pd-support-index { color: var(--accent); font-size: 12px; font-weight: 800; }
.pd-support-grid h2 { font-size: 20px; margin: 34px 0 12px; }
.pd-support-grid p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.pd-support-grid a { color: var(--accent-text); font-size: 13px; font-weight: 800; }
.mobile-conversion-bar { display: none; }
.inquiry-basket {
  position: fixed;
  inset-inline: auto 24px;
  bottom: 24px;
  z-index: 940;
  width: min(420px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--accent-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 45px rgba(43, 18, 36, .16);
  backdrop-filter: blur(12px);
}
.inquiry-basket[hidden] { display: none; }
.inquiry-basket strong { display: block; color: var(--text-primary); font-size: 14px; margin-bottom: 3px; }
.inquiry-basket span { display: block; color: var(--text-secondary); font-size: 12px; line-height: 1.45; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.inquiry-basket__actions { display: flex; gap: 8px; align-items: center; }

@media (max-width: 1024px) {
  .pd-content-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 768px) {
  body:has(.mobile-conversion-bar) { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .pd-support-grid { grid-template-columns: 1fr; }
  .pd-quote-guide ul { grid-template-columns: 1fr; }
  .inquiry-basket {
    inset-inline: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: 1fr;
  }
  .inquiry-basket__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .inquiry-basket__actions .btn { justify-content: center; }
  .mobile-conversion-bar {
    position: fixed; inset-inline: 0; bottom: 0; z-index: 950; display: grid; grid-template-columns: 1fr 1fr;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .97);
    border-top: 1px solid var(--border); box-shadow: 0 -10px 30px rgba(43, 18, 36, .12);
  }
  .mobile-conversion-bar a { padding: 12px 8px; text-align: center; font-size: 13px; font-weight: 800; color: var(--accent-text); border: 1px solid var(--accent); }
  .mobile-conversion-bar a:first-child { color: #fff; background: var(--accent); border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
  .mobile-conversion-bar a:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
}

@media (max-width: 520px) {
  .pd-key-facts { grid-template-columns: 1fr; }
  .pd-key-facts div, .pd-key-facts div:nth-child(odd), .pd-key-facts div:nth-last-child(-n+2) { border-inline-end: 0; border-bottom: 1px solid var(--border); }
  .pd-key-facts div:last-child { border-bottom: 0; }
  .pd-primary-actions { flex-direction: column; }
  .pd-primary-actions .btn { width: 100%; }
}

/* ==========================================================================
   Wholesale inquiry, catalog and services
   ========================================================================== */
.contact-layout--buyer { grid-template-columns: .78fr 1.22fr; gap: 54px; }
.contact-aside h2, .inquiry-card h2 { font-size: 28px; margin: 8px 0 16px; }
.contact-aside > p { color: var(--text-secondary); line-height: 1.8; }
.contact-direct { margin: 28px 0; border-top: 1px solid var(--border); }
.contact-direct div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.contact-direct dt { color: var(--text-muted); font-size: 12px; font-weight: 700; }
.contact-direct dd { color: var(--text-primary); font-size: 14px; font-weight: 600; }
.contact-direct a { color: var(--accent-text); overflow-wrap: anywhere; }
.inquiry-expectation { padding: 22px; background: var(--surface-elevated); border: 1px solid var(--accent-light); border-radius: var(--radius); }
.inquiry-expectation strong { display: block; margin-bottom: 10px; }
.inquiry-expectation li { color: var(--text-secondary); font-size: 13px; padding: 5px 0; }
.inquiry-card { padding: 30px; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.form-grid--public { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 16px; }
.form-grid--public .field--full { grid-column: 1 / -1; }
.form-contact-note { color: var(--text-muted); font-size: 12px; line-height: 1.6; margin: -2px 0 16px; }
.field .is-invalid { border-color: #b42318; box-shadow: 0 0 0 3px rgba(180, 35, 24, .1); }
.form-error { display: none; margin-top: 14px; padding: 12px 14px; color: #8a1c13; background: #fff1f0; border: 1px solid #f3b8b2; border-radius: var(--radius-sm); font-size: 13px; line-height: 1.6; }
.form-error.is-shown { display: block; }
.faq-list { max-width: 820px; margin-inline: auto; }

.catalog-download { max-width: 440px; }
.catalog-download .btn { margin-top: 18px; }
.catalog-copy { padding-top: 18px; }
.catalog-copy > p { color: var(--text-secondary); line-height: 1.8; margin: 18px 0 22px; }
.catalog-checklist { margin: 0 0 28px; }
.catalog-checklist li { padding: 13px 0; color: var(--text-secondary); border-bottom: 1px solid var(--border); font-size: 14px; }

.service-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.service-process article { min-height: 220px; padding: 28px; background: var(--bg-secondary); }
.service-process span { color: var(--accent); font-size: 12px; font-weight: 800; }
.service-process h3 { font-size: 18px; margin: 38px 0 10px; }
.service-process p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }
.service-note { display: grid; grid-template-columns: 1fr 1fr auto; gap: 36px; align-items: center; }
.service-note .section-title { margin-bottom: 0; font-size: clamp(24px, 3vw, 34px); }
.service-note > p { color: var(--text-secondary); line-height: 1.75; }

@media (max-width: 1024px) {
  .contact-layout--buyer { grid-template-columns: 1fr; }
  .service-process { grid-template-columns: repeat(2, 1fr); }
  .service-note { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 520px) {
  .inquiry-card { padding: 22px 18px; }
  .form-grid--public { grid-template-columns: 1fr; }
  .form-grid--public .field--full { grid-column: auto; }
  .contact-direct div { grid-template-columns: 90px 1fr; }
  .service-process { grid-template-columns: 1fr; }
  .service-process article { min-height: 0; }
}

/* ==========================================================================
   Global Service page redesign
   ========================================================================== */
.section--services { padding-bottom: 72px; }
.section--services .section__head--left { margin-left: 0; text-align: left; }
.section--services .section-subtitle--left { margin-left: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 22px 46px rgba(236, 72, 153, 0.18);
}
.service-card__icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}
.service-card:hover .service-card__icon {
  transform: translateY(-4px) scale(1.08) rotate(-3deg);
}
.service-card__icon svg { display: block; }
.service-card__num {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800; line-height: 1;
  color: var(--accent); opacity: 0.16;
}
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; }

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
  background: var(--ink);
}
.proof-card img,
.proof-card video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.proof-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43, 18, 36, 0.9) 0%, rgba(43, 18, 36, 0.25) 55%, transparent 100%);
}
.proof-card__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 26px;
  color: #fff;
}
.proof-card__caption h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.proof-card__caption p { color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.65; }
.proof-card { transition: transform .4s ease, box-shadow .4s ease; }
.proof-card::after {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 42%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.30), transparent);
  transform: translateY(-130%);
  opacity: 0; z-index: 4; pointer-events: none;
}
.proof-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(43,18,36,0.28); }
.proof-card:hover::after { opacity: 1; animation: scanSweep 2.6s ease-in-out infinite; }
@keyframes scanSweep { 0% { transform: translateY(-130%); } 100% { transform: translateY(300%); } }

.section--dark-cta {
  background: var(--ink);
  position: relative; overflow: hidden;
}
.section--dark-cta::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.16) 0%, transparent 70%);
}
.section--dark-cta::after {
  content: '';
  position: absolute; bottom: -100px; left: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, transparent 70%);
}
.service-cta {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: center;
}
.service-cta__text p { color: rgba(255,255,255,0.78); line-height: 1.75; margin-top: 14px; }

@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-gallery { grid-template-columns: repeat(2, 1fr); }
  .proof-card { aspect-ratio: 4 / 3; }
  .service-cta { grid-template-columns: 1fr; gap: 24px; text-align: center; }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .proof-gallery { grid-template-columns: 1fr; }
  .proof-card { aspect-ratio: 16 / 10; }
  .service-cta { text-align: left; }
}

/* ===== Respect reduced-motion preference ===== */
@media (prefers-reduced-motion: reduce) {
  .proof-card::after { animation: none !important; }
}

/* ==========================================================================
   BLOG LISTING (editorial article list)
   ========================================================================== */
.section--flush-top { padding-top: 0; }

.blog-list {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.blog-list .blog-card {
  background: transparent; border: 0; border-radius: 0;
  border-bottom: 1px solid var(--border);
  transition: none;
}
.blog-list .blog-card:hover { transform: none; border-color: var(--border); box-shadow: none; }
.blog-list .blog-card a {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 26px 0; color: inherit;
}
.blog-list .blog-card__media {
  flex: 0 0 240px; aspect-ratio: 16 / 9;
  border-radius: 10px; overflow: hidden;
}
.blog-list .blog-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-list .blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-list .blog-card__body { flex: 1; padding: 0; display: flex; flex-direction: column; }
.blog-list .blog-card__meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--text-secondary); margin-bottom: 8px;
}
.blog-list .blog-card__meta .tag {
  background: none; padding: 0; border-radius: 0;
  color: var(--accent-text); font-weight: 700;
}
.blog-list .blog-card__meta .tag::after {
  content: "\00B7"; margin-left: 8px;
  color: var(--text-secondary); font-weight: 400;
}
.blog-list .blog-card__title {
  font-size: 20px; font-weight: 700; line-height: 1.4; margin-bottom: 8px;
  color: var(--text-primary); transition: color 0.25s ease;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-list .blog-card:hover .blog-card__title { color: var(--accent-text); }
.blog-list .blog-card__excerpt {
  font-size: 14px; line-height: 1.7; color: var(--text-secondary);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-list .blog-card__more {
  margin-top: 10px; padding-top: 0; display: inline-block;
  font-size: 13px; font-weight: 700; color: var(--accent-text);
  transition: transform 0.3s ease;
}
.blog-list .blog-card:hover .blog-card__more { transform: translateX(4px); }

@media (max-width: 768px) {
  .blog-list .blog-card a { flex-direction: column; gap: 14px; padding: 20px 0; }
  .blog-list .blog-card__media { flex: none; width: 100%; }
  .blog-list .blog-card__title { font-size: 17px; }
}

/* ===== Respect reduced-motion preference ===== */
@media (prefers-reduced-motion: reduce) {
  .blog-list .blog-card__media img, .blog-list .blog-card__more { transition: none !important; }
}
