/* ============================
   Cinfee Custom Works — styles
   Business / foreign-trade site
   ============================ */

:root {
  /* Brand palette — matches Cinfee logo (royal blue + orange)
     primary tuned to a slightly deeper royal blue for business gravitas */
  --navy: #1740d0;       /* primary brand blue (logo) — one shade deeper */
  --navy-2: #1330b0;     /* hover/active blue */
  --navy-3: #0f2494;     /* deepest accent */
  --navy-deep: #081770;  /* dark section background */
  --gold: #f26a21;       /* brand orange (logo stars) */
  --gold-2: #d8571a;     /* orange hover */
  --ink: #1c2433;
  --ink-2: #3a455a;
  --muted: #6b7689;
  --line: #e3e6ee;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --bg-dark: var(--navy-deep);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1200px;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; color: var(--navy); margin: 0 0 .5em; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
h3 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; color: var(--ink); }
p { margin: 0 0 1em; color: var(--ink-2); }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold); }

.accent { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  font-family: var(--font-sans);
}
.btn-primary { background: var(--gold); color: #ffffff; }
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-block { width: 100%; }

/* ===== Topbar ===== */
.topbar {
  background: var(--navy);
  color: #c8cfdc;
  font-size: .85rem;
  padding: 9px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: var(--gold); font-weight: 600; }
.topbar a:hover { color: #fff; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 700;
  border-radius: 8px;
  letter-spacing: -1px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--navy); letter-spacing: 1px; }
