:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --card-bg: #ffffff;
  --accent: #0f766e;
  --accent-soft: rgba(15, 118, 110, 0.08);
  --accent-strong: #0d9488;
  --accent-glow: rgba(15, 118, 110, 0.65);
  --text-main: #111827;
  --text-subtle: #6b7280;
  --border-subtle: #e5e7eb;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.09);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(1200px 800px at 0% 0%, rgba(59, 130, 246, 0.08), transparent 70%),
    radial-gradient(1200px 800px at 100% 0%, rgba(16, 185, 129, 0.08), transparent 70%),
    var(--bg);
}

.container {
  width: min(1120px, 94vw);
  margin: 0 auto;
}

/* ── Sticky header ─────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(245, 245, 247, 0.96), rgba(245, 245, 247, 0.88));
  border-bottom: 1px solid rgba(209, 213, 219, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

/* ── Brand ─────────────────────────────────────────────────────────────────── */

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: 1.2rem;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .brand-logo {
    height: 1rem;
  }
}

.brand-mark {
  width: 1rem;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #a5f3fc, #0f766e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ecfeff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 650;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 13px;
}

.brand-tagline {
  font-size: 11px;
  color: var(--text-subtle);
}

/* ── Category nav pills ────────────────────────────────────────────────────── */

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-pill {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 12px;
  background: transparent;
  color: var(--text-subtle);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.08s ease;
}

.nav-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
}

.nav-pill.is-active {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: rgba(34, 197, 94, 0.32);
}

.nav-pill.is-active::before {
  background: #22c55e;
}

.nav-pill:hover {
  background: rgba(249, 250, 251, 0.9);
  transform: translateY(-0.5px);
}

/* ── Hero section ──────────────────────────────────────────────────────────── */

main.container {
  padding: 26px 0 40px;
}

.hero {
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(26px, 3.1vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.hero p {
  margin: 0;
  max-width: 560px;
  color: var(--text-subtle);
  font-size: 14px;
}

/* ── Product grid ──────────────────────────────────────────────────────────── */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.13s ease, box-shadow 0.13s ease;
}

.product-card-link:hover {
  transform: translateY(-4px);
}

.product-card-link:hover .product-card {
  box-shadow: var(--shadow-soft);
  border-color: rgba(148, 163, 184, 0.7);
  background: radial-gradient(320px 260px at 0 0, rgba(56, 189, 248, 0.12), transparent 55%), var(--card-bg);
}

.product-card-link:hover .product-thumb {
  transform: scale(1.04);
}

.product-card {
  position: relative;
  background: radial-gradient(280px 220px at 0 0, rgba(59, 130, 246, 0.05), transparent 55%), var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 12px 12px 14px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  transition: box-shadow 0.13s ease, border-color 0.12s ease, background 0.16s ease;
}

.product-thumb-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0f172a;
}

.product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.18s ease-out;
}

.badge {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  background: rgba(15, 118, 110, 0.94);
  color: #ecfeff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

/* ── Card body ─────────────────────────────────────────────────────────────── */

.product-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.price {
  font-weight: 600;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--text-subtle);
}

.rating-stars {
  color: #fbbf24;
  font-size: 11px;
}

.rating-score {
  font-weight: 500;
}

.rating-count {
  opacity: 0.8;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 6px;
}

.tag-pill {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(243, 244, 246, 0.9);
  color: var(--text-subtle);
}

.cta-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
}

.cta-button {
  border-radius: 999px;
  padding: 7px 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  background: var(--accent);
  color: #ecfeff;
  box-shadow: 0 12px 28px var(--accent-glow);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}

.cta-button svg {
  width: 14px;
  height: 14px;
}

.cta-button:hover {
  background: var(--accent-strong);
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.75);
  transform: translateY(-0.5px);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px var(--accent-glow);
}

/* ── Skeleton loading ──────────────────────────────────────────────────────── */

.skeleton-card {
  border-radius: var(--radius-lg);
  padding: 12px;
  background: linear-gradient(120deg, #e5e7eb, #f3f4f6, #e5e7eb);
  background-size: 200% 100%;
  animation: skeleton 1.3s ease-in-out infinite;
  min-height: 220px;
}

@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Product detail page ───────────────────────────────────────────────────── */

.product-detail {
  padding: 32px 0 60px;
}

.product-detail .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-subtle);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.15s ease;
}

.product-detail .back-link:hover {
  color: var(--accent);
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.product-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0f172a;
  aspect-ratio: 1 / 1;
}

.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-hero-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-hero-info .badge {
  position: static;
  align-self: flex-start;
}

.product-hero-info h1 {
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.product-hero-info .product-meta {
  font-size: 14px;
  justify-content: flex-start;
  gap: 12px;
}

.product-hero-info .price {
  font-size: 22px;
  color: var(--accent);
}

.product-hero-info .rating-stars {
  font-size: 14px;
}

.product-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-subtle);
  margin: 0;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-main);
}

.product-features li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.check-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  background: var(--accent);
  color: #ecfeff;
  box-shadow: 0 14px 32px var(--accent-glow);
  text-decoration: none;
  transition: background 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
  margin-top: 8px;
  align-self: flex-start;
}

.check-price-btn svg {
  width: 18px;
  height: 18px;
}

