/* ============================================
   Hearten Theme — Design System
   Brand: Hearten | Market: Germany
   Style: Editorial Minimal (Miele-inspired)
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Inter:wght@400;500;600&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --color-bg: #FFFFFF;
  --color-ink: #0A0A0A;
  --color-accent: #E0603F;
  --color-accent-hover: #C94F30;
  --color-muted: #737373;
  --color-surface: #FAFAFA;
  --color-border: #E5E5E5;
  --color-dark-bg: #0A0A0A;
  --color-dark-border: #333333;
  --color-on-dark: #FFFFFF;
  --color-on-dark-muted: #A3A3A3;

  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 80px;
  --section-px: 48px;
  --container-max: 1344px;

  /* Border Radius */
  --radius-card: 12px;
  --radius-image: 16px;
  --radius-button: 999px;

  /* Shadows */
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-base: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-ink);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section-padding {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-muted); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-ink);
}

h1 { font-size: clamp(36px, 4vw, 56px); }
h2 { font-size: clamp(28px, 3vw, 40px); }
h3 { font-size: clamp(20px, 2vw, 26px); }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-block;
  margin-bottom: 16px;
}

p {
  color: var(--color-muted);
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(224, 96, 63, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-ink);
  color: var(--color-ink);
  transform: translateY(-1px);
}

.btn-white {
  background-color: #fff;
  color: var(--color-ink);
}

.btn-white:hover {
  background-color: var(--color-surface);
  color: var(--color-ink);
  transform: translateY(-1px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  height: 72px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  height: 36px;
  color: #FFFFFF;
  transition: opacity var(--transition-base);
}

.header-logo:hover {
  opacity: 0.75;
}

.header-logo svg,
.header-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: color var(--transition-base);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: color var(--transition-base);
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}

.header-icon:hover {
  color: var(--color-accent);
}

.header-icon svg {
  width: 100%;
  height: 100%;
}

/* Header search overlay */
.header-search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1001;
}

.header-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-search-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-search-form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px 4px 4px 16px;
}

.header-search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 12px 0;
  outline: none;
  min-width: 0;
}

.header-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.header-search-submit,
.header-search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.header-search-submit:hover,
.header-search-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-accent);
}

.header-search-submit svg,
.header-search-close svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .header-search-overlay {
    padding: 16px 0;
  }
  .header-search-inner {
    gap: 8px;
  }
  .header-search-form {
    padding-left: 12px;
  }
  .header-search-submit,
  .header-search-close {
    width: 40px;
    height: 40px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* --- Category Navigation Row --- */
.header {
  height: auto;
}

.header .header-inner {
  height: 72px;
}

.header-catnav {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.header-catnav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 46px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.header-catnav-inner::-webkit-scrollbar {
  display: none;
}

.header-catnav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  position: relative;
  transition: color var(--transition-base);
}

.header-catnav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.header-catnav-link:hover {
  color: var(--color-accent);
}

.header-catnav-link:hover::after {
  width: 100%;
}

@media (max-width: 749px) {
  .header-catnav-inner {
    justify-content: flex-start;
    gap: 24px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-ink);
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-muted);
}

.hero-trust-divider {
  width: 4px;
  height: 4px;
  background: var(--color-border);
  border-radius: 50%;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: linear-gradient(145deg, #f8f8f8 0%, #eee 100%);
}

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

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(224, 96, 63, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background-color: var(--color-surface);
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-number {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--color-ink);
}

.trust-label {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 500;
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.featured-products {
  padding: var(--section-py) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--color-muted);
  max-width: 520px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.product-card-image {
  display: block;
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #f9f9f9 0%, #f0f0f0 100%);
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-card-image img {
  transform: scale(1.03);
}

.product-card-body {
  padding: 24px;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-ink);
}

.product-card-tagline {
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-ink);
}

.product-tax-note {
  font-size: 12px;
  color: var(--color-muted);
}

.product-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-base);
}