.brand-tag { font-size: .68rem; color: var(--muted); letter-spacing: .25em; text-transform: uppercase; margin-top: 4px; }
.brand-light .brand-mark { background: var(--gold); color: var(--navy); }
.brand-light .brand-name { color: #fff; }
.brand-light .brand-tag { color: #aab4c8; }

/* Real logo image (replaces text mark) */
.brand-img { height: 44px; width: auto; display: block; }
.footer-brand-logo { background: #fff; padding: 10px 14px; border-radius: 10px; height: 56px; width: auto; display: inline-block; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: .95rem; font-weight: 500; color: var(--ink); transition: color .2s; }
.nav a:hover { color: var(--gold-2); }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--navy-3); color: #fff !important; }

.menu-toggle {
  display: none;
  background: none; border: 0;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px; padding: 0;
  cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f7f8fc 0%, #eef1f7 100%);
  padding: 80px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(242,106,33,.08), transparent 50%),
              radial-gradient(circle at 10% 90%, rgba(30,63,224,.05), transparent 45%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; position: relative; }
.hero-copy h1 { margin-bottom: 18px; }
.lead { font-size: 1.1rem; color: var(--ink-2); max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 20px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; gap: 22px; flex-wrap: wrap; color: var(--ink-2); font-size: .95rem; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.check { color: var(--gold); font-weight: 700; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: -18px;
  background: var(--navy);
  color: #fff;
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: center;
  border-left: 4px solid var(--gold);
}
.hero-badge strong { font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold); line-height: 1; }
.hero-badge span { font-size: .78rem; color: #c8cfdc; margin-top: 4px; letter-spacing: .12em; text-transform: uppercase; }

/* ===== Values ===== */
.values { padding: 60px 0; background: #fff; border-bottom: 1px solid var(--line); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value {
  text-align: left;
  padding: 28px 22px;
  border-radius: var(--radius);
  transition: all .2s;
}
.value:hover { background: var(--bg-soft); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value h3 { margin-bottom: 8px; font-family: var(--font-sans); font-weight: 600; color: var(--navy); font-size: 1.05rem; }
.value p { font-size: .92rem; margin: 0; }

/* ===== Section heads ===== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--ink-2); font-size: 1.02rem; }

/* ===== Products ===== */
.products { padding: 90px 0; background: var(--bg-soft); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s ease;
  border: 1px solid var(--line);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-img {
  aspect-ratio: 4/3;
  background: #fff;
  overflow: hidden;
  display: grid; place-items: center;
  padding: 18px;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-card h3 { padding: 22px 24px 6px; font-size: 1.15rem; }
.product-card p { padding: 0 24px 16px; font-size: .92rem; margin: 0; color: var(--ink-2); }
.link-arrow { display: block; padding: 0 24px 24px; color: var(--gold-2); font-weight: 600; font-size: .9rem; }

/* ===== Craft ===== */
.craft { padding: 90px 0; background: #fff; }
.craft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.craft-step {
  padding: 32px 28px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  transition: all .2s;
}
.craft-step:hover { background: #fff; box-shadow: var(--shadow-md); }
.craft-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.craft-step h3 { color: var(--navy); margin-bottom: 10px; }
.craft-step p { margin: 0; font-size: .94rem; }

/* ===== Process ===== */
.process { padding: 90px 0; background: var(--bg-soft); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.process-step { text-align: center; position: relative; }
.process-circle {
  width: 72px; height: 72px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 22px;
  font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 700;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(242,106,33,.12);
}
.process-step h3 { margin-bottom: 8px; color: var(--navy); }
.process-step p { margin: 0; padding: 0 8px; font-size: .94rem; }

/* ===== Why ===== */
.why { padding: 90px 0; background: var(--bg-dark); color: #d6dde9; position: relative; overflow: hidden; }
.why::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(242,106,33,.12), transparent 50%);
  pointer-events: none;
}
.why-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; }
.why h2 { color: #fff; }
.why-copy p { color: #aab4c8; font-size: 1.04rem; }
.why-list { list-style: none; padding: 0; margin: 24px 0 32px; }
.why-list li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: #c8cfdc; }
.why-list li:last-child { border-bottom: 0; }
.why-list strong { color: #fff; font-weight: 600; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all .2s;
}
.stat:hover { background: rgba(242,106,33,.08); border-color: rgba(242,106,33,.3); }
.stat strong { display: block; font-family: var(--font-serif); font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat span { color: #aab4c8; font-size: .88rem; letter-spacing: .04em; }

/* ===== Testimonials ===== */
.testimonials { padding: 90px 0; background: #fff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: 10px; left: 20px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 1rem; }
.testimonial p { font-style: italic; color: var(--ink); margin-bottom: 18px; }
.testimonial-author strong { display: block; color: var(--navy); font-weight: 600; }
.testimonial-author span { color: var(--muted); font-size: .85rem; }

/* ===== FAQ ===== */
.faq { padding: 90px 0; background: var(--bg-soft); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 4px 0;
  transition: all .2s;
}
.faq details[open] { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: 0 24px 18px; margin: 0; color: var(--ink-2); }

/* ===== Contact ===== */
.contact { padding: 90px 0; background: var(--bg-dark); color: #d6dde9; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact h2 { color: #fff; }
.contact-info p { color: #aab4c8; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; gap: 4px; }
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-list a, .contact-list span { color: #c8cfdc; font-size: 1rem; }
.contact-list a:hover { color: var(--gold); }

.quote-form {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.quote-form label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.quote-form input, .quote-form select, .quote-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 0;
  border-color: var(--gold);
}
.quote-form textarea { resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); text-align: center; margin: 14px 0 0; }
.form-note.success { color: #1f7a3e; }
.form-note.error { color: #b53b3b; }

/* ===== Footer ===== */
.footer { background: #061357; color: #aab4c8; padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 1rem; font-family: var(--font-sans); font-weight: 600; margin-bottom: 16px; letter-spacing: .04em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: .92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-brand p { font-size: .92rem; color: #aab4c8; margin-top: 16px; max-width: 320px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: .82rem; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ===== Responsive ===== */
/* ============================
   Topbar right cluster (WhatsApp + lang switcher)
   ============================ */
.topbar { display: flex; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-right > .topbar-cta { color: rgba(255,255,255,.85); font-size: .8rem; }
.topbar-right a { color: #fff; font-weight: 600; }
.topbar-right a:hover { opacity: .85; }

/* ============================
   Brand w/ icon logo
   ============================ */
.brand-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer-brand-mark { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand-mark img { width: 44px; height: 44px; object-fit: contain; background: #fff; border-radius: 8px; padding: 4px; }
.footer-brand-mark .brand-name { color: #fff; }
.footer-brand-mark .brand-tag { display: block; }

/* ============================
   Language switcher (top-right of topbar)
   ============================ */
.lang-switcher { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .82rem; font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background .2s;
}
.lang-toggle:hover { background: rgba(255,255,255,.2); }
.lang-caret { font-size: .65rem; opacity: .8; }
.lang-current { letter-spacing: .04em; }
.lang-menu {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .18);
  padding: 6px;
  margin: 0; list-style: none;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: all .18s ease;
  z-index: 200;
}
.lang-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: .9rem;
}
.lang-menu a:hover { background: var(--bg-soft); color: var(--navy); }
.flag-icon {
  display: inline-block;
  width: 22px; height: 16px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  flex-shrink: 0;
}

/* ============================
   RTL (Arabic)
   ============================ */
html[dir="rtl"] body,
html[lang="ar"] body { font-family: 'Noto Sans Arabic', var(--font-sans); }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 {
  font-family: 'Noto Sans Arabic', var(--font-serif);
  letter-spacing: 0;
}
html[dir="rtl"] .brand-name { letter-spacing: 0; }
html[dir="rtl"] .hero-actions { flex-direction: row-reverse; }
html[dir="rtl"] .hero-points { padding: 0; }
html[dir="rtl"] .why-list { padding: 0; }
html[dir="rtl"] .contact-list { padding: 0; }
html[dir="rtl"] .topbar-inner { flex-direction: row-reverse; }
html[dir="rtl"] .header-inner { flex-direction: row-reverse; }
html[dir="rtl"] .nav { flex-direction: row-reverse; }
html[dir="rtl"] .lang-menu { inset-inline-end: 0; }
html[dir="rtl"] .footer-inner { direction: rtl; }
html[dir="rtl"] .product-features { padding-inline-start: 0; }

/* ============================
   Product detail page
   ============================ */
.pd-hero {
  background: linear-gradient(180deg, #f6f7fb 0%, #ffffff 100%);
  padding: 60px 0 40px;
}
.pd-hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.pd-hero-image { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px; box-shadow: var(--shadow-md); }
.pd-hero-image img { width: 100%; height: auto; max-height: 420px; object-fit: contain; }
.pd-breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.pd-breadcrumb a { color: var(--navy); }
.pd-breadcrumb a:hover { text-decoration: underline; }
.pd-tagline { font-size: 1.15rem; color: var(--ink-2); margin-bottom: 20px; }
.pd-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.pd-key-facts { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 18px; }
.pd-key-fact {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
}
.pd-key-fact strong { color: var(--navy); }

.pd-section { padding: 60px 0; }
.pd-section + .pd-section { padding-top: 0; }
.pd-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.pd-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 30px;
}
.pd-card h3 { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.pd-card ul { list-style: none; padding: 0; margin: 0; }
.pd-card li { padding: 8px 0 8px 24px; position: relative; color: var(--ink-2); font-size: .95rem; line-height: 1.5; border-bottom: 1px dashed var(--line); }
.pd-card li:last-child { border-bottom: 0; }
.pd-card li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--gold); font-weight: 700; }
.pd-card li strong { color: var(--ink); }
html[dir="rtl"] .pd-card li { padding: 8px 24px 8px 0; }
html[dir="rtl"] .pd-card li::before { left: auto; right: 0; }

.pd-uses { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.pd-use-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex; gap: 14px; align-items: flex-start;
}
.pd-use-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.pd-use-title { font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.pd-use-text { font-size: .85rem; color: var(--muted); }

.pd-process-list { list-style: none; padding: 0; margin: 0; }
.pd-process-list li {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.pd-process-list li:last-child { border-bottom: 0; }
.pd-process-num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .9rem; }
.pd-process-text { font-size: .95rem; color: var(--ink-2); line-height: 1.5; }

.pd-related { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.pd-related a {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  transition: all .2s;
}
.pd-related a:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.pd-related img { width: 100%; height: 140px; object-fit: contain; margin-bottom: 10px; }
.pd-related h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: var(--navy); margin: 0 0 4px; }
.pd-related span { font-size: .85rem; color: var(--muted); }

.pd-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
}
.pd-cta h2 { color: #fff; margin-bottom: 12px; }
.pd-cta p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 22px; }
.pd-cta .btn-primary { background: var(--gold); color: #fff; }
.pd-cta .btn-primary:hover { background: var(--gold-2); }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 50px 0 60px; }
  .values-grid, .product-grid, .craft-grid, .process-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .why-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .topbar { font-size: .78rem; }
  .topbar-inner { flex-direction: column; gap: 4px; }
  .menu-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all .2s;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 24px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav-cta { margin: 12px 24px; text-align: center; }
  .values-grid, .product-grid, .craft-grid, .process-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .hero-badge { left: 12px; bottom: 12px; padding: 12px 16px; }
  .hero-badge strong { font-size: 1.4rem; }
  h1 { font-size: 2rem; }
  .pd-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .pd-hero { padding: 36px 0 24px; }
  .pd-section { padding: 36px 0; }
  .pd-grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .pd-card { padding: 22px; }
  .pd-cta { padding: 28px 22px; }
  .pd-cta-row { flex-direction: column; align-items: stretch; }
  .pd-cta-row .btn { width: 100%; }
  .topbar-right .lang-toggle { padding: 4px 8px; font-size: .75rem; }
}