.check-price-btn:hover {
  background: var(--accent-strong);
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.75);
  transform: translateY(-1px);
}

.check-price-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px var(--accent-glow);
}

/* ── Footer ────────────────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid rgba(209, 213, 219, 0.8);
  padding: 24px 0 28px;
  background: rgba(248, 250, 252, 0.96);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-disclosures {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.disclosure {
  margin: 0;
  font-size: 11px;
  color: var(--text-subtle);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  font-size: 12px;
}

.footer-links a {
  color: var(--text-subtle);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copyright {
  margin: 0;
  font-size: 11px;
  color: var(--text-subtle);
  opacity: 0.8;
}

/* ── Section title ─────────────────────────────────────────────────────────── */

.section-title {
  font-size: clamp(20px, 2.5vw, 26px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.all-products-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.filter-nav {
  margin-bottom: 4px;
}

/* ── Gallery cards (homepage) ─────────────────────────────────────────────── */

.galleries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.skeleton-gallery {
  min-height: 260px;
}

.gallery-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  min-height: 220px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.gallery-card--featured {
  grid-column: 1 / -1;
  min-height: 320px;
}

.gallery-card-image {
  position: absolute;
  inset: 0;
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-card-image img {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.3) 50%, rgba(15, 23, 42, 0.15) 100%);
}

.gallery-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 24px;
  min-height: inherit;
}

.gallery-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  margin-bottom: 10px;
  align-self: flex-start;
}

.gallery-card-title {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.gallery-card--featured .gallery-card-title {
  font-size: clamp(22px, 3vw, 32px);
}

.gallery-card-subtitle {
  font-size: 14px;
  margin: 0 0 10px;
  opacity: 0.8;
  line-height: 1.4;
}

.gallery-card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  opacity: 0.7;
}

/* ── Gallery inner page ───────────────────────────────────────────────────── */

.gallery-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 40px;
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.5) 60%, rgba(15, 23, 42, 0.25) 100%);
}

.gallery-hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  color: #fff;
}

.gallery-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.15s ease;
}

.gallery-back-link:hover {
  color: #fff;
}

.gallery-hero-content h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.gallery-hero-subtitle {
  font-size: 16px;
  opacity: 0.8;
  margin: 0 0 12px;
  max-width: 600px;
}

.gallery-hero-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  opacity: 0.6;
}

/* ── Gallery product cards ────────────────────────────────────────────────── */

.gallery-products {
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.gallery-product {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}

.gallery-product:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.gp-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-content {
  flex: 1;
  min-width: 0;
}

.gp-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.gp-title {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}

.gp-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.gp-title a:hover {
  color: var(--accent);
}

.gp-badge {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  background: var(--accent);
  color: #ecfeff;
  white-space: nowrap;
}

.gp-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}

.gp-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f8fafc;
  aspect-ratio: 1 / 1;
}

.gp-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.gp-image-wrap:hover img {
  transform: scale(1.05);
}

.gp-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gp-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-subtle);
  margin: 0;
}

.gp-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gp-features li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-main);
  padding-left: 20px;
  position: relative;
}

.gp-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

.gp-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gp-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.gp-rating {
  font-size: 13px;
  color: var(--text-subtle);
}

.gp-rating .rating-stars {
  color: #fbbf24;
}

.gp-reviews {
  opacity: 0.7;
}

.gp-amazon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: #ecfeff;
  box-shadow: 0 12px 28px var(--accent-glow);
  transition: background 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
  align-self: flex-start;
}

.gp-amazon-btn svg {
  width: 16px;
  height: 16px;
}

.gp-amazon-btn:hover {
  background: var(--accent-strong);
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.75);
  transform: translateY(-1px);
}

/* ── Legal pages ───────────────────────────────────────────────────────────── */

.legal-page {
  padding: 40px 0 60px;
  max-width: 720px;
  margin: 0 auto;
  width: 94vw;
}

.legal-page h1 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}

.legal-page h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 10px;
}

.legal-page p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-subtle);
  margin: 0 0 14px;
}

.legal-page ul {
  padding-left: 20px;
  margin: 0 0 14px;
}

.legal-page li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-subtle);
  margin-bottom: 6px;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-box {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 12px 0 18px;
}

.contact-box p {
  margin: 0 0 6px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

/* ── Forms ─────────────────────────────────────────────────────────────────── */

.legal-form {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 16px 0 32px;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-main);
  background: var(--bg);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
  opacity: 0.7;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
  box-shadow: 0 8px 20px var(--accent-glow);
}

.form-submit:hover {
  background: var(--accent-strong);
  box-shadow: 0 12px 28px var(--accent-glow);
  transform: translateY(-0.5px);
}

.form-submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px var(--accent-glow);
}

.form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.turnstile-wrap {
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .legal-form {
    padding: 20px 16px;
  }

  .form-submit {
    width: 100%;
  }
}

/* ── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .product-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-hero-image {
    aspect-ratio: 4 / 3;
  }

  .check-price-btn {
    width: 100%;
    justify-content: center;
  }

  .gp-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gp-image-wrap {
    max-width: 260px;
  }

  .gallery-product {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .galleries-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card--featured {
    min-height: 240px;
  }

  .gallery-card {
    min-height: 180px;
  }

  .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-card {
    padding: 12px;
  }

  .gallery-product {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .gp-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .gp-amazon-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