.product-link:hover {
  gap: 10px;
}

.product-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
}

.product-link:hover svg {
  transform: translateX(3px);
}

/* ============================================
   FEATURE GRID (Image-Top Card Style)
   ============================================ */
.feature-grid {
  padding: var(--section-py) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 0;
  text-align: center;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.feature-image {
  width: 100%;
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 0;
}

.feature-image img {
  width: 100%;
  height: 100%;
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

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

.feature-image--placeholder {
  color: var(--color-muted);
  opacity: 0.3;
}

.feature-image--placeholder svg {
  width: 48px;
  height: 48px;
}

.feature-card-body {
  padding: 16px 18px 20px;
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-ink);
}

.feature-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
}


/* ============================================
   BRAND STORY (Dark Section)
   ============================================ */
.brand-story {
  background-color: var(--color-dark-bg);
  color: var(--color-on-dark);
  padding: 100px 0;
  text-align: center;
}

.brand-story .eyebrow {
  color: var(--color-accent);
}

.brand-story-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-on-dark);
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.brand-story-text {
  font-size: 18px;
  color: var(--color-on-dark-muted);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 40px;
}

.brand-points {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-point {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-on-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-point::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background-color: var(--color-surface);
  padding: var(--section-py) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 16px;
  color: var(--color-ink);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #f08a5f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.testimonial-info-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
}

.testimonial-info-city {
  font-size: 13px;
  color: var(--color-muted);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: var(--section-py) 0;
  text-align: center;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-input {
  flex: 1;
  height: 52px;
  padding: 0 20px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-ink);
  outline: none;
  transition: border-color var(--transition-base);
  background: #fff;
}

.newsletter-input::placeholder {
  color: var(--color-muted);
}

.newsletter-input:focus {
  border-color: var(--color-accent);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background-color: var(--color-dark-bg);
  padding: 64px 0;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.final-cta-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--color-on-dark);
}

/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   FOOTER — Light background, 4-column
   ============================================ */
