/* =========================================================
   Golden Part — Visual refresh layer (theme.css)
   Only typography, colors, depth & polish. No layout changes.
   ========================================================= */

@font-face {
  font-family: "Vazirmatn VF";
  src: url("/fonts/Vazirmatn.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --gp-orange: 247 127 0;
  --gp-orange-deep: 196 92 0;
  --gp-navy: 43 45 66;
  --gp-slate: 141 153 174;
  --gp-light: 237 242 244;
  --gp-line: 213 221 228;
  --gp-red: 230 57 70;
  --gp-bg: #e7edf1;
  --gp-shadow-sm: 0 1px 2px rgba(43, 45, 66, 0.04), 0 2px 8px rgba(43, 45, 66, 0.05);
  --gp-shadow-md: 0 2px 6px rgba(43, 45, 66, 0.05), 0 12px 28px -12px rgba(43, 45, 66, 0.18);
  --gp-shadow-lg: 0 8px 20px -6px rgba(43, 45, 66, 0.12), 0 28px 60px -28px rgba(43, 45, 66, 0.3);
  --gp-shadow-orange: 0 6px 18px -6px rgba(247, 127, 0, 0.55);
}

/* ---------- Typography ---------- */
html,
body,
button,
input,
select,
textarea,
:host {
  font-family: "Vazirmatn VF", Vazirmatn, Tahoma, system-ui, sans-serif !important;
  font-feature-settings: "ss01", "kern";
}

body {
  background-color: var(--gp-bg);
  color: rgb(var(--gp-navy));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
}

/* soft, premium ambient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 88% -8%, rgba(247, 127, 0, 0.09), transparent 60%),
    radial-gradient(760px 480px at 6% 4%, rgba(67, 71, 105, 0.07), transparent 62%),
    linear-gradient(180deg, #f7fafc 0%, var(--gp-bg) 46%, #dfe7ec 100%);
}

h1, h2, h3, h4, h5, h6,
.font-extrabold,
.font-bold {
  letter-spacing: -0.02em;
}

.text-2xl, .text-3xl, .text-4xl,
.md\:text-4xl, .md\:text-3xl {
  line-height: 1.45;
  font-variation-settings: "wght" 800;
}

p, li {
  line-height: 1.95;
}

/* ---------- Refined palette ---------- */
.bg-orange { background-color: rgb(var(--gp-orange)) !important; }
.text-orange { color: rgb(var(--gp-orange)) !important; }
.border-orange { border-color: rgb(var(--gp-orange)) !important; }
.bg-orange\/10 { background-color: rgba(247, 127, 0, 0.1) !important; }
.border-orange\/25 { border-color: rgba(247, 127, 0, 0.28) !important; }
.border-orange\/30 { border-color: rgba(247, 127, 0, 0.32) !important; }

.bg-navy { background-color: rgb(var(--gp-navy)) !important; }
.text-navy { color: rgb(var(--gp-navy)) !important; }
.border-navy { border-color: rgb(var(--gp-navy)) !important; }
.bg-navy\/95 { background-color: rgba(43, 45, 66, 0.96) !important; }
.bg-navy\/40 { background-color: rgba(43, 45, 66, 0.42) !important; }

.bg-light { background-color: rgb(var(--gp-light)) !important; }
.text-slate { color: rgb(var(--gp-slate)) !important; }
.bg-slate\/10 { background-color: rgba(141, 153, 174, 0.12) !important; }
.text-muted { color: #64708a !important; }
.bg-red, .text-red { --gp-x: 0; }
.bg-red { background-color: rgb(var(--gp-red)) !important; }
.text-red { color: rgb(var(--gp-red)) !important; }

.border-\[\#dde3e7\] { border-color: rgb(var(--gp-line)) !important; }
.border-\[\#eef1f3\] { border-color: #eef1f5 !important; }

/* ---------- Depth & shape ---------- */
.rounded-lg { border-radius: 0.7rem; }
.rounded-xl { border-radius: 0.95rem; }
.rounded-2xl { border-radius: 1.15rem; }
.rounded-\[20px\] { border-radius: 1.3rem; }

.bg-white.border,
.bg-white.rounded-xl,
.bg-white.rounded-2xl,
.bg-white.rounded-lg,
.bg-white.rounded-\[20px\] {
  box-shadow: var(--gp-shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

a > .bg-white.border:hover,
a:hover > .bg-white.border,
.bg-white.border:hover,
.bg-white.rounded-xl:hover,
.bg-white.rounded-2xl:hover {
  box-shadow: var(--gp-shadow-md);
  border-color: rgba(247, 127, 0, 0.35);
  transform: translateY(-2px);
}

/* header */
/* NOTE: no backdrop-filter on <header> itself — it would create a containing
   block and trap the fixed mobile drawer inside the header box. */
header, .sticky.top-0 {
  background-color: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 1px 0 rgba(43, 45, 66, 0.05), 0 10px 30px -24px rgba(43, 45, 66, 0.5);
}

/* buttons */
.bg-orange {
  background-image: linear-gradient(180deg, rgb(255, 148, 26), rgb(var(--gp-orange-deep)));
  box-shadow: var(--gp-shadow-orange);
  transition: filter 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.bg-orange:hover {
  filter: saturate(1.06) brightness(1.04);
  box-shadow: 0 10px 24px -8px rgba(247, 127, 0, 0.65);
}
button:active, a:active { transform: translateY(1px); }

.bg-navy {
  background-image: linear-gradient(180deg, #3a3d59, rgb(var(--gp-navy)));
}

/* inputs */
input, select, textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(247, 127, 0, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.14);
  background-color: #fff !important;
}

/* links & nav */
a { transition: color 0.2s ease, opacity 0.2s ease; }
nav a:hover, .hover\:text-orange:hover { color: rgb(var(--gp-orange)) !important; }

/* images inside cards */
.rounded-xl > img, .rounded-2xl > img, .aspect-square img, .aspect-\[4\/3\] img {
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.bg-white:hover .aspect-square img,
.bg-white:hover .aspect-\[4\/3\] img {
  transform: scale(1.04);
}

/* dividers & tables */
hr, .h-px { background-color: rgb(var(--gp-line)); }
table th { font-variation-settings: "wght" 700; color: rgb(var(--gp-navy)); }
tbody tr { transition: background-color 0.2s ease; }
tbody tr:hover { background-color: rgba(247, 127, 0, 0.04); }

/* scrollbar */
* { scrollbar-color: rgba(43, 45, 66, 0.22) transparent; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb {
  background: rgba(43, 45, 66, 0.2);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(43, 45, 66, 0.34); background-clip: content-box; }

::selection { background: rgba(247, 127, 0, 0.2); }

/* footer */
footer { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06); }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* =========================================================
   Typography hierarchy & rhythm (v2)
   Sizes only — no layout, no content, no structural changes.
   ========================================================= */

html { -webkit-text-size-adjust: 100%; }

body {
  font-size: 16px;
  line-height: 1.85;
  font-variation-settings: "wght" 400;
}

/* --- Heading scale (fluid & responsive) --- */
h1, h1.text-2xl, h1.text-3xl, h1.text-4xl {
  font-size: clamp(1.6rem, 1.15rem + 2.1vw, 2.45rem);
  line-height: 1.4;
  font-variation-settings: "wght" 800;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

h2, h2.text-lg, h2.text-xl, h2.text-2xl, h2.text-3xl {
  font-size: clamp(1.2rem, 1.06rem + 0.7vw, 1.6rem);
  line-height: 1.5;
  font-variation-settings: "wght" 800;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h3, h3.text-base, h3.text-lg, h3.text-xl {
  font-size: clamp(1.03rem, 0.98rem + 0.32vw, 1.2rem);
  line-height: 1.6;
  font-variation-settings: "wght" 700;
  letter-spacing: -0.013em;
}

h4, h4.text-base, h4.text-sm {
  font-size: 0.98rem;
  line-height: 1.7;
  font-variation-settings: "wght" 700;
  letter-spacing: -0.008em;
}

h5, h5.text-xs, h5.text-sm, h6 {
  line-height: 1.7;
  font-variation-settings: "wght" 700;
  letter-spacing: 0.005em;
}

/* uppercase micro-titles (footer / section labels) read better with tracking */
h4.uppercase, h5.uppercase, .uppercase.text-xs {
  letter-spacing: 0.06em;
}

/* --- Body copy rhythm --- */
p, li, dd {
  line-height: 1.95;
  text-wrap: pretty;
}

p + p { margin-top: 0.85em; }

/* readable measure for long-form paragraphs, without touching layout widths */
article p, .prose p, section > p {
  max-width: 78ch;
}

/* --- Small text: Persian glyphs need a touch more size --- */
.text-xs { font-size: 0.795rem; line-height: 1.75; }
.text-sm { font-size: 0.9rem; line-height: 1.85; }
.text-base { font-size: 1rem; line-height: 1.85; }
.text-lg { line-height: 1.7; }

/* muted / secondary text sits one clear step below the title */
.text-slate, .text-muted { font-variation-settings: "wght" 400; }

/* numbers & prices stay tabular and aligned */
.font-mono, .tabular-nums, [class*="price"] {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

/* --- Buttons: one consistent, confident label style --- */
button, a.bg-orange, a.bg-navy, .btn,
button.bg-orange, button.bg-navy {
  font-variation-settings: "wght" 700;
  letter-spacing: -0.005em;
  line-height: 1.6;
}

a.bg-orange, a.bg-navy, button.bg-orange, button.bg-navy, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

button:focus-visible, a:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid rgba(247, 127, 0, 0.6);
  outline-offset: 2px;
}

/* --- Forms: cleaner, calmer, consistent --- */
label {
  font-size: 0.87rem;
  font-variation-settings: "wght" 600;
  letter-spacing: -0.005em;
  color: #4a556b;
}

input, select, textarea {
  font-size: 0.94rem;
  line-height: 1.7;
  border-radius: 0.7rem;
  background-color: #fff;
  color: rgb(var(--gp-navy));
}

input::placeholder, textarea::placeholder {
  color: #97a1b5;
  font-variation-settings: "wght" 400;
}

input:hover, select:hover, textarea:hover {
  border-color: rgba(43, 45, 66, 0.22);
}

select { background-position: left 0.75rem center; }

textarea { line-height: 1.9; }

/* --- Tables & lists --- */
table { font-size: 0.93rem; }
th { letter-spacing: -0.005em; }

/* --- Responsive fine-tuning --- */
@media (max-width: 640px) {
  body { font-size: 15.5px; line-height: 1.8; }
  h1 { line-height: 1.5; }
  h2 { line-height: 1.55; }
  p, li { line-height: 1.9; }
  .text-xs { font-size: 0.78rem; }
  .text-sm { font-size: 0.885rem; }
  table { font-size: 0.88rem; }
}

@media (min-width: 1280px) {
  body { font-size: 16.5px; }
}

/* =========================================================
   v3 — Layout polish: hero, categories, map, brands, footer
   (visual only; no content removed)
   ========================================================= */

/* ---------- Hero ---------- */
body > div section:first-of-type h1 { letter-spacing: -0.01em; }

.gp-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 44px 28px !important;
  margin-top: 22px;
  background:
    radial-gradient(1100px 420px at 88% -20%, rgba(247, 127, 0, 0.16), transparent 65%),
    radial-gradient(700px 380px at 5% 120%, rgba(43, 45, 66, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #eef3f6 100%);
  border: 1px solid var(--gp-line);
  box-shadow: var(--gp-shadow-md);
  text-align: center;
}
.gp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 45, 66, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 45, 66, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 0%, transparent 100%);
  pointer-events: none;
}
.gp-hero > * { position: relative; z-index: 1; }
.gp-hero h1 { max-width: 880px; margin-inline: auto; }
.gp-hero p { margin-inline: auto !important; }
.gp-hero a[href="/shop"] {
  box-shadow: var(--gp-shadow-orange);
  background: linear-gradient(135deg, rgb(var(--gp-orange)), rgb(var(--gp-orange-deep)));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gp-hero a[href="/shop"]:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(247, 127, 0, 0.65); }

/* ---------- Injected trust strip ---------- */
.gp-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 4px;
}
@media (max-width: 900px) { .gp-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.gp-strip-item {
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: 18px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--gp-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.gp-strip-item:hover { transform: translateY(-3px); border-color: rgba(247, 127, 0, 0.45); box-shadow: var(--gp-shadow-md); }
.gp-strip-ico {
  width: 46px; height: 46px; flex: 0 0 46px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(247, 127, 0, 0.16), rgba(247, 127, 0, 0.05));
  color: rgb(var(--gp-orange));
}
.gp-strip-ico svg { width: 22px; height: 22px; }
.gp-strip b { display: block; font-size: 0.95rem; color: rgb(var(--gp-navy)); }
.gp-strip span { font-size: 0.8rem; color: rgb(var(--gp-slate)); }

/* ---------- Category cards ---------- */
a[href^="/shop/?category="] {
  position: relative;
  overflow: hidden;
  border-radius: 22px !important;
  padding-block: 26px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%) !important;
  box-shadow: var(--gp-shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
a[href^="/shop/?category="]::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgb(var(--gp-orange)), rgba(247, 127, 0, 0.15));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}
a[href^="/shop/?category="]:hover { transform: translateY(-6px); box-shadow: var(--gp-shadow-lg); border-color: rgba(247, 127, 0, 0.5) !important; }
a[href^="/shop/?category="]:hover::after { transform: scaleX(1); }
a[href^="/shop/?category="] > div:first-child {
  width: 66px !important;
  height: 66px !important;
  border-radius: 20px !important;
  background: linear-gradient(145deg, rgb(var(--gp-orange)) 0%, rgb(var(--gp-orange-deep)) 100%) !important;
  box-shadow: 0 10px 22px -10px rgba(247, 127, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.28s ease;
}
a[href^="/shop/?category="] > div:first-child svg {
  width: 30px !important;
  height: 30px !important;
  color: #fff !important;
  stroke-width: 1.9;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.28));
}
a[href^="/shop/?category="]:hover > div:first-child { transform: translateY(-3px) rotate(-4deg) scale(1.06); box-shadow: 0 16px 30px -12px rgba(247, 127, 0, 0.9); }
a[href^="/shop/?category="] > span:nth-of-type(1) { font-size: 0.9rem !important; }
a[href^="/shop/?category="] > span:nth-of-type(2) {
  background: var(--gp-light);
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  padding: 1px 9px;
  color: rgb(var(--gp-slate)) !important;
}

/* ---------- Iran map / distribution ---------- */
.gp-dist {
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(247, 127, 0, 0.1), transparent 60%),
    linear-gradient(180deg, #ffffff, #eef3f6) !important;
  box-shadow: var(--gp-shadow-md);
  border-radius: 28px !important;
}
.gp-dist svg path { transition: fill 0.25s ease, stroke 0.25s ease; }
.gp-dist svg path:hover { fill: rgba(247, 127, 0, 0.22) !important; stroke: rgb(var(--gp-orange)) !important; }
.gp-dist svg g circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: gp-pulse 2.8s ease-in-out infinite;
  cursor: pointer;
  transition: r 0.2s ease, fill 0.2s ease;
}
.gp-dist svg g:nth-of-type(3n) circle { animation-delay: 0.6s; }
.gp-dist svg g:nth-of-type(3n + 1) circle { animation-delay: 1.2s; }
.gp-dist svg g:hover circle { fill: rgb(var(--gp-red)); r: 9; }
@keyframes gp-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.28); }
}
@media (prefers-reduced-motion: reduce) { .gp-dist svg g circle { animation: none; } }
.gp-dist .gp-stats { backdrop-filter: blur(2px); }
.gp-tip {
  position: fixed;
  z-index: 60;
  pointer-events: none;
  background: rgb(var(--gp-navy));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: var(--gp-shadow-md);
  transform: translate(-50%, -150%);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.gp-tip.is-on { opacity: 1; }

/* ---------- Brands ---------- */
.gp-brands-grid > div {
  position: relative;
  border-radius: 20px !important;
  padding: 22px 14px !important;
  background: linear-gradient(180deg, #ffffff, #f4f8fa) !important;
  box-shadow: var(--gp-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.gp-brands-grid > div:hover { transform: translateY(-5px) !important; box-shadow: var(--gp-shadow-md); }
.gp-brand-badge {
  width: 44px; height: 44px;
  margin: 0 auto 10px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 0.95rem; font-weight: 800;
  color: rgb(var(--gp-orange));
  background: linear-gradient(140deg, rgba(247, 127, 0, 0.15), rgba(43, 45, 66, 0.05));
  border: 1px solid rgba(247, 127, 0, 0.22);
}

/* ---------- Footer ---------- */
footer.bg-navy {
  position: relative;
  background:
    radial-gradient(900px 380px at 85% -30%, rgba(247, 127, 0, 0.22), transparent 60%),
    linear-gradient(180deg, #2b2d42 0%, #1b1d2b 100%) !important;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, rgb(var(--gp-orange)), rgba(247, 127, 0, 0.1)) 1;
}
footer.bg-navy h4, footer.bg-navy h5 {
  font-weight: 800;
  letter-spacing: 0.01em;
}
footer.bg-navy h5 {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 12px !important;
  font-size: 0.82rem !important;
}
footer.bg-navy h5::after {
  content: "";
  position: absolute;
  bottom: 0; inset-inline-start: 0;
  width: 26px; height: 2px; border-radius: 2px;
  background: rgb(var(--gp-orange));
}
footer.bg-navy a[href^="/"] {
  position: relative;
  transition: color 0.18s ease, transform 0.18s ease, padding 0.18s ease;
}
footer.bg-navy a[href^="/"]:hover { transform: translateX(-4px); color: rgb(var(--gp-orange)) !important; }
footer.bg-navy iframe { border-radius: 18px; filter: saturate(0.9) contrast(1.02); }
footer.bg-navy > div:first-child > div:last-child {
  border-radius: 18px !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.8);
}
footer.bg-navy img { filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35)); }
footer.bg-navy a[title] {
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
footer.bg-navy a[title]:hover { background: rgba(247, 127, 0, 0.18); border-color: rgba(247, 127, 0, 0.5); transform: translateY(-3px) scale(1.06); }

.gp-foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.gp-foot-brand img { height: 42px; width: auto; }
.gp-foot-brand b { color: #fff; font-size: 1rem; display: block; }
.gp-foot-brand span { color: rgb(var(--gp-slate)); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.gp-foot-note {
  margin-top: 16px;
  color: rgb(var(--gp-slate));
  font-size: 0.86rem;
  line-height: 2;
  max-width: 520px;
}

/* ---------- CTA band ---------- */
.gp-cta {
  margin: 8px 0 40px;
  border-radius: 26px;
  padding: 30px 26px;
  background:
    radial-gradient(600px 260px at 90% 0%, rgba(255, 255, 255, 0.16), transparent 60%),
    linear-gradient(135deg, #2b2d42 0%, #3a3d59 100%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--gp-shadow-lg);
}
.gp-cta h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.gp-cta p { color: #b9c2d6; font-size: 0.9rem; margin: 0; }
.gp-cta a {
  background: linear-gradient(135deg, rgb(var(--gp-orange)), rgb(var(--gp-orange-deep)));
  color: #fff; font-weight: 800; font-size: 0.9rem;
  padding: 13px 24px; border-radius: 14px;
  box-shadow: var(--gp-shadow-orange);
  transition: transform 0.18s ease;
}
.gp-cta a:hover { transform: translateY(-2px); }

/* =========================================================
   v4 — Location section (About) + modern footer
   ========================================================= */

/* ---------- Location block (About page) ---------- */
.gp-loc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 42px 0 8px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(150deg, #ffffff 0%, #eef3f6 100%);
  border: 1px solid var(--gp-line);
  box-shadow: var(--gp-shadow-md);
}
@media (min-width: 900px) {
  .gp-loc { grid-template-columns: 0.85fr 1.15fr; gap: 28px; padding: 30px; align-items: stretch; }
}
.gp-loc-kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgb(var(--gp-orange));
  background: rgba(247, 127, 0, 0.1);
  border: 1px solid rgba(247, 127, 0, 0.25);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.gp-loc-info h2 { font-size: 1.35rem; font-weight: 800; margin: 0 0 10px; color: rgb(var(--gp-navy)); }
.gp-loc-info p { color: rgb(var(--gp-slate)); font-size: 0.92rem; margin: 0 0 16px; }
.gp-loc-list { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 8px; }
.gp-loc-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #fff; border: 1px solid var(--gp-line); border-radius: 14px;
  padding: 10px 14px; box-shadow: var(--gp-shadow-sm);
}
.gp-loc-list span { font-size: 0.75rem; color: rgb(var(--gp-slate)); }
.gp-loc-list b { font-size: 0.95rem; font-variant-numeric: tabular-nums; color: rgb(var(--gp-navy)); }
.gp-loc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgb(var(--gp-orange)), rgb(var(--gp-orange-deep)));
  color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 11px 20px; border-radius: 999px; box-shadow: var(--gp-shadow-orange);
  transition: transform 0.2s ease;
}
.gp-loc-btn:hover { transform: translateY(-2px); }
.gp-loc-map {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--gp-line);
  min-height: 260px; box-shadow: var(--gp-shadow-sm);
}
.gp-loc-map iframe { width: 100%; height: 100%; min-height: 260px; border: 0; display: block; filter: saturate(0.92) contrast(1.02); }
@media (min-width: 900px) { .gp-loc-map, .gp-loc-map iframe { min-height: 340px; } }

/* ---------- Modern footer ---------- */
footer.gp-foot {
  position: relative;
  margin-top: 90px;
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(247, 127, 0, 0.22), transparent 62%),
    radial-gradient(700px 380px at 5% 110%, rgba(67, 71, 105, 0.28), transparent 60%),
    linear-gradient(180deg, #2b2d42 0%, #1e2031 100%) !important;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.gp-foot-wave {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 70px;
  pointer-events: none;
  transform: translateY(-99%);
  line-height: 0;
}
.gp-foot-wave svg { width: 100%; height: 70px; display: block; }
.gp-foot-wave path { fill: #2b2d42; }
.gp-foot-wave::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(247,127,0,.55), transparent);
  opacity: .5;
}
@media (min-width: 768px) { .gp-foot-wave, .gp-foot-wave svg { height: 110px; } }

footer.gp-foot::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgb(var(--gp-orange)), transparent);
  opacity: 0.7;
}

footer.gp-foot .gp-foot-row:first-of-type {
  grid-template-columns: 1fr !important;
  padding-top: 34px !important;
}
footer.gp-foot .gp-foot-row > div:first-child {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(6px);
}
@media (min-width: 768px) {
  footer.gp-foot .gp-foot-row > div:first-child { padding: 26px 30px; }
}
footer.gp-foot .gp-foot-row > div.hidden { display: none !important; }
footer.gp-foot .gp-foot-row:nth-of-type(2) { grid-template-columns: 1fr !important; }
footer.gp-foot .gp-foot-row .grid.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
@media (min-width: 768px) {
  footer.gp-foot .gp-foot-row .grid.grid-cols-2 { gap: 40px !important; }
}
footer.gp-foot .gp-foot-note {
  color: #aab3c7; font-size: 0.86rem; line-height: 2; margin: 0 0 14px;
  max-width: 60ch;
}
footer.gp-foot h4, footer.gp-foot h5 { color: #fff; }
footer.gp-foot .gp-foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin-top: 26px !important;
  padding: 18px 16px !important;
  color: #8e98af;
  letter-spacing: 0.01em;
}

/* ---------- v6: filled, balanced footer grid ---------- */
.gp-foot-shell { padding-top: 34px; }
.gp-foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
@media (min-width: 640px) { .gp-foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; } }
@media (min-width: 1024px) {
  .gp-foot-grid { grid-template-columns: 1.5fr 0.9fr 0.9fr 1.2fr; gap: 30px; }
}
footer.gp-foot .gp-foot-cell { min-width: 0; }
footer.gp-foot .gp-foot-cell-brand {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(6px);
}
@media (min-width: 768px) { footer.gp-foot .gp-foot-cell-brand { padding: 26px 30px; } }
footer.gp-foot .gp-foot-cell-links a { color: #aeb7ca; }
footer.gp-foot .gp-foot-cell-links a:hover { color: rgb(var(--gp-orange)); }
footer.gp-foot .gp-foot-info { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
footer.gp-foot .gp-foot-info li {
  display: flex; gap: 10px; align-items: flex-start;
  color: #aeb7ca; font-size: 0.85rem; line-height: 1.9;
}
footer.gp-foot .gp-foot-ico {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(247, 127, 0, 0.16);
  border: 1px solid rgba(247, 127, 0, 0.28);
  font-size: 0.78rem;
}
footer.gp-foot .gp-foot-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
footer.gp-foot .gp-foot-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 16px; border-radius: var(--gp-radius-btn, 0.8rem);
  font-size: 0.82rem; font-weight: 600;
  color: #e7ebf3; border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
footer.gp-foot .gp-foot-btn:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.1); color: #fff; }
footer.gp-foot .gp-foot-btn-primary {
  background: linear-gradient(180deg, rgb(var(--gp-orange)), rgb(var(--gp-orange-deep)));
  border-color: transparent; color: #fff;
  box-shadow: var(--gp-shadow-orange);
}
footer.gp-foot .gp-foot-strip {
  margin-top: 26px;
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1024px) { footer.gp-foot .gp-foot-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } }
footer.gp-foot .gp-foot-strip > div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
footer.gp-foot .gp-foot-strip > div:hover { transform: translateY(-3px); border-color: rgba(247, 127, 0, 0.4); }
footer.gp-foot .gp-foot-strip b { display: block; color: #fff; font-size: 0.85rem; margin-bottom: 4px; }
footer.gp-foot .gp-foot-strip span { color: #939db4; font-size: 0.75rem; }


/* =========================================================
   v5 — Unified rhythm, buttons, live map, About & performance
   (visual/behaviour polish only — nothing removed)
   ========================================================= */

:root {
  --gp-space-section: clamp(34px, 4.2vw, 60px);
  --gp-radius-btn: 0.8rem;
}

/* ---------- Consistent vertical rhythm between sections ---------- */
main > section,
body section.max-w-\[1280px\],
body div.max-w-\[1280px\] {
  scroll-margin-top: 96px;
}
section.max-w-\[1280px\].py-10,
section.max-w-\[1280px\].py-8 {
  padding-top: var(--gp-space-section) !important;
  padding-bottom: var(--gp-space-section) !important;
}
section.max-w-\[1280px\].pb-10 { padding-bottom: var(--gp-space-section) !important; }
div.max-w-\[1280px\].mb-10 { margin-bottom: var(--gp-space-section) !important; }

/* section headings share one look everywhere */
section > h2, section > div > h2 { margin-bottom: 1.15rem; }

/* ---------- One button language across the whole site ---------- */
a.bg-orange, button.bg-orange,
a.bg-navy, button.bg-navy,
a.bg-white.border, button.bg-white.border,
a.bg-light.border, button.bg-light.border,
button.border, a.border.rounded-lg {
  border-radius: var(--gp-radius-btn) !important;
  font-variation-settings: "wght" 700;
  letter-spacing: -0.004em;
  transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .22s ease,
              background-color .22s ease, border-color .22s ease, filter .22s ease;
}
a.bg-orange, button.bg-orange {
  min-height: 42px;
  padding-inline: 1.05rem;
}
a.bg-orange:hover, button.bg-orange:hover { transform: translateY(-2px); }
a.bg-navy:hover, button.bg-navy:hover { transform: translateY(-2px); filter: brightness(1.12); }
a.bg-light.border:hover, button.bg-light.border:hover,
button.bg-white.border:hover, a.bg-white.border:hover {
  border-color: rgba(247, 127, 0, .45) !important;
  background-color: #fff !important;
  box-shadow: var(--gp-shadow-sm);
}
/* header buttons stay on one calm baseline */
header a.bg-orange, header a.bg-light, header button {
  min-height: 40px;
  border-radius: var(--gp-radius-btn) !important;
}
header form input { border-radius: var(--gp-radius-btn) 0 0 var(--gp-radius-btn) !important; }
header form button[type="submit"] { border-radius: 0 var(--gp-radius-btn) var(--gp-radius-btn) 0 !important; }

/* ---------- Iran map — alive & premium ---------- */
.gp-dist { position: relative; overflow: hidden; }
.gp-dist svg { overflow: visible; }
.gp-map-live path[fill="#edf2f4"] {
  fill: url(#gpMapFill) !important;
  stroke: rgba(43, 45, 66, .18) !important;
  stroke-width: .9 !important;
  opacity: 0;
  animation: gp-map-in .7s cubic-bezier(.2,.7,.2,1) forwards;
  transition: fill .3s ease, stroke .3s ease, filter .3s ease;
}
.gp-map-live path[fill="#edf2f4"]:hover {
  fill: url(#gpMapHover) !important;
  stroke: rgb(var(--gp-orange)) !important;
  filter: drop-shadow(0 4px 10px rgba(247, 127, 0, .35));
}
@keyframes gp-map-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.gp-hub-core {
  fill: rgb(var(--gp-orange));
  stroke: #fff;
  stroke-width: 2;
  filter: drop-shadow(0 3px 6px rgba(247,127,0,.5));
}
.gp-hub-main .gp-hub-core { fill: rgb(var(--gp-red)); }
.gp-hub-ring {
  fill: none;
  stroke: rgba(247, 127, 0, .75);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: gp-hub-ring 2.6s ease-out infinite;
}
.gp-hub-main .gp-hub-ring { stroke: rgba(230, 57, 70, .8); animation-duration: 2.1s; }
@keyframes gp-hub-ring {
  0%   { transform: scale(.35); opacity: .9; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
.gp-route {
  fill: none;
  stroke: rgba(247, 127, 0, .55);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 5 9;
  animation: gp-route-dash 1.6s linear infinite;
}
@keyframes gp-route-dash { to { stroke-dashoffset: -28; } }
.gp-spark {
  fill: rgb(var(--gp-orange));
  filter: drop-shadow(0 0 5px rgba(247,127,0,.9));
}
.gp-map-legend {
  position: absolute;
  inset-inline-start: 18px;
  bottom: 16px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .74rem;
  color: rgb(var(--gp-slate));
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gp-line);
  border-radius: 999px;
  padding: 6px 14px;
}
.gp-map-legend i { display: inline-block; width: 8px; height: 8px; border-radius: 999px; margin-inline-end: 6px; }
.gp-map-legend .a { background: rgb(var(--gp-red)); }
.gp-map-legend .b { background: rgb(var(--gp-orange)); }
@media (max-width: 640px) { .gp-map-legend { position: static; margin-top: 14px; justify-content: center; } }
@media (prefers-reduced-motion: reduce) {
  .gp-hub-ring, .gp-route, .gp-map-live path[fill="#edf2f4"] { animation: none !important; opacity: 1; }
}

/* ---------- About page ---------- */
.gp-about-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(26px, 4vw, 46px) !important;
  background:
    radial-gradient(900px 380px at 92% -30%, rgba(247,127,0,.14), transparent 62%),
    linear-gradient(180deg, #fff, #eef3f6);
  border: 1px solid var(--gp-line);
  box-shadow: var(--gp-shadow-md);
}
.gp-about-hero h1 { margin-bottom: .6rem; }
.gp-about-card {
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: 20px;
  padding: clamp(18px, 2.4vw, 26px);
  box-shadow: var(--gp-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gp-about-card:hover {
  transform: translateY(-3px);
  border-color: rgba(247,127,0,.35);
  box-shadow: var(--gp-shadow-md);
}
.gp-about-stat b { color: rgb(var(--gp-red)); font-variant-numeric: tabular-nums; }
.gp-reveal { opacity: 0; transform: translateY(14px); }
.gp-reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
}
@media (prefers-reduced-motion: reduce) { .gp-reveal { opacity: 1; transform: none; } }

/* ---------- Loading performance ---------- */
.gp-cv { content-visibility: auto; contain-intrinsic-size: 1px 640px; }
img { content-visibility: auto; }
.gp-loc-map iframe { background: #dfe7ec; }
footer.gp-foot .gp-foot-ico svg { width: 14px; height: 14px; color: rgb(var(--gp-orange)); }


/* =========================================================
   v7 — bug fixes: mobile drawer, client-side navigation,
   location out of footer, full responsive pass.
   (nothing removed — layout/behaviour corrections only)
   ========================================================= */

/* ---------- 1. Mobile drawer must escape the header ---------- */
/* NOTE: backdrop-filter removed here — it created a containing block and
   trapped the fixed mobile drawer inside the header box. */
header .fixed.inset-0 {
  position: fixed !important;
  inset: 0 !important;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  z-index: 100 !important;
}
header .fixed.inset-0 > div:last-child {
  height: 100vh !important;
  height: 100dvh !important;
  max-height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 28px;
  border-radius: 22px 0 0 22px;
  animation: gp-drawer-in .28s cubic-bezier(.2,.7,.2,1) both;
}
header .fixed.inset-0 > div:first-child { animation: gp-fade-in .25s ease both; }
@keyframes gp-drawer-in { from { transform: translateX(14%); opacity: .4; } to { transform: none; opacity: 1; } }
@keyframes gp-fade-in { from { opacity: 0; } to { opacity: 1; } }
header .fixed.inset-0 a,
header .fixed.inset-0 button { font-size: 0.95rem !important; }
header .fixed.inset-0 a { padding-block: 0.85rem !important; }

/* ---------- 2. Reveal animation can never leave content invisible ---------- */
.gp-reveal { opacity: 1; transform: none; animation: gp-rise .55s cubic-bezier(.2,.7,.2,1) both; }
.gp-reveal.is-in { opacity: 1; transform: none; }
@keyframes gp-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .gp-reveal { animation: none; } }
/* content-visibility caused jumpy layout on client-side navigation */
.gp-cv { content-visibility: visible; }
img { content-visibility: visible; }

/* ---------- 3. Footer: map column moved to About ---------- */
.gp-foot-maphide { display: none !important; }
footer.gp-foot .gp-foot-row.grid,
footer.gp-foot .gp-foot-row > .grid {
  grid-template-columns: minmax(0, 1fr) !important;
}
footer.gp-foot .gp-foot-row .hidden.md\:block { display: none !important; }
footer.gp-foot .gp-foot-shell .gp-foot-cell-contact {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 20px;
}
@media (min-width: 768px) { footer.gp-foot .gp-foot-shell .gp-foot-cell-contact { padding: 24px 26px; } }

/* ---------- 4. Global responsive safety ---------- */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, iframe, video, table { max-width: 100%; }
* { min-width: 0; }
h1 { overflow-wrap: anywhere; }

@media (max-width: 480px) {
  .gp-strip { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .gp-cta { flex-direction: column; align-items: stretch; text-align: start; padding: 22px 18px; border-radius: 20px; }
  .gp-cta a { width: 100%; text-align: center; justify-content: center; }
  footer.gp-foot .gp-foot-strip { grid-template-columns: minmax(0, 1fr); }
  .gp-loc { padding: 16px; border-radius: 20px; }
  .gp-loc-list li { flex-direction: column; align-items: flex-start; gap: 2px; }
  .gp-foot-brand img { height: 34px; }
}

@media (max-width: 768px) {
  .gp-dist, .gp-loc-map { border-radius: 18px; }
  .gp-dist svg, .gp-loc-map iframe { width: 100%; height: auto; }
  .gp-map-legend { position: static !important; margin-top: 12px; justify-content: center; flex-wrap: wrap; }
  .gp-about-head { text-align: start; }
  table { display: block; overflow-x: auto; }
  .overflow-x-auto { -webkit-overflow-scrolling: touch; }
}

/* long headings / tables inside admin & shop pages stay inside the viewport */
main, section, footer, header { min-width: 0; }
.max-w-\[1280px\] { width: 100%; }

/* ---------- 5. About page head + cards (class-only styling) ---------- */
.gp-about-head { position: relative; }
.gp-about-kicker { display: inline-block; margin-bottom: 6px; }
.gp-about-intro { max-width: 78ch; }


/* ---------- v7: richer location card on About ---------- */
.gp-loc { position: relative; overflow: hidden; }
.gp-loc::before {
  content: "";
  position: absolute; inset-inline-end: -80px; top: -110px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,127,0,.14), transparent 68%);
  pointer-events: none;
}
.gp-loc-info { position: relative; z-index: 1; }
.gp-loc-addr {
  display: flex; align-items: center; gap: 8px;
  color: rgb(var(--gp-navy)) !important; font-weight: 700; font-size: 0.9rem !important;
  margin: 0 0 10px !important;
}
.gp-loc-addr svg { width: 18px; height: 18px; flex: 0 0 auto; color: rgb(var(--gp-orange)); }
.gp-loc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.gp-loc-chips span {
  font-size: 0.74rem; color: rgb(var(--gp-slate));
  background: #fff; border: 1px solid var(--gp-line);
  border-radius: 999px; padding: 5px 11px; box-shadow: var(--gp-shadow-sm);
}
.gp-loc-list li { transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.gp-loc-list li:hover { transform: translateY(-2px); border-color: rgba(247,127,0,.4); box-shadow: var(--gp-shadow-md); }
.gp-loc-list b a { color: inherit; }
.gp-loc-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.gp-loc-btn-ghost {
  background: #fff !important; color: rgb(var(--gp-navy)) !important;
  border: 1px solid var(--gp-line); box-shadow: var(--gp-shadow-sm) !important;
}
.gp-loc-map { position: relative; }
.gp-loc-map iframe { transition: filter .3s ease, transform .5s ease; }
.gp-loc-map:hover iframe { filter: saturate(1.02) contrast(1.03); }
.gp-loc-badge {
  position: absolute; top: 12px; inset-inline-start: 12px; z-index: 2;
  background: rgba(43,45,66,.86); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: var(--gp-shadow-sm);
}
.gp-loc-pin {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  display: grid; place-items: center;
}
.gp-loc-pin i {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgb(var(--gp-orange));
  box-shadow: 0 0 0 6px rgba(247,127,0,.24);
  animation: gp-loc-pulse 2.2s ease-in-out infinite;
}
@keyframes gp-loc-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(247,127,0,.24); }
  50% { box-shadow: 0 0 0 16px rgba(247,127,0,.05); }
}
@media (prefers-reduced-motion: reduce) { .gp-loc-pin i { animation: none; } }

/* address + hours moved into the top footer box */
footer.gp-foot .gp-foot-info-top { margin: 14px 0 0; }


/* ---------- shop/about links moved into the top footer box ---------- */
footer.gp-foot .gp-foot-links-moved { display: none !important; }
footer.gp-foot .gp-foot-row > div:first-child { position: relative; }
footer.gp-foot .gp-foot-toplinks {
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
footer.gp-foot .gp-foot-toplinks h5 {
  font-size: 0.78rem;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: 0.02em;
}
footer.gp-foot .gp-foot-toplinks a {
  display: block;
  font-size: 0.82rem;
  line-height: 1.9;
  color: #aeb7ca;
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
}
footer.gp-foot .gp-foot-toplinks a:hover { color: rgb(var(--gp-orange)); }
@media (min-width: 768px) {
  footer.gp-foot .gp-foot-row > div:first-child { padding-inline-end: 320px; }
  footer.gp-foot .gp-foot-toplinks {
    position: absolute;
    top: 26px;
    inset-inline-end: 30px;
    width: 280px;
    margin: 0;
    padding-top: 0;
    border-top: 0;
    gap: 12px 18px;
  }
}
@media (min-width: 1024px) {
  footer.gp-foot .gp-foot-row > div:first-child { padding-inline-end: 360px; }
  footer.gp-foot .gp-foot-toplinks { width: 320px; }
}


/* =========================================================
   v8 — Palette overhaul: #2b2d42 / #8d99ae / #edf2f4 / #f77f00 / #e63946
   Bolder contrast, deeper darks, livelier accents.
   Visual layer only — no markup, no layout, nothing removed.
   ========================================================= */

:root {
  --gp-navy-deep: 30 32 49;
  --gp-ink: #232538;
  --gp-orange-hot: 255 148 26;
  --gp-grad-hot: linear-gradient(135deg, rgb(var(--gp-orange-hot)), rgb(var(--gp-orange)) 55%, rgb(var(--gp-red)));
  --gp-grad-dark: linear-gradient(150deg, #2b2d42 0%, #23253a 55%, #1b1d2b 100%);
  --gp-shadow-orange: 0 8px 22px -8px rgba(247, 127, 0, 0.6);
  --gp-shadow-red: 0 8px 22px -8px rgba(230, 57, 70, 0.55);
}

/* ---------- Page canvas: cooler light with warm blooms ---------- */
body { background-color: #e9eef2; }
body::before {
  background:
    radial-gradient(980px 560px at 90% -10%, rgba(247, 127, 0, 0.16), transparent 62%),
    radial-gradient(820px 520px at 4% 2%, rgba(43, 45, 66, 0.13), transparent 62%),
    radial-gradient(700px 460px at 50% 108%, rgba(230, 57, 70, 0.09), transparent 62%),
    linear-gradient(180deg, #f4f7f9 0%, #e9eef2 48%, #dfe6eb 100%);
}

/* ---------- Header: deep navy, high contrast ---------- */
header.bg-white,
header.sticky.top-0 {
  background: var(--gp-grad-dark) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px -18px rgba(27, 29, 43, 0.9);
}
header.bg-white::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: var(--gp-grad-hot);
  background-size: 200% 100%;
  animation: gp-sheen 7s linear infinite;
}
header.bg-white { position: sticky; }
@keyframes gp-sheen { to { background-position: 200% 0; } }

header .text-navy,
header nav,
header nav a,
header .font-extrabold { color: #eef2f5 !important; }
header .text-slate { color: rgb(var(--gp-slate)) !important; }

header button.bg-white,
header .bg-white.border,
header a.bg-light,
header button.md\:hidden {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  color: #eef2f5 !important;
}
header button.bg-white:hover,
header a.bg-light:hover {
  background: rgba(247, 127, 0, 0.18) !important;
  border-color: rgba(247, 127, 0, 0.5) !important;
}
header form input {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: #eef2f5 !important;
}
header form input::placeholder { color: #98a3b8 !important; }
header form input:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(247, 127, 0, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.18);
}
header a.bg-orange, header form button[type="submit"] {
  background: var(--gp-grad-hot) !important;
  color: #fff !important;
  box-shadow: var(--gp-shadow-orange);
}
header nav { border-top-color: rgba(255, 255, 255, 0.09) !important; }
header nav a { position: relative; }
header nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--gp-grad-hot);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
header nav a:hover { color: rgb(var(--gp-orange-hot)) !important; }
header nav a:hover::after { transform: scaleX(1); }

/* mobile drawer stays readable on its light panel */
header .fixed.inset-0 > div:last-child {
  background: #fff !important;
  color: rgb(var(--gp-navy)) !important;
}
header .fixed.inset-0 > div:last-child a,
header .fixed.inset-0 > div:last-child button,
header .fixed.inset-0 > div:last-child .text-navy { color: rgb(var(--gp-navy)) !important; }
header .fixed.inset-0 > div:last-child a.bg-orange,
header .fixed.inset-0 > div:last-child button.bg-orange { color: #fff !important; }
header .fixed.inset-0 > div:first-child { background: rgba(27, 29, 43, 0.6) !important; }

/* ---------- Hero: dramatic dark stage ---------- */
.gp-hero {
  background:
    radial-gradient(900px 420px at 88% -25%, rgba(247, 127, 0, 0.34), transparent 62%),
    radial-gradient(700px 400px at 6% 115%, rgba(230, 57, 70, 0.24), transparent 62%),
    var(--gp-grad-dark) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 30px 70px -34px rgba(27, 29, 43, 0.75);
  color: #eef2f5;
}
.gp-hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
}
.gp-hero::after {
  content: "";
  position: absolute;
  inset-inline-end: -140px;
  top: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 127, 0, 0.32), transparent 68%);
  animation: gp-float 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gp-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
  50% { transform: translate3d(-26px, 26px, 0) scale(1.1); opacity: 1; }
}
.gp-hero h1 { color: #fff !important; }
.gp-hero h1 em,
.gp-hero .text-red {
  color: rgb(var(--gp-orange-hot)) !important;
  text-shadow: 0 6px 24px rgba(247, 127, 0, 0.45);
}
.gp-hero p, .gp-hero .text-muted { color: #b9c2d3 !important; }
.gp-hero a[href="/shop"], .gp-hero a[href="/shop/"] {
  background: var(--gp-grad-hot) !important;
  color: #fff !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 34px -12px rgba(247, 127, 0, 0.75);
}
.gp-hero a[href="/shop"]::after, .gp-hero a[href="/shop/"]::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  animation: gp-shine 3.4s ease-in-out infinite;
}
@keyframes gp-shine {
  0% { left: -60%; }
  60%, 100% { left: 130%; }
}

/* ---------- Section kickers become vivid pills ---------- */
.text-orange.text-xs.font-bold {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 5px 12px;
  border-radius: 999px;
  color: rgb(var(--gp-orange-deep)) !important;
  background: linear-gradient(135deg, rgba(247, 127, 0, 0.16), rgba(230, 57, 70, 0.12));
  border: 1px solid rgba(247, 127, 0, 0.32);
  letter-spacing: 0.01em;
}

/* ---------- Section titles get an accent rule ---------- */
section h2.font-extrabold,
section > div > h2.font-extrabold {
  position: relative;
  padding-bottom: 0.5rem;
}
section h2.font-extrabold::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 54px;
  height: 3px;
  border-radius: 3px;
  background: var(--gp-grad-hot);
}
.text-center > h2.font-extrabold::after,
section .text-center h2.font-extrabold::after {
  inset-inline: 0;
  margin-inline: auto;
}

/* ---------- Cards: crisper edges, warmer hover ---------- */
.bg-white.border,
.bg-white.rounded-xl,
.bg-white.rounded-2xl,
.bg-white.rounded-\[20px\] {
  border-color: #d7dee5 !important;
}
.bg-white.border:hover,
.bg-white.rounded-xl:hover,
.bg-white.rounded-2xl:hover {
  border-color: rgba(247, 127, 0, 0.55) !important;
  box-shadow: 0 18px 44px -22px rgba(43, 45, 66, 0.45);
}

/* ---------- Trust strip: alternating accent icons ---------- */
.gp-strip-item { border-color: #d7dee5; }
.gp-strip-item:nth-child(2n) .gp-strip-ico {
  background: linear-gradient(140deg, rgba(230, 57, 70, 0.18), rgba(230, 57, 70, 0.05));
  color: rgb(var(--gp-red));
}
.gp-strip-item:nth-child(4n) .gp-strip-ico {
  background: linear-gradient(140deg, rgba(43, 45, 66, 0.16), rgba(43, 45, 66, 0.05));
  color: rgb(var(--gp-navy));
}
.gp-strip-item:hover { border-color: rgba(247, 127, 0, 0.5); }

/* ---------- Category tiles: lively, alternating icon tints ---------- */
a[href^="/shop/?category="] { border-color: #d7dee5 !important; }
/* v9: icon tiles are now line-art on white; tint moved to the accent bar */
a[href^="/shop/?category="]:nth-child(3n + 2)::after { background: linear-gradient(90deg, rgb(var(--gp-navy)), rgba(43, 45, 66, 0.12)); }
a[href^="/shop/?category="]:nth-child(3n)::after { background: linear-gradient(90deg, rgb(var(--gp-red)), rgba(230, 57, 70, 0.12)); }

/* ---------- Prices & badges pop ---------- */
.text-red { color: rgb(var(--gp-red)) !important; }
.bg-red { background: linear-gradient(180deg, #ef4a56, rgb(var(--gp-red))) !important; box-shadow: var(--gp-shadow-red); }
.bg-orange\/10 { background: linear-gradient(135deg, rgba(247, 127, 0, 0.16), rgba(247, 127, 0, 0.07)) !important; }

/* ---------- CTA band: deeper, glowing ---------- */
.gp-cta {
  background:
    radial-gradient(620px 280px at 88% 0%, rgba(247, 127, 0, 0.3), transparent 62%),
    radial-gradient(520px 260px at 8% 110%, rgba(230, 57, 70, 0.22), transparent 62%),
    var(--gp-grad-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.gp-cta a { background: var(--gp-grad-hot); }

/* ---------- Footer: same deep navy family ---------- */
footer.bg-navy, footer.gp-foot {
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(247, 127, 0, 0.26), transparent 62%),
    radial-gradient(760px 400px at 5% 110%, rgba(230, 57, 70, 0.18), transparent 60%),
    var(--gp-grad-dark) !important;
}
.gp-foot-wave path { fill: #2b2d42; }
footer.gp-foot .gp-foot-btn-primary { background: var(--gp-grad-hot); }

/* ---------- Buttons everywhere ---------- */
a.bg-orange, button.bg-orange {
  background-image: var(--gp-grad-hot) !important;
  box-shadow: var(--gp-shadow-orange);
}
a.bg-navy, button.bg-navy { background-image: linear-gradient(180deg, #3a3d59, rgb(var(--gp-navy))) !important; }

/* ---------- Focus / selection tuned to the new accent ---------- */
::selection { background: rgba(247, 127, 0, 0.24); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(247, 127, 0, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .gp-hero::after,
  header.bg-white::after,
  .gp-hero a[href="/shop"]::after { animation: none !important; }
}

/* v8 fix: search field inside the dark header */
header form input.bg-light,
header form input[type="text"].bg-light {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  color: #eef2f5 !important;
}
header form input.bg-light:focus {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(247, 127, 0, 0.6) !important;
}

/* v8: logo reads as an intentional badge on the dark header */
header a[aria-label] img[src="/logo.png"] {
  background: #fff;
  border-radius: 10px;
  padding: 3px 4px;
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.6);
}


/* ==========================================================
   v9 — accessibility contrast, category icons, contact visual
   ========================================================== */

/* --- contrast: secondary text (AA on light surfaces) --- */
.text-muted, .text-slate { color: #5a6480 !important; }
header .text-slate, footer .text-slate, footer .text-muted,
.gp-hero .text-slate, .gp-hero .text-muted,
.bg-navy .text-slate, .bg-navy .text-muted { color: #c9d2de !important; }
footer a.text-slate:hover, footer a.text-slate:focus-visible { color: #ffb14d !important; }
.gp-strip span, .gp-loc-info p, .gp-loc-list span { color: #5a6480 !important; }

/* --- contrast: accent text --- */
.text-orange { color: #9a5300 !important; }
header .text-orange, footer .text-orange, .gp-hero .text-orange,
.bg-navy .text-orange, .gp-cta .text-orange { color: #ffa53d !important; }
.text-red { color: #c1121f !important; }
header .text-red, footer .text-red, .gp-hero .text-red, .bg-navy .text-red { color: #ff8a93 !important; }
h1 em.text-red, .gp-hero h1 em { color: #ff8a93 !important; }

/* --- contrast: solid buttons/badges --- */
.bg-red, button.bg-red, a.bg-red { background-color: #c1121f !important; color: #fff !important; }
.bg-orange, button.bg-orange, a.bg-orange { color: #1c1f2e !important; }
.bg-orange, button.bg-orange, a.bg-orange { font-variation-settings: "wght" 800; }
.text-orange\/80, .text-white\/60, .text-white\/70 { color: rgba(255,255,255,.86) !important; }
::placeholder { color: #6b7590 !important; opacity: 1; }
header ::placeholder { color: #c2cbdb !important; }

/* --- visible keyboard focus everywhere --- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid #f77f00 !important;
  outline-offset: 2px !important;
  border-radius: 8px;
}
header a:focus-visible, header button:focus-visible { outline-color: #ffb14d !important; }

/* --- category tiles: technical line icons (like the reference) --- */
a[href*="category="] svg.lucide { display: none !important; }
a[href^="/shop/?category="][href*="category="] > div:first-child {
  background-color: #fff !important;
  background-image: none;
  border: 1.5px solid #dde3e7;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 34px 34px !important;
  width: 62px !important; height: 62px !important;
  border-radius: 16px !important;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
a[href^="/shop/?category="][href*="category="]:hover > div:first-child {
  border-color: #f77f00;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -14px rgba(43,45,66,.7);
}
a[href*="category="] span:first-of-type { color: #2b2d42 !important; }
a[href*="category="] span + span { color: #5a6480 !important; }
a[href^="/shop/?category="][href*="category=brake"] > div:first-child { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20stroke%3D%22%232b2d42%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2221%22%20cy%3D%2224%22%20r%3D%2214%22%2F%3E%3Ccircle%20cx%3D%2221%22%20cy%3D%2224%22%20r%3D%224.5%22%2F%3E%3Ccircle%20cx%3D%2221%22%20cy%3D%2214.5%22%20r%3D%221.2%22%2F%3E%3Ccircle%20cx%3D%2221%22%20cy%3D%2233.5%22%20r%3D%221.2%22%2F%3E%3Ccircle%20cx%3D%2211.5%22%20cy%3D%2224%22%20r%3D%221.2%22%2F%3E%3Ccircle%20cx%3D%2230.5%22%20cy%3D%2224%22%20r%3D%221.2%22%2F%3E%3Cpath%20d%3D%22M33%2016h5a4%204%200%200%201%204%204v8a4%204%200%200%201-4%204h-5z%22%2F%3E%3Cpath%20d%3D%22M42%2024h3%22%2F%3E%3C%2Fsvg%3E") !important; }
a[href^="/shop/?category="][href*="category=brake"]:hover > div:first-child { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20stroke%3D%22%23c1121f%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2221%22%20cy%3D%2224%22%20r%3D%2214%22%2F%3E%3Ccircle%20cx%3D%2221%22%20cy%3D%2224%22%20r%3D%224.5%22%2F%3E%3Ccircle%20cx%3D%2221%22%20cy%3D%2214.5%22%20r%3D%221.2%22%2F%3E%3Ccircle%20cx%3D%2221%22%20cy%3D%2233.5%22%20r%3D%221.2%22%2F%3E%3Ccircle%20cx%3D%2211.5%22%20cy%3D%2224%22%20r%3D%221.2%22%2F%3E%3Ccircle%20cx%3D%2230.5%22%20cy%3D%2224%22%20r%3D%221.2%22%2F%3E%3Cpath%20d%3D%22M33%2016h5a4%204%200%200%201%204%204v8a4%204%200%200%201-4%204h-5z%22%2F%3E%3Cpath%20d%3D%22M42%2024h3%22%2F%3E%3C%2Fsvg%3E") !important; }
a[href^="/shop/?category="][href*="category=engine"] > div:first-child { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20stroke%3D%22%232b2d42%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%2214%22%20y%3D%226%22%20width%3D%2214%22%20height%3D%2212%22%20rx%3D%222%22%2F%3E%3Cpath%20d%3D%22M17%2018v6M25%2018v6%22%2F%3E%3Cpath%20d%3D%22M15%2024h12l-2%208h-8z%22%2F%3E%3Cpath%20d%3D%22M21%2032v6%22%2F%3E%3Ccircle%20cx%3D%2221%22%20cy%3D%2241%22%20r%3D%223.5%22%2F%3E%3Cpath%20d%3D%22M31%2012h6a4%204%200%200%201%204%204v14a4%204%200%200%201-4%204h-4%22%2F%3E%3Cpath%20d%3D%22M8%2020H5v10h3%22%2F%3E%3C%2Fsvg%3E") !important; }
a[href^="/shop/?category="][href*="category=engine"]:hover > div:first-child { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20stroke%3D%22%23c1121f%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%2214%22%20y%3D%226%22%20width%3D%2214%22%20height%3D%2212%22%20rx%3D%222%22%2F%3E%3Cpath%20d%3D%22M17%2018v6M25%2018v6%22%2F%3E%3Cpath%20d%3D%22M15%2024h12l-2%208h-8z%22%2F%3E%3Cpath%20d%3D%22M21%2032v6%22%2F%3E%3Ccircle%20cx%3D%2221%22%20cy%3D%2241%22%20r%3D%223.5%22%2F%3E%3Cpath%20d%3D%22M31%2012h6a4%204%200%200%201%204%204v14a4%204%200%200%201-4%204h-4%22%2F%3E%3Cpath%20d%3D%22M8%2020H5v10h3%22%2F%3E%3C%2Fsvg%3E") !important; }
a[href^="/shop/?category="][href*="category=electric"] > div:first-child { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20stroke%3D%22%232b2d42%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%226%22%20y%3D%2216%22%20width%3D%2236%22%20height%3D%2220%22%20rx%3D%223%22%2F%3E%3Cpath%20d%3D%22M14%2016v-4h6v4M28%2016v-4h6v4%22%2F%3E%3Cpath%20d%3D%22M24%2021l-4%206h4l-2%205%206-7h-4z%22%2F%3E%3Cpath%20d%3D%22M11%2026h4M33%2026h4M35%2024v4%22%2F%3E%3C%2Fsvg%3E") !important; }
a[href^="/shop/?category="][href*="category=electric"]:hover > div:first-child { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20stroke%3D%22%23c1121f%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%226%22%20y%3D%2216%22%20width%3D%2236%22%20height%3D%2220%22%20rx%3D%223%22%2F%3E%3Cpath%20d%3D%22M14%2016v-4h6v4M28%2016v-4h6v4%22%2F%3E%3Cpath%20d%3D%22M24%2021l-4%206h4l-2%205%206-7h-4z%22%2F%3E%3Cpath%20d%3D%22M11%2026h4M33%2026h4M35%2024v4%22%2F%3E%3C%2Fsvg%3E") !important; }
a[href^="/shop/?category="][href*="category=fuel"] > div:first-child { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20stroke%3D%22%232b2d42%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M18%206h10l2%206v10l-3%204v8l-4%208-4-8v-8l-3-4V12z%22%2F%3E%3Cpath%20d%3D%22M18%2012h12M19%2022h10%22%2F%3E%3Cpath%20d%3D%22M34%2014h4a3%203%200%200%201%203%203v12%22%2F%3E%3Cpath%20d%3D%22M7%2018h4v12H7z%22%2F%3E%3C%2Fsvg%3E") !important; }
a[href^="/shop/?category="][href*="category=fuel"]:hover > div:first-child { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20stroke%3D%22%23c1121f%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M18%206h10l2%206v10l-3%204v8l-4%208-4-8v-8l-3-4V12z%22%2F%3E%3Cpath%20d%3D%22M18%2012h12M19%2022h10%22%2F%3E%3Cpath%20d%3D%22M34%2014h4a3%203%200%200%201%203%203v12%22%2F%3E%3Cpath%20d%3D%22M7%2018h4v12H7z%22%2F%3E%3C%2Fsvg%3E") !important; }
a[href^="/shop/?category="][href*="category=suspension"] > div:first-child { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20stroke%3D%22%232b2d42%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M24%204v6%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212%22%20r%3D%223%22%2F%3E%3Cpath%20d%3D%22M17%2017h14l-3%204h-8zM18%2021c-2%202%2012%202%2010%204s-12%202-10%204%2012%202%2010%204-12%202-10%204%22%2F%3E%3Cpath%20d%3D%22M19%2041h10%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2244%22%20r%3D%222.5%22%2F%3E%3C%2Fsvg%3E") !important; }
a[href^="/shop/?category="][href*="category=suspension"]:hover > div:first-child { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20stroke%3D%22%23c1121f%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M24%204v6%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2212%22%20r%3D%223%22%2F%3E%3Cpath%20d%3D%22M17%2017h14l-3%204h-8zM18%2021c-2%202%2012%202%2010%204s-12%202-10%204%2012%202%2010%204-12%202-10%204%22%2F%3E%3Cpath%20d%3D%22M19%2041h10%22%2F%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2244%22%20r%3D%222.5%22%2F%3E%3C%2Fsvg%3E") !important; }
a[href^="/shop/?category="][href*="category=body"] > div:first-child { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20stroke%3D%22%232b2d42%22%20stroke-width%3D%221.6%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M6%2030l3-9a5%205%200%200%201%204.7-3.4h20.6A5%205%200%200%201%2039%2021l3%209v6H6z%22%2F%3E%3Cpath%20d%3D%22M9%2021h30%22%2F%3E%3Ccircle%20cx%3D%2215%22%20cy%3D%2236%22%20r%3D%223.5%22%2F%3E%3Ccircle%20cx%3D%2233%22%20cy%3D%2236%22%20r%3D%223.5%22%2F%3E%3Cpath%20d%3D%22M20%2017.6V12h8v5.6%22%2F%3E%3C%2Fsvg%3E") !important; }
a[href^="/shop/?category="][href*="category=body"]:hover > div:first-child { background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20fill%3D%22none%22%20stroke%3D%22%23c1121f%22%20stroke-width%3D%221.7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M6%2030l3-9a5%205%200%200%201%204.7-3.4h20.6A5%205%200%200%201%2039%2021l3%209v6H6z%22%2F%3E%3Cpath%20d%3D%22M9%2021h30%22%2F%3E%3Ccircle%20cx%3D%2215%22%20cy%3D%2236%22%20r%3D%223.5%22%2F%3E%3Ccircle%20cx%3D%2233%22%20cy%3D%2236%22%20r%3D%223.5%22%2F%3E%3Cpath%20d%3D%22M20%2017.6V12h8v5.6%22%2F%3E%3C%2Fsvg%3E") !important; }

/* --- contact section: form + related photo, side by side --- */
section:has(> form input[name="first_name"]) {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}
section:has(> form input[name="first_name"]) > h2 { grid-column: 1 / -1; }
section:has(> form input[name="first_name"]) > form { max-width: none !important; }
section:has(> form input[name="first_name"])::after {
  content: "";
  display: block;
  border-radius: 20px;
  border: 1px solid #dde3e7;
  min-height: 440px;
  background-image:
    linear-gradient(180deg, rgba(43,45,66,.34) 0%, rgba(43,45,66,0) 45%, rgba(43,45,66,.55) 100%),
    url("/img/contact-support.jpg");
  background-size: cover, cover;
  background-position: center, center;
  box-shadow: 0 26px 50px -34px rgba(43,45,66,.75);
}
@media (max-width: 900px) {
  section:has(> form input[name="first_name"]) { grid-template-columns: 1fr; }
  section:has(> form input[name="first_name"])::after { min-height: 220px; order: -1; }
}

/* --- brand banner (home / about) --- */
.gp-brandbanner {
  max-width: 1280px;
  margin: 0 auto 44px;
  padding: 0 16px;
}
@media (min-width: 768px) { .gp-brandbanner { padding: 0 24px; } }
.gp-brandbanner figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(43,45,66,.16);
  box-shadow: 0 30px 60px -38px rgba(43,45,66,.8);
  background: #1f2233;
}
.gp-brandbanner img { display: block; width: 100%; height: auto; }
.gp-brandbanner figcaption {
  background: linear-gradient(90deg, #2b2d42, #3a3d5c);
  color: #edf2f4;
  font-size: .84rem;
  padding: 12px 18px;
  text-align: center;
}

/* v9 fix: solid buttons/badges get an AA-safe deep red gradient */
.bg-red, button.bg-red, a.bg-red, span.bg-red {
  background-image: linear-gradient(180deg, #d0192a, #b00d1a) !important;
  background-color: #b00d1a !important;
  color: #fff !important;
}
a[href^="/shop/?category="][href*="category="] > div:first-child { background-size: 38px 38px !important; }

/* v9 fix: on mobile the contact heading stays above the photo */
@media (max-width: 900px) {
  section:has(> form input[name="first_name"]) > h2 { order: -2; }
}

/* v9 fix: orange CTAs keep AA text contrast (dark ink on orange) */
.gp-hero a[href="/shop"], .gp-hero a[href="/shop/"],
header a.bg-orange, header form button[type="submit"],
header .fixed.inset-0 > div:last-child a.bg-orange,
header .fixed.inset-0 > div:last-child button.bg-orange,
a.bg-orange, button.bg-orange, .bg-orange {
  color: #1c1f2e !important;
}
.gp-hero a[href="/shop"] svg, header a.bg-orange svg, a.bg-orange svg, button.bg-orange svg { color: #1c1f2e !important; }

/* ---------------------------------------------------------
   Golden Part — rotating brake-disc decoration (desktop only)
   --------------------------------------------------------- */
.gp-hero { position: relative; overflow: hidden; }
.gp-rotor {
  position: absolute;
  inset-inline-start: 3.5rem;
  top: 50%;
  width: 220px;
  height: 220px;
  margin-top: -110px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  contain: layout paint;
}
.gp-rotor svg {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: 50% 50%;
  animation: gp-rotor-spin 14s linear infinite;
  will-change: transform;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.45));
}
.gp-rotor .gp-rotor-ring2 {
  animation: gp-rotor-spin-rev 22s linear infinite;
  transform-origin: 50% 50%;
}
.gp-rotor .gp-rotor-glow { animation: gp-rotor-pulse 3.2s ease-in-out infinite; }
@keyframes gp-rotor-spin { to { transform: rotate(360deg); } }
@keyframes gp-rotor-spin-rev { to { transform: rotate(-360deg); } }
@keyframes gp-rotor-pulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.75; } }

@media (max-width: 1023px) { .gp-rotor { display: none !important; } }
@media (prefers-reduced-motion: reduce) {
  .gp-rotor svg, .gp-rotor .gp-rotor-ring2, .gp-rotor .gp-rotor-glow { animation: none !important; }
}

/* =========================================================
   v10 — square poster + copy, big rotor block, motion layer
   ========================================================= */

/* ---------- poster + company copy ---------- */
.gp-brandbanner {
  max-width: 1280px;
  margin: 0 auto 56px;
  padding: 0 16px;
}
@media (min-width: 768px) { .gp-brandbanner { padding: 0 24px; } }

.gp-bb-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
@media (min-width: 1024px) {
  .gp-bb-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; }
}

.gp-bb-media { margin: 0; min-width: 0; }
.gp-bb-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(43, 45, 66, 0.18);
  box-shadow: 0 30px 60px -38px rgba(43, 45, 66, 0.8);
  background: #12151f;
}
.gp-bb-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
  transform: translate3d(0, 0, 0);
  transition: transform .12s linear;
  will-change: transform;
}
.gp-brandbanner figcaption {
  background: linear-gradient(90deg, #2b2d42, #3a3d5c);
  color: #edf2f4;
  font-size: .84rem;
  line-height: 1.9;
  padding: 12px 18px;
  text-align: center;
  border-radius: 0 0 18px 18px;
  margin-top: 8px;
  border-radius: 14px;
}

.gp-bb-copy { min-width: 0; }
.gp-bb-kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .04em;
  color: #f77f00;
  background: rgba(247, 127, 0, .12);
  border: 1px solid rgba(247, 127, 0, .3);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 14px;
}
.gp-bb-copy h2 {
  font-size: clamp(1.25rem, 1rem + 1.4vw, 2rem);
  line-height: 1.7;
  font-weight: 800;
  margin: 0 0 12px;
}
.gp-bb-copy p {
  line-height: 2.1;
  font-size: .98rem;
  margin: 0 0 14px;
  opacity: .92;
}
.gp-bb-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; }
.gp-bb-list li { position: relative; padding-inline-start: 22px; line-height: 2; font-size: .95rem; }
.gp-bb-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .85em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #f77f00;
}
.gp-bb-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.gp-bb-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 12px;
  background: #f77f00;
  color: #1c1f2e !important;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gp-bb-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(247, 127, 0, .7); }
.gp-bb-cta--ghost {
  background: transparent;
  color: inherit !important;
  border: 1px solid rgba(128, 138, 170, .45);
}

/* ---------- big rotating disc block ---------- */
.gp-rotorblock {
  max-width: 1280px;
  margin: 0 auto 56px;
  padding: 0 16px;
}
@media (min-width: 768px) { .gp-rotorblock { padding: 0 24px; } }
.gp-rb-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #171a28, #232840);
  border: 1px solid rgba(122, 132, 170, .22);
  border-radius: 24px;
  padding: 28px;
}
.gp-rotor-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(247, 127, 0, .18), transparent 60%),
    linear-gradient(160deg, #10131f, #1c2133);
  border: 1px solid rgba(122, 132, 170, .2);
}
.gp-rotor-stage svg {
  width: 82%;
  height: 82%;
  display: block;
  transform-origin: 50% 50%;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, .55));
}
.gp-rotor-stage .gp-rotor-disc {
  transform-origin: 110px 110px;
  animation: gp-rotor-spin 9s linear infinite;
}
.gp-rotor-stage .gp-rotor-ring2 {
  transform-origin: 110px 110px;
  animation: gp-rotor-spin-rev 16s linear infinite;
}
.gp-rotor-stage .gp-rotor-glow {
  transform-origin: 110px 110px;
  animation: gp-rotor-pulse 3.2s ease-in-out infinite;
}
.gp-rb-copy { min-width: 0; color: #edf2f4; }
.gp-rb-copy h2 {
  font-size: clamp(1.2rem, .95rem + 1.2vw, 1.85rem);
  line-height: 1.75;
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
}
.gp-rb-copy p { line-height: 2.1; font-size: .97rem; color: #b9c2d3; margin: 0 0 18px; }
.gp-rb-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 20px; }
.gp-rb-stats div {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(122, 132, 170, .22);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
}
.gp-rb-stats b { display: block; color: #f77f00; font-size: 1.15rem; font-weight: 800; }
.gp-rb-stats span { font-size: .78rem; color: #b9c2d3; }

/* the disc block is desktop/tablet only */
@media (max-width: 1023px) { .gp-rotorblock { display: none !important; } }

/* ---------- brand logo marquee ---------- */
.gp-marquee-wrap { max-width: 1280px; margin: 0 auto 56px; padding: 0 16px; }
@media (min-width: 768px) { .gp-marquee-wrap { padding: 0 24px; } }
.gp-marquee-title {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 14px;
  text-align: center;
}
.gp-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(122, 132, 170, .2);
  background: rgba(255, 255, 255, .75);
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.gp-marquee-track {
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
  animation: gp-marquee 32s linear infinite;
}
.gp-marquee:hover .gp-marquee-track { animation-play-state: paused; }
.gp-marquee-item {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  height: 52px;
  min-width: 96px;
  opacity: .78;
  transition: opacity .2s ease, transform .2s ease;
}
.gp-marquee-item:hover { opacity: 1; transform: translateY(-2px); }
.gp-marquee-item img { max-height: 44px; width: auto; object-fit: contain; }
.gp-marquee-item span { font-weight: 700; font-size: 1rem; white-space: nowrap; color: #2b2d42; }
@keyframes gp-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
[dir="rtl"] .gp-marquee-track { animation-direction: reverse; }

/* ---------- staged scroll reveal + page transition ---------- */
.gp-motion .gp-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1), transform .7s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}
.gp-motion .gp-reveal.gp-in { opacity: 1; transform: none; }
.gp-page-in { animation: gp-page-fade .42s ease-out both; }
@keyframes gp-page-fade {
  from { opacity: 0; transform: translate3d(0, 8px, 0); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .gp-motion .gp-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .gp-marquee-track,
  .gp-rotor-stage .gp-rotor-disc,
  .gp-rotor-stage .gp-rotor-ring2,
  .gp-rotor-stage .gp-rotor-glow { animation: none !important; }
  .gp-page-in { animation: none !important; }
  .gp-bb-frame img { transform: none !important; }
}

/* =========================================================
   v11 — fixes: sticky header on inner pages, light rotor block,
   readable CTA band, "برندهای همکار" removed.
   ========================================================= */

/* 1) never transform <body> — it broke the sticky header on inner pages */
body.gp-page-in { animation: none !important; transform: none !important; }
body { transform: none !important; }
header, header.bg-white, header.sticky.top-0 {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  isolation: isolate;
}
header > div { position: relative; z-index: 2; }

/* 2) partner-brands marquee removed */
.gp-marquee-wrap, #gp-marquee, .gp-marquee, .gp-marquee-title { display: none !important; }

/* 3) rotor block: same tone as the page, dark readable text */
.gp-rb-grid {
  background: linear-gradient(135deg, #f7fafc 0%, #eaf0f4 55%, #e2e9ef 100%) !important;
  border: 1px solid var(--gp-line-2, #d7dee5) !important;
  box-shadow: var(--gp-shadow-md);
}
.gp-rotor-stage {
  background:
    radial-gradient(circle at 35% 30%, rgba(247, 127, 0, .14), transparent 62%),
    linear-gradient(160deg, #ffffff, #e8eef3) !important;
  border: 1px solid #d7dee5 !important;
}
.gp-rotor-stage svg {
  filter: drop-shadow(0 14px 26px rgba(43, 45, 66, .18));
  transform-origin: 50% 50%;
  animation: gp-rotor-spin 26s linear infinite;
}
.gp-rotor-stage .gp-rotor-disc { animation-duration: 7s; }
.gp-rotor-stage .gp-rotor-ring2 { animation-duration: 11s; }
.gp-rb-copy { color: rgb(var(--gp-navy)) !important; }
.gp-rb-copy h2 { color: rgb(var(--gp-navy)) !important; }
.gp-rb-copy p { color: #55607a !important; }
.gp-rb-copy .gp-bb-kicker {
  background: rgba(247, 127, 0, .12) !important;
  color: #b45700 !important;
  border-color: rgba(247, 127, 0, .35) !important;
}
.gp-rb-stats div {
  background: #ffffff !important;
  border: 1px solid #dde4ea !important;
  box-shadow: var(--gp-shadow-sm);
}
.gp-rb-stats b { color: #d76a00 !important; }
.gp-rb-stats span { color: #5b6580 !important; }
.gp-rb-copy .gp-bb-cta { color: #fff !important; }
.gp-rb-copy .gp-bb-cta--ghost { color: rgb(var(--gp-navy)) !important; border-color: #c6cedb !important; }

/* 4) CTA band ("دنبال قطعه‌ی خاصی می‌گردید؟") — readable on light page */
.gp-cta {
  background:
    radial-gradient(620px 280px at 88% 0%, rgba(247, 127, 0, .12), transparent 62%),
    linear-gradient(135deg, #ffffff 0%, #eef3f7 100%) !important;
  border: 1px solid #dde4ea !important;
  color: rgb(var(--gp-navy)) !important;
  box-shadow: var(--gp-shadow-md);
}
.gp-cta h3 { color: rgb(var(--gp-navy)) !important; }
.gp-cta p { color: #55607a !important; }
.gp-cta a { color: #fff !important; }

/* 5) rotor block also shows on tablets, stacks safely on small screens */
@media (max-width: 1023px) {
  .gp-rotorblock { display: block !important; }
  .gp-rb-grid { grid-template-columns: minmax(0, 1fr) !important; gap: 22px; padding: 20px; }
  .gp-rotor-stage { max-width: 320px; margin-inline: auto; }
}
@media (max-width: 420px) {
  .gp-rb-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .gp-rb-stats div { padding: 10px 4px; }
  .gp-rb-stats b { font-size: 1rem; }
  .gp-rb-stats span { font-size: .7rem; }
}

/* 6) overflow-x:hidden on <body> turned it into a scroll container and killed
   the sticky header (it drifted into the middle of inner pages). Clip on <html>
   only, keep <body> overflow visible. */
html { max-width: 100%; overflow-x: clip; }
body { max-width: 100%; overflow-x: clip; overflow-y: visible; }

/* =========================================================
   v12 — rotor animation polish
   Keeps the original rotor artwork intact and makes the motion
   reliable on static hosting as well as local preview.
   ========================================================= */
.gp-rotor-stage svg {
  transform-box: fill-box;
  transform-origin: center center;
  animation: gp-rotor-outer-spin 20s linear infinite !important;
  will-change: transform, filter;
}
.gp-rotor-stage .gp-rotor-disc,
.gp-rotor-stage .gp-rotor-ring2,
.gp-rotor-stage .gp-rotor-glow {
  transform-box: fill-box;
  transform-origin: 110px 110px;
  will-change: transform, opacity;
}
.gp-rotor-stage .gp-rotor-disc {
  animation: gp-rotor-spin 7s linear infinite !important;
}
.gp-rotor-stage .gp-rotor-ring2 {
  animation: gp-rotor-spin-rev 11s linear infinite !important;
}
.gp-rotor-stage .gp-rotor-glow {
  animation: gp-rotor-pulse 2.8s ease-in-out infinite !important;
}
.gp-rotor-stage:hover svg {
  animation-duration: 9s !important;
}
@keyframes gp-rotor-outer-spin {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.012); }
  to { transform: rotate(360deg) scale(1); }
}
@keyframes gp-rotor-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes gp-rotor-spin-rev {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes gp-rotor-pulse {
  0%, 100% { opacity: .28; transform: scale(1); }
  50% { opacity: .82; transform: scale(1.025); }
}


/* ---------- v12: professional rotor motion + responsive layout ---------- */
.gp-rotor-stage {
  min-width: 0;
  overflow: hidden;
  contain: layout paint;
}
.gp-rotor-stage svg {
  width: min(82%, 430px);
  height: auto;
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  transform: none !important;
  animation: none !important;
  will-change: transform;
}
.gp-rotor-stage .gp-rotor-assembly {
  transform-box: fill-box;
  transform-origin: center;
  animation: gp-rotor-assembly-spin 12s linear infinite;
  will-change: transform;
}
.gp-rotor-stage .gp-rotor-glow {
  transform-box: fill-box;
  transform-origin: center;
  animation: gp-rotor-glow-pulse 3.8s ease-in-out infinite;
}
@keyframes gp-rotor-assembly-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes gp-rotor-glow-pulse {
  0%, 100% { opacity: .45; }
  50% { opacity: .9; }
}

/* Keep the rotor available and properly stacked on tablet/mobile. */
@media (min-width: 768px) and (max-width: 1023px) {
  .gp-rotorblock { display: block !important; padding: 0 16px; margin-bottom: 40px; }
  .gp-rb-grid { grid-template-columns: 1fr; gap: 24px; padding: 20px; }
  .gp-rotor-stage { width: 100%; max-width: 560px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .gp-rotor-stage svg { width: min(78%, 360px); }
  .gp-rb-copy { text-align: center; }
  .gp-rb-stats { max-width: 560px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 767px) {
  .gp-rotorblock { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .gp-rotor-stage .gp-rotor-assembly, .gp-rotor-stage .gp-rotor-glow { animation: none !important; }
}


/* ---------- Home sales cards (v11 redesign) ---------- */
.gp-sales-cards {
  width: min(1280px, calc(100% - 32px));
  margin: 40px auto 18px;
  padding: 34px 28px 30px;
  border: 1px solid #e2e8ef;
  border-radius: 28px;
  background:
    radial-gradient(120% 90% at 50% -20%, rgba(247,127,0,.09), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  box-shadow: 0 24px 60px -34px rgba(43,45,66,.35);
}
.gp-sales-head { text-align: center; margin-bottom: 26px; }
.gp-sales-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(247,127,0,.10);
  border: 1px solid rgba(247,127,0,.24);
  color: #b45700;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.gp-sales-head h2 {
  margin: 12px 0 6px;
  color: rgb(var(--gp-navy));
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.2rem);
}
.gp-sales-head p { margin: 0; color: #667289; font-size: .98rem; }
.gp-sales-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.gp-sales-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 26px 26px;
  border-radius: 24px;
  text-decoration: none !important;
  border: 1px solid #e0e7ee;
  color: rgb(var(--gp-navy)) !important;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px -20px rgba(43,45,66,.35);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.gp-sales-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block: 0;
  width: 5px;
  background: linear-gradient(180deg, #ffb020, #f77f00);
  opacity: .9;
}
.gp-sales-cash::before { background: linear-gradient(180deg, #ffd25e, #f0a500); }
.gp-sales-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -70px;
  top: -70px;
  width: 190px; height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,127,0,.13), transparent 70%);
  pointer-events: none;
}
.gp-sales-card:hover { transform: translateY(-5px); border-color: rgba(247,127,0,.40); box-shadow: 0 26px 48px -24px rgba(43,45,66,.42); }
.gp-sales-badge {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  color: #8a5000;
  background: linear-gradient(135deg, #ffe6b5, #ffd27a);
  border: 1px solid rgba(240,165,0,.35);
}
.gp-sales-icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, #ff9c1a, #e07600);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(247,127,0,.75);
}
.gp-sales-icon svg { width: 28px; height: 28px; }
.gp-sales-title {
  font-size: clamp(1.1rem, .95rem + .5vw, 1.35rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: rgb(var(--gp-navy));
}
.gp-sales-desc { margin: 0; color: #67728a; font-size: .92rem; line-height: 2; }
.gp-sales-list { display: grid; gap: 7px; margin: 2px 0 6px; width: 100%; }
.gp-sales-list span {
  position: relative;
  padding-inline-start: 22px;
  font-size: .87rem;
  color: #4d5872;
  font-weight: 600;
}
.gp-sales-list span::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .45em;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(247,127,0,.16);
  box-shadow: inset 0 0 0 2px rgba(247,127,0,.55);
}
.gp-sales-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: .92rem;
  color: #4a2b00 !important;
  background: linear-gradient(135deg, #ffd45c, #f7a800);
  box-shadow: 0 12px 26px -12px rgba(240,165,0,.9);
  transition: transform .22s ease, box-shadow .22s ease;
}
.gp-sales-card:hover .gp-sales-cta { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(240,165,0,.95); }
.gp-sales-cta i { font-style: normal; font-size: 1.05rem; }
@media (max-width: 767px) {
  .gp-sales-cards { width: calc(100% - 24px); margin: 28px auto 14px; padding: 22px 16px; border-radius: 22px; }
  .gp-sales-grid { grid-template-columns: 1fr; gap: 16px; }
  .gp-sales-card { padding: 22px 18px; }
}

/* ---------- Trust strip (v11 redesign) ---------- */
.gp-strip {
  margin-top: 34px !important;
  margin-bottom: 10px !important;
  gap: 0 !important;
  padding: 22px 10px;
  border: 1px solid #e2e8ef;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
  box-shadow: 0 18px 44px -32px rgba(43,45,66,.4);
}
.gp-strip-item {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 8px 18px !important;
  flex-direction: column;
  text-align: center;
  gap: 10px !important;
  position: relative;
}
.gp-strip-item:hover { transform: none !important; box-shadow: none !important; }
.gp-strip-item + .gp-strip-item::before {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: linear-gradient(180deg, transparent, #dbe3ea, transparent);
}
.gp-strip .gp-strip-ico {
  width: 52px !important; height: 52px !important; flex: 0 0 52px !important;
  border-radius: 16px !important;
  background: linear-gradient(145deg, rgba(247,127,0,.16), rgba(247,127,0,.05)) !important;
  color: rgb(var(--gp-orange)) !important;
  box-shadow: inset 0 0 0 1px rgba(247,127,0,.18);
}
.gp-strip .gp-strip-ico svg { width: 24px; height: 24px; stroke: currentColor; }
.gp-strip b { font-size: 1rem !important; font-weight: 900; letter-spacing: -.015em; }
.gp-strip span { font-size: .82rem; }
@media (max-width: 900px) {
  .gp-strip-item:nth-child(2n)::before { display: none; }
  .gp-strip-item { padding: 14px 10px !important; }
}

/* =========================================================
   v12 — header rebuild (single row), hero-style header
   background, poster spacing, rotor block removed
   ========================================================= */

/* ---- 1. poster keeps clear distance from the block above ---- */
.gp-brandbanner { margin-top: clamp(30px, 4vw, 60px) !important; }

/* ---- 2. rotating brake-disc block: removed by request ---- */
.gp-rotorblock,
#gp-rotor-block { display: none !important; }

/* ---- 3. header: not sticky, stays at the very top of the page ---- */
header.bg-white,
header.sticky.top-0,
header {
  position: static !important;
  top: auto !important;
}

/* ---- 4. header background = hero-style dark panel (header only) ---- */
header.bg-white,
header.sticky.top-0 {
  position: relative !important;
  overflow: hidden;
  background:
    radial-gradient(900px 320px at 85% -60%, rgba(247, 127, 0, 0.28), transparent 62%),
    radial-gradient(700px 300px at 8% 140%, rgba(230, 57, 70, 0.16), transparent 62%),
    linear-gradient(180deg, #23263a 0%, #1b1d2b 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 18px 40px -28px rgba(17, 19, 30, 0.95);
}
header.bg-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(80% 120% at 50% 40%, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
header.bg-white > div { position: relative; z-index: 1; }

/* ---- 5. desktop: one centered row — logo | nav | حساب من ---- */
@media (min-width: 768px) {
  html:not([data-gp-page="shop"]) header > div {
    display: flex !important;
    align-items: center;
    gap: 20px;
    padding-block: 10px;
  }
  /* dissolve the old top row so its children join the single row */
  html:not([data-gp-page="shop"]) header > div > div.flex.items-center {
    display: contents !important;
  }
  html:not([data-gp-page="shop"]) header > div > div.flex.items-center > div.flex-1 { display: none !important; }

  html:not([data-gp-page="shop"]) header > div > div.flex.items-center > a[href="/"] { order: 1; }
  html:not([data-gp-page="shop"]) header > div > nav {
    order: 2;
    margin-inline: auto !important;
    border-top: 0 !important;
    padding-block: 0 !important;
    gap: 26px !important;
  }
  html:not([data-gp-page="shop"]) header > div > div.flex.items-center > form { order: 3; }
  html:not([data-gp-page="shop"]) header > div > div.flex.items-center > div.flex.gap-2 { order: 4; }

  /* logo wordmark always visible next to the nav */
  header a[href="/"] > span.hidden { display: flex !important; }
  header a[href="/"] img { height: 46px !important; }

  /* keep the action labels readable */
  header > div > div.flex.gap-2 a span,
  header > div > div.flex.items-center > div.flex.gap-2 a span,
  header > div > div.flex.items-center > div.flex.gap-2 button span {
    display: inline !important;
  }
}

/* ---- 6. only the shop page keeps search + cart + car picker ---- */
html:not([data-gp-page="shop"]) header form,
html:not([data-gp-page="shop"]) header a[href="/cart/"],
html:not([data-gp-page="shop"]) header a[href="/cart"],
html:not([data-gp-page="shop"]) header div.flex.gap-2 > button {
  display: none !important;
}

/* ---- 7. mobile: keep the compact row tidy ---- */
@media (max-width: 767px) {
  header > div > div.flex.items-center { padding-block: 10px !important; }
}

/* =========================================================
   v13 — hero panel becomes the header background,
   header contents sit inside a highlighted bar
   ========================================================= */

/* the dark panel now starts at the very top of the page */
html[data-gp-page="home"] header,
html[data-gp-page="home"] header.bg-white,
html[data-gp-page="home"] header.sticky.top-0 {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  z-index: 5 !important;
}
html[data-gp-page="home"] header.bg-white::before { display: none !important; }

html[data-gp-page="home"] .gp-hero {
  margin-top: calc(-1 * var(--gp-headerh, 84px)) !important;
  padding-top: calc(var(--gp-headerh, 84px) + clamp(26px, 4vw, 54px)) !important;
  padding-bottom: clamp(34px, 5vw, 66px) !important;
  padding-inline: max(16px, calc((100% - 1280px) / 2)) !important;
  max-width: none !important;
  width: 100% !important;
  margin-inline: 0 !important;
  border-radius: 0 0 28px 28px !important;
  z-index: 0;
}

/* highlighted bar so logo / menu / buttons never blend into the panel */
header > div.max-w-\[1280px\] {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 18px !important;
  backdrop-filter: blur(10px);
  margin-block: 12px !important;
  padding-inline: 16px !important;
  box-shadow: 0 14px 34px -24px rgba(0, 0, 0, 0.9);
}
@media (min-width: 768px) {
  header > div.max-w-\[1280px\] { border-radius: 999px !important; padding-inline: 22px !important; }
  html[data-gp-page="shop"] header > div.max-w-\[1280px\] { border-radius: 22px !important; }
}
header nav { border-top-color: rgba(255, 255, 255, 0.12) !important; }

/* ---------- v15 fix: header dropdown panel was invisible ----------
   The panel markup uses .bg-white.border, which the dark-header rules
   turned into a translucent 8% white surface, and its links inherited
   the light `header nav a` color — light text on a light page = blank box.
   Give the panel its own solid dark surface + readable items. */
header nav .absolute > div,
header nav .absolute > .bg-white {
  background: #232539 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 22px 44px -18px rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: none !important;
}
header nav .absolute a {
  color: #eef2f5 !important;
  background: transparent !important;
}
header nav .absolute a::after { display: none !important; }
header nav .absolute a:hover {
  background: rgba(247, 127, 0, 0.16) !important;
  color: rgb(var(--gp-orange-hot)) !important;
}

/* v15 fix (root cause): the header used `overflow: hidden`, which clipped the
   dropdown panel that opens below it. Border-radius alone keeps the panel shape. */
header.bg-white,
header.sticky.top-0,
header {
  overflow: visible !important;
}

/* =====================================================================
   v16 — tel links, representation file upload, about production section
   ===================================================================== */
a.gp-tel {
  color: inherit !important;
  text-decoration: none !important;
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
  border-radius: 6px;
  padding: 0 2px;
  transition: color .18s ease, background .18s ease;
}
a.gp-tel:hover,
a.gp-tel:focus-visible {
  color: rgb(var(--gp-orange-hot, 247 127 0)) !important;
  background: rgba(247, 127, 0, .12);
}

/* ---- file upload field on the representation form ---- */
.gp-upload { margin: 14px 0 18px; }
.gp-upload > label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #2b2d42;
  margin-bottom: 8px;
}
.gp-upload-box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 1.5px dashed rgba(43, 45, 66, .28);
  background: #fbfcfe;
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
  text-align: right;
}
.gp-upload-box:hover { border-color: #f77f00; background: #fff8f0; }
.gp-upload-box svg { width: 22px; height: 22px; flex: 0 0 auto; color: #f77f00; }
.gp-upload-box b { font-size: 13px; font-weight: 800; color: #2b2d42; display: block; }
.gp-upload-box span { font-size: 11.5px; color: #6b7280; display: block; margin-top: 3px; }
.gp-upload input[type="file"] { display: none; }
.gp-upload-files { margin: 10px 0 0; padding: 0; list-style: none; }
.gp-upload-files li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #2b2d42;
  background: #f2f5f9;
  border-radius: 8px;
  padding: 7px 10px;
  margin-top: 6px;
  word-break: break-all;
}
.gp-upload-files li i { color: #f77f00; font-style: normal; }

/* ---- about: "we also manufacture" two-part block ---- */
.gp-made {
  max-width: 1280px;
  margin: 34px auto;
  padding: 0 16px;
}
.gp-made-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 26px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(43, 45, 66, .08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(43, 45, 66, .08);
}
.gp-made-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #eef2f4;
}
.gp-made-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gp-made-media figcaption {
  position: absolute;
  inset: auto 12px 12px 12px;
  background: rgba(43, 45, 66, .82);
  color: #fff;
  font-size: 11.5px;
  line-height: 1.7;
  padding: 8px 12px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}
.gp-made-copy .gp-made-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #f77f00;
  background: rgba(247, 127, 0, .1);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 10px;
}
.gp-made-copy h2 {
  font-size: 22px;
  font-weight: 900;
  color: #2b2d42;
  line-height: 1.7;
  margin: 0 0 10px;
}
.gp-made-copy p {
  font-size: 14px;
  line-height: 2;
  color: #4b5563;
  margin: 0 0 10px;
}
.gp-made-list { margin: 12px 0 0; padding: 0; list-style: none; }
.gp-made-list li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 13.5px;
  line-height: 2;
  color: #2b2d42;
}
.gp-made-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f77f00;
}
@media (max-width: 900px) {
  .gp-made-grid { grid-template-columns: 1fr; padding: 16px; gap: 18px; }
  .gp-made-media { aspect-ratio: 4 / 3; }
  .gp-made-copy h2 { font-size: 19px; }
}


/* ---------- v17: brand logos + category grid fill ---------- */
.gp-brand-badge.gp-brand-badge-logo {
  background: #fff;
  border: 1px solid rgba(43, 45, 66, 0.1);
  padding: 5px;
  overflow: hidden;
}
.gp-brand-badge.gp-brand-badge-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.gp-cat-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
}
.gp-cat-grid > a {
  flex: 0 0 calc((100% - 2 * 0.75rem) / 3);
  max-width: calc((100% - 2 * 0.75rem) / 3);
}
@media (min-width: 768px) {
  .gp-cat-grid > a {
    flex: 0 0 calc((100% - 4 * 1.25rem) / 5);
    max-width: calc((100% - 4 * 1.25rem) / 5);
  }
}
.gp-cat-grid > a[data-gp-dropped] { display: none !important; }

/* 2026 responsive storefront UX */
.gp-shop-note{margin:-10px 0 22px;padding:12px 15px;border:1px solid rgba(247,127,0,.16);background:linear-gradient(135deg,#fff9f4,#fff);border-radius:14px;display:flex;gap:10px;align-items:center;flex-wrap:wrap;color:#4b5563;font-size:12px}.gp-shop-note span{background:rgba(247,127,0,.1);color:#d76500;padding:5px 9px;border-radius:999px;font-weight:800}.gp-shop-note b{color:#2b2d42}.gp-shop-note small{color:#8b95a5}
.gp-reviews{max-width:1280px;margin:30px auto 0;padding:0 16px}.gp-review-head{background:#fff;border:1px solid rgba(43,45,66,.08);border-radius:20px;padding:20px;display:flex;justify-content:space-between;gap:20px;align-items:center;box-shadow:0 12px 30px rgba(43,45,66,.05)}.gp-kicker{display:inline-block;color:#f77f00;background:rgba(247,127,0,.1);border-radius:999px;padding:4px 9px;font-size:10px;font-weight:800}.gp-review-head h2{margin:8px 0 3px;font-size:20px;color:#2b2d42}.gp-review-head p{margin:0;color:#7d8796;font-size:12px}.gp-stars{direction:ltr;font-size:24px;letter-spacing:2px;color:#d8dee5;white-space:nowrap}.gp-stars span.on{color:#f7a400}.gp-review-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:12px}.gp-review-card{background:#fff;border:1px solid rgba(43,45,66,.08);border-radius:16px;padding:16px}.gp-review-top{display:flex;justify-content:space-between;gap:10px;margin-bottom:9px}.gp-review-top b{color:#2b2d42;font-size:13px}.gp-review-top span{color:#f7a400;font-size:13px}.gp-review-card strong{display:block;font-size:13px;margin-bottom:5px}.gp-review-card p{color:#596273;font-size:12px;line-height:2;margin:0 0 8px}.gp-review-card small{color:#a0a8b3;font-size:10px}.gp-review-empty{grid-column:1/-1;background:#fff;border:1px dashed #dce2e8;border-radius:16px;padding:28px;text-align:center;color:#8b95a5;font-size:12px}.gp-review-form{margin-top:12px;background:#fff;border:1px solid rgba(43,45,66,.08);border-radius:18px;padding:18px}.gp-review-form h3{font-size:14px;margin:0 0 12px}.gp-review-form-inner label{display:flex;flex-direction:column;gap:6px;font-size:11px;color:#697386}.gp-review-row{display:grid;grid-template-columns:180px 1fr;gap:10px}.gp-review-form-inner input,.gp-review-form-inner select,.gp-review-form-inner textarea{border:1px solid #dce2e8;border-radius:10px;padding:10px;font:inherit;background:#fafbfc;outline:none}.gp-review-form-inner textarea{min-height:110px;resize:vertical;margin-top:10px}.gp-review-submit{margin-top:10px;border:0;border-radius:10px;background:#ef7436;color:#fff;padding:11px 18px;font:inherit;font-weight:800;cursor:pointer}.gp-review-submit:disabled{opacity:.6;cursor:wait}.gp-review-msg{display:inline-block;margin-right:10px;font-size:11px;color:#b45309}.gp-review-msg.ok{color:#14864c}.gp-review-msg.err{color:#c63b3b}.gp-review-login-btn{display:inline-flex;padding:10px 14px;border-radius:10px;background:#f7f8fa;color:#d76500;text-decoration:none;font-size:12px;font-weight:800}
@media(max-width:700px){.gp-reviews{padding:0 12px;margin-top:20px}.gp-review-head{padding:15px;align-items:flex-start;flex-direction:column}.gp-review-head h2{font-size:17px}.gp-stars{font-size:20px}.gp-review-list{grid-template-columns:1fr}.gp-review-row{grid-template-columns:1fr}.gp-shop-note{margin:-6px 0 16px;padding:11px}.gp-shop-note small{width:100%}}
@media(max-width:640px){
  main .grid.lg\:grid-cols-\[1\.6fr_1fr\] > div{min-width:0}
  main .grid.lg\:grid-cols-\[1\.6fr_1fr\] .bg-white.border{padding:12px!important}
}
/* v21 professional storefront filters/details - responsive */
.gp-live-shop,.gp-product-details{max-width:1280px;margin:24px auto;padding:0 16px;direction:rtl}
.gp-filter-head{display:flex;justify-content:space-between;gap:18px;align-items:center;background:#fff;border:1px solid rgba(43,45,66,.08);border-radius:20px;padding:18px 20px;box-shadow:0 12px 30px rgba(43,45,66,.05)}
.gp-filter-head h2{margin:7px 0 3px;font-size:20px;color:#2b2d42}.gp-filter-head p{margin:0;color:#7d8796;font-size:12px}.gp-filter-reset{border:1px solid #e1e6ec;background:#fff;border-radius:10px;padding:9px 13px;cursor:pointer;font:inherit;font-size:11px;color:#5f6978}
.gp-filter-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr 1fr 1fr auto;gap:9px;margin:12px 0}.gp-filter-grid input,.gp-filter-grid select{min-width:0;border:1px solid #dce2e8;background:#fff;border-radius:10px;padding:10px;font:inherit;font-size:11px;outline:none}.gp-filter-grid input:focus,.gp-filter-grid select:focus{border-color:#f77f00;box-shadow:0 0 0 3px rgba(247,127,0,.08)}.gp-filter-submit{border:0;background:#ef7436;color:#fff;border-radius:10px;padding:10px 14px;font:inherit;font-size:11px;font-weight:800;cursor:pointer}.gp-live-count{font-size:11px;color:#8a94a3;margin:8px 2px}.gp-live-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.gp-live-card{background:#fff;border:1px solid rgba(43,45,66,.08);border-radius:17px;overflow:hidden;box-shadow:0 10px 26px rgba(43,45,66,.04);display:flex;flex-direction:column;min-width:0}.gp-live-img{aspect-ratio:1/1;background:#f7f8fa;display:block}.gp-live-img img{width:100%;height:100%;object-fit:contain;display:block}.gp-live-body{padding:13px;display:flex;flex-direction:column;gap:6px;min-width:0}.gp-live-body small{color:#9aa4b2;font-size:10px}.gp-live-body h3{margin:0;line-height:1.8;font-size:13px;min-height:47px}.gp-live-body h3 a{color:#2b2d42;text-decoration:none}.gp-live-stock{font-size:10px;font-weight:800}.gp-live-stock.in{color:#15803d}.gp-live-stock.out{color:#b42318}.gp-live-price{font-size:14px;color:#2b2d42;margin-top:2px}.gp-live-buy{display:block;text-align:center;text-decoration:none;background:#2b2d42;color:#fff;border-radius:9px;padding:9px;font-size:11px;font-weight:800;margin-top:4px}.gp-live-empty{grid-column:1/-1;text-align:center;border:1px dashed #dce2e8;border-radius:16px;padding:35px;color:#8b95a5;background:#fff;font-size:12px}
.gp-product-details{background:#fff;border:1px solid rgba(43,45,66,.08);border-radius:20px;padding:20px;box-shadow:0 12px 30px rgba(43,45,66,.05)}.gp-detail-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.gp-detail-grid>div{background:#f8fafb;border:1px solid #edf0f3;border-radius:13px;padding:13px;display:flex;flex-direction:column;gap:5px}.gp-detail-grid span{font-size:10px;color:#8b95a5}.gp-detail-grid b{font-size:12px;color:#2b2d42}.gp-product-description{margin-top:18px;padding-top:16px;border-top:1px solid #edf0f3}.gp-product-description h2{font-size:16px;margin:0 0 8px}.gp-product-description p{font-size:12px;line-height:2;color:#5f6978;margin:0;white-space:pre-wrap}
@media(max-width:1100px){.gp-filter-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.gp-filter-submit{grid-column:span 2}.gp-live-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:700px){.gp-live-shop,.gp-product-details{padding:0 12px;margin:18px auto}.gp-filter-head{padding:15px;align-items:flex-start}.gp-filter-head h2{font-size:17px}.gp-filter-reset{font-size:10px}.gp-filter-grid{grid-template-columns:1fr 1fr}.gp-filter-grid input:first-child{grid-column:1/-1}.gp-filter-submit{grid-column:1/-1}.gp-live-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}.gp-live-body{padding:10px}.gp-live-body h3{font-size:11px;min-height:40px}.gp-live-price{font-size:12px}.gp-detail-grid{grid-template-columns:1fr 1fr}.gp-product-description h2{font-size:14px}}
@media(max-width:430px){.gp-live-grid{grid-template-columns:1fr 1fr}.gp-filter-grid{grid-template-columns:1fr}.gp-filter-grid input:first-child,.gp-filter-submit{grid-column:auto}.gp-detail-grid{grid-template-columns:1fr}.gp-filter-head{flex-direction:column}.gp-filter-reset{width:100%}}
/* v22 reliable homepage video */
[data-golden-video]{width:100%;}
[data-golden-video] [data-gp-video-box]{min-width:0;}
@media(max-width:760px){[data-golden-video]{padding:12px!important;}[data-golden-video]>div{grid-template-columns:1fr!important;}[data-golden-video] [data-gp-video-box]{min-height:210px!important;aspect-ratio:16/9;}[data-golden-video] h3{font-size:18px!important;}[data-golden-video]>div>div:first-child{padding:18px!important;}}

/* =========================================================================
   v23 — professional shop search + live storefront (responsive)
   ========================================================================= */
.gp-live-shop{max-width:1280px;margin:22px auto;padding:0 16px;direction:rtl}
.gp-search-hero{position:relative;display:flex;align-items:center;gap:8px;background:#fff;border:1.5px solid #e3e8ee;border-radius:16px;padding:10px 14px;box-shadow:0 10px 28px rgba(43,45,66,.06);transition:border-color .18s,box-shadow .18s}
.gp-search-hero:focus-within{border-color:#f77f00;box-shadow:0 0 0 4px rgba(247,127,0,.09)}
.gp-search-ico{display:flex;color:#f77f00;flex:0 0 auto}
.gp-search-ico svg{width:22px;height:22px}
.gp-search-input{flex:1;min-width:0;border:0;outline:0;background:transparent;font:inherit;font-size:16px;color:#2b2d42}
.gp-search-input::placeholder{color:#a6aeb9}
.gp-search-input::-webkit-search-cancel-button{display:none}
.gp-search-clear{flex:0 0 auto;width:32px;height:32px;border:0;border-radius:50%;background:#f1f4f7;color:#5f6978;font-size:17px;line-height:1;cursor:pointer}
.gp-search-clear:hover{background:#e6eaf0}
.gp-filter-toggle{flex:0 0 auto;display:inline-flex;align-items:center;gap:6px;border:1px solid #e3e8ee;border-radius:11px;background:#fff;color:#2b2d42;padding:9px 13px;font:inherit;font-size:12px;font-weight:800;cursor:pointer}
.gp-filter-toggle b{color:#f77f00;font-weight:800}
.gp-filter-toggle.has-filters{border-color:#f77f00;color:#d76500;background:rgba(247,127,0,.06)}
.gp-filter-toggle.is-open{background:#2b2d42;color:#fff;border-color:#2b2d42}
.gp-filter-toggle.is-open b{color:#ffb066}
/* chips */
.gp-chip-row{display:flex;gap:8px;overflow-x:auto;padding:14px 2px 6px;scrollbar-width:none;-webkit-overflow-scrolling:touch}
.gp-chip-row::-webkit-scrollbar{display:none}
.gp-chip{flex:0 0 auto;border:1px solid #e3e8ee;background:#fff;color:#4b5563;border-radius:999px;padding:9px 16px;font:inherit;font-size:12.5px;font-weight:700;cursor:pointer;white-space:nowrap;transition:all .15s}
.gp-chip:hover{border-color:#f7a44a;color:#d76500}
.gp-chip.is-on{background:#2b2d42;border-color:#2b2d42;color:#fff}
/* filter panel */
.gp-filter-panel{display:grid;grid-template-columns:repeat(5,minmax(0,1fr)) auto;gap:10px;background:#fff;border:1px solid #edf0f3;border-radius:16px;padding:14px;margin-top:10px}
.gp-filter-panel label{display:flex;flex-direction:column;gap:5px;font-size:11px;color:#697386;min-width:0}
.gp-filter-panel input,.gp-filter-panel select{width:100%;min-width:0;border:1px solid #dce2e8;border-radius:10px;padding:10px;font:inherit;font-size:13px;background:#fafbfc;outline:none}
.gp-filter-panel input:focus,.gp-filter-panel select:focus{border-color:#f77f00;box-shadow:0 0 0 3px rgba(247,127,0,.08)}
.gp-filter-actions{display:flex;align-items:flex-end;gap:8px}
.gp-apply{border:0;background:#ef7436;color:#fff;border-radius:10px;padding:10px 18px;font:inherit;font-size:12px;font-weight:800;cursor:pointer;white-space:nowrap}
.gp-apply:hover{background:#d76500}
.gp-clear-all{border:1px solid #e3e8ee;background:#fff;color:#5f6978;border-radius:10px;padding:10px 13px;font:inherit;font-size:11.5px;cursor:pointer;white-space:nowrap}
/* suggestions dropdown */
.gp-suggest{position:absolute;top:calc(100% + 8px);right:0;left:0;z-index:1200;background:#fff;border:1px solid #e6eaf0;border-radius:16px;box-shadow:0 24px 60px rgba(15,23,42,.16);padding:6px;display:none;max-height:min(430px,70vh);overflow:auto}
.gp-suggest.is-open{display:block;animation:gpSug .16s ease-out}
@keyframes gpSug{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
.gp-suggest-item{display:flex;align-items:center;gap:11px;padding:9px 10px;border-radius:12px;text-decoration:none}
.gp-suggest-item:hover,.gp-suggest-item.is-active{background:#fff6ee}
.gp-suggest-item img{width:52px;height:52px;flex:0 0 auto;border-radius:10px;background:#f7f8fa;object-fit:contain;border:1px solid #eef1f4}
.gp-suggest-main{flex:1;min-width:0;display:flex;flex-direction:column;gap:2px}
.gp-suggest-main b{color:#2b2d42;font-size:13px;line-height:1.7;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.gp-suggest-main small{color:#8b95a5;font-size:11px}
.gp-suggest-price{flex:0 0 auto;color:#d76500;font-weight:800;font-size:13px;display:flex;flex-direction:column;align-items:flex-end;line-height:1.5}
.gp-suggest-price i{font-style:normal;font-weight:400;font-size:10px;color:#9aa4b2}
.gp-suggest-cta{display:block;margin-top:4px;padding:11px;text-align:center;background:#f7f8fa;border-radius:12px;color:#d76500;font-size:12.5px;font-weight:800;text-decoration:none}
.gp-suggest-cta:hover{background:#fff1e2}
.gp-suggest-empty{padding:22px 12px;text-align:center;color:#8b95a5;font-size:12.5px;line-height:2}
/* responsive */
@media(max-width:1100px){.gp-filter-panel{grid-template-columns:repeat(3,minmax(0,1fr))}.gp-filter-actions{grid-column:1/-1}}
@media(max-width:899px){
  .gp-filter-panel{grid-template-columns:1fr 1fr}
  .gp-filter-panel[hidden]{display:none}
  .gp-filter-actions{grid-column:1/-1}
  .gp-filter-actions .gp-apply{flex:1}
}
@media(max-width:560px){
  .gp-live-shop{padding:0 12px;margin:14px auto}
  .gp-search-hero{padding:9px 11px;border-radius:14px}
  .gp-search-input{font-size:16px}
  .gp-filter-toggle span,.gp-filter-toggle{font-size:11.5px;padding:9px 11px}
  .gp-chip{padding:8px 14px;font-size:12px}
  .gp-filter-panel{grid-template-columns:1fr;padding:12px}
  .gp-suggest{position:fixed;top:auto;right:8px;left:8px;max-height:62vh;box-shadow:0 -10px 60px rgba(15,23,42,.25)}
  .gp-suggest-item{padding:11px 10px}
  .gp-suggest-item img{width:56px;height:56px}
}

/* v25 — one search is enough: on /shop/ the hero search is the single
   search surface; header search boxes are hidden to avoid duplication */
html[data-gp-page="shop"] header form{display:none!important}

/* v26 — password visibility toggle (eye) */
.gp-eye-wrap{position:relative;display:block;width:100%}
.gp-eye-btn{position:absolute;left:8px;top:50%;transform:translateY(-50%);width:32px;height:32px;border:0;background:transparent;color:#8b95a5;cursor:pointer;padding:0;display:inline-flex;align-items:center;justify-content:center;border-radius:8px;z-index:5;transition:color .15s,background .15s}
.gp-eye-btn:hover,.gp-eye-btn:focus-visible{color:#d76500;background:rgba(247,127,0,.09);outline:none}
.gp-eye-btn svg{width:20px;height:20px}
.gp-eye-btn .eye-off{display:none}
.gp-eye-btn.is-showing .eye-on{display:none}
.gp-eye-btn.is-showing .eye-off{display:block}

/* v27 — forgot password (SMS OTP) */
.gp-forgot-link{display:block;margin:12px auto 0;background:none;border:0;color:#d76500;font:inherit;font-size:12px;font-weight:700;cursor:pointer;text-decoration:none}
.gp-forgot-link:hover{text-decoration:underline}
.gp-forgot-meta{min-height:20px;margin:10px 0 0;font-size:12px;color:#697386;line-height:1.9}
.gp-forgot-meta.ok{color:#14864c;font-weight:700}
.gp-forgot-meta.err{color:#c63b3b}
.gp-forgot-meta a{color:#d76500;font-weight:800}

/* v28 — smooth page transitions: dim + top progress bar on navigation */
body{transition:opacity .18s ease}
html.gp-leaving body{opacity:.55}
html.gp-leaving{cursor:progress}
html.gp-leaving::after{content:'';position:fixed;top:0;right:0;left:0;height:3px;z-index:99999;background:linear-gradient(90deg,#ffb066,#f77f00);transform-origin:right;animation:gpNavBar 6s cubic-bezier(.2,.6,.4,1) forwards}
@keyframes gpNavBar{from{transform:scaleX(0)}to{transform:scaleX(1)}}