.footer {
  background-color: #fafafa;
  color: var(--color-ink);
  padding-top: 64px;
  border-top: 1px solid var(--color-border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-col {
  min-width: 0;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-ink);
  margin-bottom: 20px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.footer-contact-line {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.footer-contact-line a {
  color: var(--color-ink);
  transition: color var(--transition-base);
}

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

.footer-contact-label {
  color: var(--color-ink);
  font-weight: 500;
  margin-right: 4px;
}

.footer-contact-address {
  white-space: pre-line;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.footer-social {
  width: 22px;
  height: 22px;
  color: var(--color-ink);
  transition: color var(--transition-base), transform var(--transition-base);
}

.footer-social:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  font-size: 14px;
  color: var(--color-muted);
  transition: color var(--transition-base);
}

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

/* Newsletter */
.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  font-size: 14px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.footer-newsletter-input::placeholder {
  color: var(--color-muted);
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(224, 96, 63, 0.12);
}

.footer-newsletter-btn {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--color-ink);
  border: none;
  border-radius: var(--radius-card);
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
}

.footer-newsletter-btn:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 13px;
  color: var(--color-muted);
  transition: color var(--transition-base);
}

.footer-bottom-link:hover {
  color: var(--color-accent);
}

.footer-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-payment {
  width: 42px;
  height: 28px;
  display: block;
}

.footer-payment svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Copyright */
.footer-copyright-row {
  border-top: 1px solid var(--color-border);
  padding: 20px 0 32px;
  text-align: center;
}

.footer-copyright {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199px) {
  :root {
    --section-px: 32px;
    --section-py: 64px;
  }

  .hero-inner {
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (max-width: 749px) {
  :root {
    --section-px: 20px;
    --section-py: 48px;
  }

  /* Header Mobile */
  .header-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    padding: 24px var(--section-px);
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .header-nav.active {
    display: flex;
  }

  .header-cta-desktop {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .header-icon {
    width: 20px;
    height: 20px;
  }

  .header-logo svg,
  .header-logo img {
    height: 28px;
  }

  .hamburger {
    display: flex;
    margin-left: 4px;
  }

  .hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-catnav-inner {
    justify-content: flex-start;
    gap: 20px;
    padding-left: var(--section-px);
    padding-right: var(--section-px);
  }

  /* Hero Mobile */
  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-image-wrapper {
    order: 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Trust Strip Mobile */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  /* Products Grid Mobile */
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Features Grid Mobile — Plan A: 2x2 compact grid */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .feature-card {
    padding: 0;
  }

  .feature-image {
    height: 120px;
  }

  .feature-image img {
    max-height: 80px;
  }

  .feature-card-body {
    padding: 12px 14px 16px;
  }

  .feature-title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .feature-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Testimonials Mobile */
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Brand Story Mobile */
  .brand-story {
    padding: 64px 0;
  }

  .brand-points {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Newsletter Mobile */
  .newsletter-form {
    flex-direction: column;
  }

  /* Final CTA Mobile */
  .final-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .final-cta-text {
    font-size: 22px;
  }

  /* Footer Mobile */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col-title {
    margin-bottom: 14px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-socials {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
  }

  .footer-newsletter-form {
    flex-direction: column;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-newsletter-btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .footer-payment-icons {
    justify-content: center;
  }

  .footer-copyright-row {
    text-align: center;
  }
}

/* ============================================
   ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Scroll-triggered animations via Intersection Observer (JS-driven) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ABOUT / GENERIC PAGE BUILDER
   ============================================ */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.about-page { display: block; }

/* Hero banner */
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 80px 0;
  background-color: var(--color-ink);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.about-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.about-title {
  font-family: var(--font-display), sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
}
.about-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Generic section spacing */
.about-section { padding: var(--section-py) 0; }

.about-text {
  max-width: 820px;
  margin: 0 auto;
}
.about-h2 {
  font-family: var(--font-display), sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-ink);
  margin-bottom: 22px;
  text-align: left;
}
.about-h2--center { text-align: center; }
.about-richtext {
  font-size: 17px;
  line-height: 1.8;
  color: #3a3a3a;
}
.about-richtext p { margin-bottom: 16px; }
.about-richtext--center { text-align: center; max-width: 640px; margin: 0 auto; }

/* Value cards */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.about-value-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-smooth);
}
.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.about-value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  color: var(--color-accent);
}
.about-value-icon svg { width: 100%; height: 100%; }
.about-value-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 10px;
}
.about-value-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-muted);
}

/* Image + text */
.about-imagetext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-imagetext-grid.is-reverse { direction: rtl; }
.about-imagetext-grid.is-reverse > * { direction: ltr; }
.about-imagetext-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  display: block;
}
.about-imagetext-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #f3f3f3, #e8e8e8);
  border-radius: var(--radius-card);
}
.about-imagetext-content .btn { margin-top: 24px; }

/* Stats */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.about-stat { text-align: center; }
.about-stat-value {
  font-family: var(--font-display), sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* CTA */
.about-cta-inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 56px 40px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.about-cta-inner .btn { margin-top: 24px; }

/* --- Video Gallery --- */
.about-videos-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--color-muted);
  max-width: 560px;
  margin: -8px auto 48px;
  line-height: 1.5;
}
.about-videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-video-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all var(--transition-smooth);
}
.about-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.about-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  overflow: hidden;
}
.about-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.about-video-card:hover .about-video-thumb img {
  transform: scale(1.05);
}
.about-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a2a2a 0%, #444 100%);
}
.about-video-placeholder svg {
  width: 56px;
  height: 56px;
  color: rgba(255,255,255,0.35);
  transition: all var(--transition-base);
}
.about-video-card:hover .about-video-placeholder svg {
  color: rgba(255,255,255,0.6);
  transform: scale(1.1);
}
.about-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.about-video-play svg {
  width: 48px;
  height: 48px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform var(--transition-base);
}
.about-video-card:hover .about-video-play {
  opacity: 1;
}
.about-video-card:hover .about-video-play svg {
  transform: scale(1.1);
}
.about-video-platform {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.about-video-platform--tiktok { background: rgba(0,0,0,0.75); }
.about-video-platform--youtube { background: rgba(255,0,0,0.8); }
.about-video-platform--amazon { background: rgba(255,153,0,0.85); }
.about-video-platform--instagram { background: rgba(225,48,108,0.8); }
.about-video-body {
  padding: 20px;
}
.about-video-title {
  font-family: var(--font-display), sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 6px;
}
.about-video-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.about-video-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: gap var(--transition-base);
}
.about-video-link:hover { gap: 9px; }
.about-video-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
}
.about-video-link:hover svg { transform: translate(3px, -3px); }

@media (max-width: 749px) {
  .about-title { font-size: 32px; }
  .about-subtitle { font-size: 16px; }
  .about-h2 { font-size: 26px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-imagetext-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-imagetext-grid.is-reverse { direction: ltr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .about-stat-value { font-size: 34px; }
  .about-cta-inner { padding: 40px 24px; }
  .about-videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
  .about-videos-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */

/* --- Banner --- */
.collection-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.collection-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.72) 100%);
  z-index: 0;
}
.collection-banner-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 64px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-base);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumb-current { color: #fff; font-weight: 500; }
.collection-banner-title {
  font-family: var(--font-display), sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.collection-banner-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0;
}

/* --- Toolbar --- */
.collection-main { padding-top: 40px; }
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
.collection-count {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
}
.collection-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.collection-sort label {
  font-size: 14px;
  color: var(--color-muted);
  white-space: nowrap;
}
.sort-select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpath d='M3 4.5L6 8L9 4.5'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  padding: 8px 36px 8px 14px;
  font-family: var(--font-body), sans-serif;
  font-size: 14px;
  color: var(--color-ink);
  cursor: pointer;
  transition: border-color var(--transition-base);
}
.sort-select:hover { border-color: var(--color-ink); }
.sort-select:focus { outline: none; border-color: var(--color-accent); }

/* --- Content Layout --- */
.collection-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}
.collection-content--no-sidebar {
  grid-template-columns: 1fr;
}

/* --- Sidebar Filters --- */
.collection-filters {
  position: sticky;
  top: 96px;
  align-self: start;
}
.filter-title {
  font-family: var(--font-display), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-ink);
}
.filter-group { margin-bottom: 28px; }
.filter-group-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-muted);
  margin-bottom: 12px;
}
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li { margin-bottom: 8px; }
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-ink);
  transition: color var(--transition-base);
}
.filter-checkbox:hover { color: var(--color-accent); }
.filter-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all var(--transition-base);
}
.filter-checkbox input[type="checkbox"]:checked {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.filter-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.price-range {
  display: flex;
  align-items: center;
  gap: 6px;
}
.price-input {
  width: 64px;
  padding: 6px 8px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  font-family: var(--font-body), sans-serif;
  font-size: 13px;
  text-align: center;
}
.price-input:focus { outline: none; border-color: var(--color-accent); }
.price-sep { color: var(--color-muted); }
.price-go {
  padding: 6px 12px;
  background: var(--color-ink);
  color: #fff;
  border: none;
  border-radius: var(--radius-button);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-base);
}
.price-go:hover { background: var(--color-accent); }

/* --- Product Grid --- */
.collection-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- Pagination --- */
.collection-pagination {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0 8px;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.collection-pagination a,
.collection-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  transition: all var(--transition-base);
}
.collection-pagination a:hover {
  border-color: var(--color-ink);
  background: var(--color-surface);
}
.collection-pagination .current {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}
.collection-pagination .gap { border: none; }

/* --- Empty State --- */
.collection-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
}
.collection-empty svg {
  width: 64px;
  height: 64px;
  color: var(--color-border);
  margin-bottom: 24px;
}
.collection-empty h3 {
  font-family: var(--font-display), sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 8px;
}
.collection-empty p {
  font-size: 16px;
  color: var(--color-muted);
  margin-bottom: 24px;
}

/* --- Trust Strip --- */
.collection-trust {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-accent);
}
.trust-icon svg {
  width: 20px;
  height: 20px;
}
.trust-text h5 {
  font-family: var(--font-display), sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 2px;
}
.trust-text p {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.4;
}

/* --- Collection Responsive --- */
@media (max-width: 989px) {
  .collection-content { grid-template-columns: 1fr; }
  .collection-filters { position: static; display: none; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 749px) {
  .collection-banner { min-height: 200px; }
  .collection-banner-overlay { padding: 40px 0; }
  .collection-banner-title { font-size: 28px; }
  .collection-banner-desc { font-size: 15px; }
  .collection-toolbar { flex-direction: column; gap: 12px; align-items: flex-start; }
  .collection-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
}

/* ===== PDP overrides (main-product section) — added for reliable rendering ===== */
.breadcrumb { padding: 16px 0; font-size: 13px; color: var(--color-muted); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .separator { margin: 0 8px; color: var(--color-border); }
.product-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.product-gallery { min-width: 0; }
.product-gallery img { border-radius: var(--radius-image); max-width: 100%; }
.product-gallery-main { cursor: zoom-in !important; aspect-ratio: 1 / 1 !important; display: flex !important; align-items: center !important; justify-content: center !important; background: #FAFAFA !important; border-radius: 8px !important; }
.product-gallery-main img { width: 100% !important; height: 100% !important; object-fit: contain !important; max-width: 100% !important; }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 16px; }
.product-gallery-thumbs img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; background: #f5f5f5; border-radius: 8px; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; }
.product-gallery-thumbs img.active, .product-gallery-thumbs img:hover { opacity: 1; outline: 2px solid var(--color-accent); outline-offset: 2px; }
.product-title { font-size: clamp(28px, 3vw, 36px); margin-bottom: 8px; }
.product-info-tagline { font-size: 17px; margin-bottom: 24px; }
.product-price-block { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.price-compare { font-size: 18px; color: var(--color-muted); }
.product-excerpt { margin-bottom: 32px; line-height: 1.7; }
.product-bullets { list-style: none; margin: 0 0 28px; padding: 16px 20px; background-color: #ffffff; border-radius: 8px; }
.product-bullets li { position: relative; padding-left: 26px; margin-bottom: 10px; line-height: 1.5; font-size: 15px; color: var(--color-ink); }
.product-bullets li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--color-accent); font-weight: 700; }
.product-bullets li strong { display: block; font-weight: 700; margin-bottom: 2px; }
.product-quantity { margin-bottom: 20px; }
.product-quantity label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.product-quantity input { width: 80px; height: 44px; text-align: center; border: 1.5px solid var(--color-border); border-radius: var(--radius-button); font-size: 16px; }
.buy-actions { display: flex; gap: 12px; margin-top: 4px; }
.buy-actions .btn { flex: 1; height: 52px; font-size: 16px; }
.product-trust-micro { margin-top: 20px; font-size: 13px; color: var(--color-muted); display: flex; gap: 8px; }
.product-description-full { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--color-border); }
.product-description-full h3 { margin-bottom: 16px; }
@media (max-width: 749px) {
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .buy-actions { flex-direction: column; }
  .product-gallery-thumbs { grid-template-columns: repeat(5, 1fr); gap: 8px; }
}
.pdp-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.88); display: none; align-items: center; justify-content: center; z-index: 99999; cursor: zoom-out; }
.pdp-lightbox.open { display: flex; }
.pdp-lightbox img { max-width: 90vw; max-height: 88vh; width: auto; height: auto; object-fit: contain; border-radius: 8px; box-shadow: 0 8px 40px rgba(0,0,0,0.5); background: #fff; }
