/* ============================================================
   BONECO Hrvatska — Glavni stylesheet
   Vizualni identitet: boneco.com
   ============================================================ */

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

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --color-primary:      #E20026;
  --color-primary-dark: #333333;
  --color-primary-light:#ff334d;
  --color-text:         #1a1a1a;
  --color-text-muted:   #666666;
  --color-text-light:   #999999;
  --color-bg:           #ffffff;
  --color-bg-light:     #f7f7f7;
  --color-bg-dark:      #1a1a1a;
  --color-border:       #e0e0e0;
  --color-border-light: #f0f0f0;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Roboto', sans-serif;

  --container-max: 1920px;
  --header-height: 76px;

  --spacing-xs:  0.5rem;
  --spacing-sm:  1rem;
  --spacing-md:  2rem;
  --spacing-lg:  4rem;
  --spacing-xl:  6rem;

  --radius-sm:   14px;
  --radius:      10px;
  --radius-lg:   0.8rem;

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.08);
  --shadow:      0 2px 12px rgba(0,0,0,0.10);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-hover:0 8px 32px rgba(0,0,0,0.16);

  --transition:  all 0.25s ease;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
}
h1 { font-size: clamp(2.75rem, 7.2vw, 4.5rem); line-height: 1; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

p { margin-bottom: var(--spacing-sm); }
p:last-child { margin-bottom: 0; }

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-lg) 0;
}

.section--light {
  background: var(--color-bg-light);
}

.section--dark {
  background: var(--color-bg-dark);
  color: #fff;
}

.section__header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-top: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 14px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  min-height: 44px;
  box-shadow: 0 2px 3px rgba(0,0,0,0.2);
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}
.btn--primary:hover {
  background: #333333;
  border-color: #333333;
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}
.btn--outline:hover {
  background: var(--color-text);
  color: #fff;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--color-text);
}

.btn--outline-red {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--outline-red:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--webshop {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
  font-size: 0.8rem;
  padding: 0.6rem 1.4rem;
}
.btn--webshop:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ============================================================
   Header & Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: var(--spacing-md);
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-logo__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.site-logo__text span {
  color: var(--color-primary);
}

/* Main Nav */
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav__item {
  position: relative;
}

.main-nav__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav__link:hover,
.main-nav__link.active {
  color: var(--color-primary) !important;
}

.main-nav__link .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.main-nav__item:hover .chevron {
  transform: rotate(180deg);
}

/* Mega-menu dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 12px 0 0 0; /* gornji padding = vizualni razmak, ali hover ne prekida */
  min-width: 640px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(-8px);
}

.mega-menu__inner {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-md);
}

.main-nav__item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
}

.mega-menu__item a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mega-menu__item a:hover {
  background: var(--color-bg-light);
  color: var(--color-primary);
}

.mega-menu__item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-menu__item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.mega-menu__item-text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mega-menu__all {
  border-top: 1px solid var(--color-border-light);
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
}

.mega-menu__all a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem;
}

.mega-menu__all a:hover {
  gap: 0.75rem;
}

/* Header actions */
.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  overflow-y: auto;
  z-index: 999;
  padding: var(--spacing-md);
  flex-direction: column;
  gap: var(--spacing-sm);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__link {
  display: block;
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text);
}

.mobile-nav__link:hover { color: var(--color-primary); }

.mobile-nav__submenu {
  padding-left: var(--spacing-md);
  padding-top: var(--spacing-xs);
}

.mobile-nav__submenu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
}

.mobile-nav__submenu a:hover { color: var(--color-primary); }

/* ============================================================
   Announcement Bar
   ============================================================ */
.announcement-bar {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 0.6rem var(--spacing-md);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.announcement-bar a {
  color: #fff;
  text-decoration: underline;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-light);
}

.hero--full {
  min-height: 680px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: var(--spacing-xl) 0;
}

.hero__content--light .hero__eyebrow,
.hero__content--light .hero__title,
.hero__content--light .hero__desc {
  color: #fff;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: var(--spacing-sm);
}

.hero__desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

/* Split hero (product featured) */
.hero--split {
  background: var(--color-bg-light);
  min-height: 500px;
}

.hero--split .hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--spacing-xl);
  min-height: 500px;
}

.hero--split .hero__product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
}

.hero--split .hero__product-img img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
}

/* ============================================================
   Benefit Ticker
   ============================================================ */
.benefit-ticker {
  background: #fff;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
  padding: 0.85rem 0;
}

.benefit-ticker__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.benefit-ticker__track:hover {
  animation-play-state: paused;
}

.benefit-ticker__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
}

.benefit-ticker__item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Brand Heritage Hero — Full-width image with text overlay
   ============================================================ */
.brand-heritage-hero {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.brand-heritage-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.5);
}

.brand-heritage-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.brand-heritage-hero__content {
  max-width: 560px;
}

.brand-heritage-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.brand-heritage-hero__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .brand-heritage-hero {
    min-height: 400px;
  }
  .brand-heritage-hero__content {
    max-width: 100%;
  }
}

/* ============================================================
   Lifestyle Sections
   ============================================================ */
.lifestyle-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: var(--color-bg-light);
}

.lifestyle-section--right {
  background: #ebebeb;
}

.lifestyle-section__img {
  overflow: hidden;
}

.lifestyle-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.lifestyle-section:hover .lifestyle-section__img img {
  transform: scale(1.03);
}

.lifestyle-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
  gap: 1.25rem;
}

.lifestyle-section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
  margin: 0;
}

.lifestyle-section__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 420px;
  margin: 0;
}

@media (max-width: 768px) {
  .lifestyle-section,
  .lifestyle-section--right {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .lifestyle-section--right .lifestyle-section__content {
    order: -1;
  }

  .lifestyle-section__img {
    height: 280px;
  }

  .lifestyle-section__content {
    padding: 2.5rem var(--spacing-md);
  }
}

/* ============================================================
   Promo Banner
   ============================================================ */
.promo-banner {
  background: var(--color-primary);
  padding: 1.5rem var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  text-align: center;
}

.promo-banner__text {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.promo-banner__text strong {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   Category Grid
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: var(--transition);
}

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

.category-card__img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__img {
  transform: scale(1.05);
}

.category-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card__placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.15;
  color: var(--color-text);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
}

.category-card__body {
  position: relative;
  padding: 1.25rem;
  width: 100%;
}

.category-card__title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.category-card__count {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 400;
}

.category-card__arrow {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.category-card:hover .category-card__arrow {
  background: var(--color-primary);
}

.category-card__arrow svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

/* Category placeholder backgrounds */
.cat-purifier  { background: linear-gradient(135deg, #c8e6f5 0%, #a0d4f0 100%); }
.cat-fan       { background: linear-gradient(135deg, #e8f5e9 0%, #a5d6a7 100%); }
.cat-hybrid    { background: linear-gradient(135deg, #f3e5f5 0%, #ce93d8 100%); }
.cat-humidifier{ background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 100%); }
.cat-sensor    { background: linear-gradient(135deg, #fff8e1 0%, #ffcc02 100%); }
.cat-accessory { background: linear-gradient(135deg, #fce4ec 0%, #f48fb1 100%); }

/* ============================================================
   Product Grid & Cards
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-card__img-wrap {
  aspect-ratio: 4/3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--color-border-light);
}

.product-card__img-wrap img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.06);
}

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0,0,0,0.1);
  background: var(--color-bg-light);
  min-height: 200px;
}

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
}

.product-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.6);
  font-weight: 300;
  line-height: 1.5;
  flex: 1;
  margin-bottom: var(--spacing-sm);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  margin-top: auto;
}

.product-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  transition: var(--transition);
}

.product-card__action:hover {
  gap: 0.65rem;
}

.product-card__action svg {
  width: 14px;
  height: 14px;
}

/* SMART badge */
.badge-smart {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

/* ============================================================
   Features / Benefits
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-md);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-md);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-sm);
  background: #fff5f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon svg {
  width: 30px;
  height: 30px;
  color: var(--color-primary);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0;
}

/* ============================================================
   SMART Section
   ============================================================ */
.smart-section {
  background: var(--color-bg-dark);
  color: #fff;
  padding: var(--spacing-xl) 0;
}

.smart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--spacing-xl);
}

.smart-grid__content .section__subtitle {
  color: rgba(255,255,255,0.5);
}

.smart-grid__content h2 {
  color: #fff;
}

.smart-grid__content p {
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}

.smart-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: var(--spacing-md) 0;
}

.smart-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.smart-feature__icon {
  width: 44px;
  height: 44px;
  background: rgba(226,0,26,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.smart-feature__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.smart-feature__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
}

.smart-feature__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin: 0;
}

.smart-grid__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-grid__visual img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(226,0,26,0.25));
}

/* ============================================================
   News / Blog
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border-light);
  transition: var(--transition);
}

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

.news-card__img {
  aspect-ratio: 16/9;
  background: var(--color-bg-light);
  overflow: hidden;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__img img {
  transform: scale(1.05);
}

.news-card__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.news-card__body {
  padding: 1.5rem;
}

.news-card__meta {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-card__tag {
  background: #fff5f6;
  color: var(--color-primary);
  padding: 1px 12px 1px 8px;
  border-radius: 40px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.news-card__excerpt {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-card__link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.news-card__link:hover { gap: 0.65rem; }

/* ============================================================
   Article (single news page)
   ============================================================ */
.article-hero-img {
  width: 100%;
  max-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-light);
}
.article-hero-img img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text);
}
.article-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}
.article-body h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin: 2rem 0 0.85rem;
  line-height: 1.3;
  color: var(--color-text);
}
.article-body p {
  margin-bottom: 1.1rem;
  font-weight: 300;
}
.article-body ul,
.article-body ol {
  margin: 0 0 1.4rem 1.4rem;
  font-weight: 300;
}
.article-body ul li,
.article-body ol li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}
.article-body strong { font-weight: 600; color: var(--color-text); }
.article-callout {
  background: var(--color-bg-light);
  border-left: 4px solid var(--color-primary);
  padding: 1.2rem 1.4rem;
  margin: 1.6rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.95rem;
}
.article-related-products,
.article-related-articles {
  max-width: 1100px;
  margin: 4rem auto 0;
}
.article-related-products h2,
.article-related-articles h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin-bottom: 1.5rem;
  text-align: center;
}
.article-related-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.article-related-product-card {
  display: block;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.article-related-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.article-related-product-card__img-wrap {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid var(--color-border-light);
}
.article-related-product-card__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.article-related-product-card__body {
  padding: 0.75rem 0.85rem 1rem;
}
.article-related-product-card__category {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
}
.article-related-product-card__name {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

/* ============================================================
   Page Header (interior pages)
   ============================================================ */
.page-header {
  background: var(--color-bg-light);
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.page-header__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.page-header__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--spacing-sm);
}

.page-header__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--color-primary); }

.breadcrumb__sep {
  color: var(--color-border);
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: #fff5f6;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.contact-info__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 400;
  margin: 0;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.form-label .required {
  color: var(--color-primary);
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: #fff;
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(226,0,26,0.1);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================================
   Product Detail Page
   ============================================================ */
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.product-detail__gallery {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xl);
  min-height: 400px;
}

.product-detail__gallery img {
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

.product-detail__specs {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--spacing-md);
}

.product-detail__spec-row {
  display: flex;
  border-bottom: 1px solid var(--color-border-light);
}

.product-detail__spec-row:last-child {
  border-bottom: none;
}

.product-detail__spec-label {
  width: 45%;
  padding: 0.75rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  background: var(--color-bg-light);
}

.product-detail__spec-value {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #f2f2f2;
  color: #333;
  padding: var(--spacing-xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.footer-brand__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: var(--spacing-sm);
}

.footer-brand__logo span { color: var(--color-primary); }

.footer-brand__desc {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  color: #555;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid #bbb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: #555;
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #222;
  margin-bottom: var(--spacing-sm);
}

.footer-col__list li {
  margin-bottom: 0.4rem;
}

.footer-col__list a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #555;
  transition: var(--transition);
}

.footer-col__list a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

/* Newsletter inside brand column */
.footer-newsletter--inline {
  margin-top: var(--spacing-md);
}

/* Tradition tagline */
.footer-tradition {
  margin-bottom: 1rem;
}

.footer-tradition__label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #222;
  margin-bottom: 0.4rem;
}

.footer-tradition__swiss {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #222;
}

.footer-tradition__flag {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 2px;
}

/* Newsletter form */
.footer-newsletter__desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.footer-newsletter__form {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 999px;
  overflow: hidden;
  max-width: 340px;
}

.footer-newsletter__input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: #222;
  font-family: inherit;
}

.footer-newsletter__input::placeholder {
  color: #999;
}

.footer-newsletter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  background: transparent;
  border: 0;
  color: #222;
  cursor: pointer;
  transition: color 0.15s ease;
}

.footer-newsletter__btn:hover {
  color: var(--color-primary);
}

.footer-newsletter__btn svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: 0.8rem;
  color: #666;
}

.footer-bottom__links {
  display: flex;
  gap: var(--spacing-md);
}

.footer-bottom__links a {
  font-size: 0.8rem;
  color: #666;
}

.footer-bottom__links a:hover {
  color: var(--color-primary);
}

/* Webshop CTA band (standalone above footer) */
.footer-webshop-band {
  background: var(--color-bg-light, #f5f5f5);
  padding: var(--spacing-md) 0;
}

.footer-webshop {
  background: var(--color-bg-dark, #111);
  border: 1px solid rgba(226,0,26,0.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.footer-webshop__text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.footer-webshop__text strong {
  color: #fff;
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.footer-webshop__line {
  display: block;
  line-height: 1.5;
}

.footer-webshop__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 640px) {
  .footer-webshop__actions {
    width: 100%;
  }
  .footer-webshop__actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* ============================================================
   Utility
   ============================================================ */
.text-center  { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-muted   { color: var(--color-text-muted); }
.text-white   { color: #fff; }
.font-heading { font-family: var(--font-heading); }
.fw-300 { font-weight: 300; }
.fw-600 { font-weight: 600; }
.mt-sm  { margin-top: var(--spacing-sm); }
.mt-md  { margin-top: var(--spacing-md); }
.mb-sm  { margin-bottom: var(--spacing-sm); }
.mb-md  { margin-bottom: var(--spacing-md); }
.mb-lg  { margin-bottom: var(--spacing-lg); }

.divider {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: var(--spacing-lg) 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: var(--color-bg-light);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--color-border);
}

/* ============================================================
   Page: Proizvodi filter
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.filter-chip {
  padding: 0.5rem 1.1rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-text-muted);
  background: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #fff5f6;
}

/* ============================================================
   Category Section Title (products.php headings)
   ============================================================ */
.category-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  margin-top: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border-light);
}

.category-section-title a {
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.category-section-title a:hover {
  color: var(--color-primary);
}

/* ============================================================
   News Featured Article
   ============================================================ */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: stretch;
}

.news-featured__img {
  min-height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #c8e6f5, #a0d4f0);
}

.news-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

.news-featured__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .news-featured {
    grid-template-columns: 1fr;
  }
  .news-featured__body {
    padding: 1.75rem;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-newsletter__form {
    max-width: 420px;
  }
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-nav { display: flex; }

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

  .smart-grid,
  .contact-grid,
  .product-detail__grid,
  .hero--split .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .smart-grid__visual { order: -1; }

  /* Category hero dark sections: stack on tablet */
  .category-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .category-hero-grid > div:last-child {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .container { padding: 0 1rem; }

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

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

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

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

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

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-banner {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

/* ============================================================
   Product Detail Page — boneco.com visual match
   ============================================================ */

/* --- Breadcrumb --- */
.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 1.25rem 0 0.5rem;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
}
.product-breadcrumb a {
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.product-breadcrumb a:hover { color: var(--color-primary); }
.product-breadcrumb span[aria-current="page"] { color: var(--color-text); }
.product-breadcrumb__sep {
  color: var(--color-border);
  user-select: none;
  padding: 0 0.1rem;
}

/* --- Product Hero --- */
.product-hero {
  background: #fff;
  padding: 0 0 var(--spacing-lg);
  border-bottom: 1px solid var(--color-border-light);
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 2rem;
}

/* Left col: image */
.product-hero__media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.product-hero__img-wrap {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 560px;
  padding: 3rem;
  overflow: hidden;
  cursor: zoom-in;
}

.product-hero__img {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.16));
  transition: transform 0.25s ease;
}
.product-hero__img-wrap:hover .product-hero__img {
  transform: scale(1.04);
}

/* ============================================================
   SMART page (smart.php)
   ============================================================ */
.smart-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin-bottom: 0.85rem;
}

/* Hero */
.smart-hero {
  background: linear-gradient(135deg, #0a1424 0%, #15233a 100%);
  padding: var(--spacing-xl) 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.smart-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(226,0,26,0.16), transparent 70%);
  pointer-events: none;
}
.smart-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}
.smart-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  margin-bottom: 1.1rem;
}
.smart-hero__title {
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.smart-hero__sub {
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 580px;
}
.smart-hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.smart-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
}
.smart-hero__media img {
  max-width: 100%;
  max-height: 480px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .smart-hero__grid { grid-template-columns: 1fr; }
  .smart-hero__media { order: -1; }
  .smart-hero__media img { max-height: 320px; }
}

/* Features grid — 3 columns × 2 rows on desktop, 2 columns on tablet, 1 on mobile */
.smart-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 920px) {
  .smart-features-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}
@media (max-width: 560px) {
  .smart-features-grid { grid-template-columns: 1fr; }
}
.smart-feature {
  text-align: center;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.smart-feature__icon {
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  background: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.4rem;
  padding: 18px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.smart-feature:hover .smart-feature__icon {
  background: rgba(226,0,26,0.06);
  transform: scale(1.06);
}
.smart-feature__icon img { width: 100%; height: 100%; object-fit: contain; }
.smart-feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  line-height: 1.3;
  min-height: 2.6em;
}
.smart-feature p {
  color: var(--color-text-muted);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  max-width: 320px;
}

/* Video frame */
.smart-video-section { padding: 0 0 var(--spacing-xl); }
.smart-video-frame {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  background: #000;
}
.smart-video-frame video,
.smart-x50-grid__media video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* SMART CONNECT */
.smart-connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}
.smart-connect-grid h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.25rem;
}
.smart-connect-grid p {
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.smart-connect-grid__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
@media (max-width: 768px) {
  .smart-connect-grid { grid-template-columns: 1fr; }
}

/* X50 section */
.smart-x50-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, #f5f5f5 0%, #eeeeee 100%);
}
.smart-x50-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}
.smart-x50-grid__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  background: #000;
}
.smart-x50-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .smart-x50-grid { grid-template-columns: 1fr; }
}

/* Chat bubbles */
.smart-chat {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.smart-chat__msg {
  display: flex;
  gap: 0.85rem;
  align-items: flex-end;
}
.smart-chat__msg--right {
  flex-direction: row-reverse;
}
.smart-chat__avatar {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.smart-chat__avatar--x50 { background: linear-gradient(135deg, #4a5568, #2d3748); }
.smart-chat__avatar--h700 { background: var(--color-primary); }
.smart-chat__bubble {
  background: #fff;
  border: 1px solid var(--color-border-light);
  padding: 1rem 1.25rem;
  border-radius: 18px;
  max-width: 480px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.smart-chat__msg--left .smart-chat__bubble { border-bottom-left-radius: 4px; }
.smart-chat__msg--right .smart-chat__bubble { border-bottom-right-radius: 4px; }
.smart-chat__bubble--primary {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.smart-chat__author {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  opacity: 0.7;
}
.smart-chat__bubble p:last-child { margin: 0; line-height: 1.6; }

/* Voice control */
.smart-voice-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--spacing-xl);
  align-items: center;
}
.smart-voice-grid h2 { margin-bottom: 1.25rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.smart-voice-grid p {
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.smart-voice-grid__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.smart-voice-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--color-border-light);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  background: #fff;
}
@media (max-width: 768px) {
  .smart-voice-grid { grid-template-columns: 1fr; }
}

/* Pairing steps */
.smart-pairing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.smart-pairing-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.smart-pairing-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.smart-pairing-step__num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(226,0,26,0.32);
}
.smart-pairing-step__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
  overflow: hidden;
}
.smart-pairing-step__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.smart-pairing-step__media--qr { background: #fff; }
.smart-pairing-step__media--icon { background: rgba(226,0,26,0.05); }
.smart-pairing-step h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.smart-pairing-step p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}
.smart-pairing-step a { color: var(--color-primary); font-weight: 500; }

/* ─── Fiksna BONECO oznaka uz desni rub (originalna boneco.com sličica, vidljiva tijekom skrolanja) ─── */
.boneco-vertical-tag {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 90;
  display: block;
  width: 44px;
  height: 134px;
  background: url('../images/boneco-flag.webp') no-repeat center / contain;
  text-decoration: none;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.18));
  transition: transform 0.2s ease, filter 0.2s ease;
  user-select: none;
}
.boneco-vertical-tag span {
  /* Skriveni naziv za pristupačnost (slika sadrži stvarni logo) */
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.boneco-vertical-tag:hover {
  transform: translateY(-50%) translateX(-3px);
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.26));
}
@media (max-width: 768px) {
  .boneco-vertical-tag { width: 36px; height: 110px; }
}

/* ─── Image Lightbox — fullscreen vertical scroll gallery (boneco.com style) ─── */
.image-lightbox {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 1000;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  animation: lightbox-fade-in 0.18s ease-out;
}
.image-lightbox.is-open {
  display: block;
}
@keyframes lightbox-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.image-lightbox__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 4.5rem calc(140px + 2rem) 3rem 2rem;
  min-height: 100vh;
}
.image-lightbox__slide {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-lightbox__img {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  display: block;
}

/* Thumbnails sidebar (right side, fixed) */
.image-lightbox__thumbs {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px;
  padding: 4.5rem 0.75rem 2rem;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 5;
  background: rgba(255, 255, 255, 0.92);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  scrollbar-width: thin;
}
.image-lightbox__thumb {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.image-lightbox__thumb img {
  max-width: 88%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.image-lightbox__thumb:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
.image-lightbox__thumb.is-active {
  border-color: var(--color-primary, #e2001a);
  background: #fff;
}

.image-lightbox__close {
  position: fixed;
  top: 1.25rem;
  right: calc(120px + 1.25rem);
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #111;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 10;
}
.image-lightbox__close:hover {
  background: #f5f5f5;
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}
.image-lightbox__counter {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0.6);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 768px) {
  .image-lightbox__stack { padding: 3.5rem 0.75rem 7rem; gap: 1rem; }
  .image-lightbox__close { top: 0.75rem; right: 0.75rem; width: 40px; height: 40px; }
  .image-lightbox__counter { top: 1rem; font-size: 0.75rem; }
  /* On mobile, dock thumbs at the bottom as a horizontal strip */
  .image-lightbox__thumbs {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 88px;
    padding: 0.5rem 0.75rem;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.5rem;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  .image-lightbox__thumb { width: 64px; height: 64px; aspect-ratio: 1 / 1; }
}

.product-hero__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 300px;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
}

/* Right col: info */
.product-hero__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-hero__badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-hero__category-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

.product-hero__smart-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

.product-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  color: #333;
  margin-bottom: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.product-hero__tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.product-hero__desc {
  font-size: 0.975rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* Quick spec pills in hero */
.product-hero__spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product-hero__spec-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  min-width: 110px;
}

.product-hero__spec-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.product-hero__spec-value {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.product-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Specifications Section --- */
.product-specs-section {
  background: var(--color-bg-light);
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.product-specs-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.product-specs__header {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.product-specs__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.product-specs__title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text);
  margin: 0;
}

.product-specs__table-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
}

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr {
  border-bottom: 1px solid var(--color-border-light);
}
.specs-table tr:last-child {
  border-bottom: none;
}
.specs-table tr:hover {
  background: var(--color-bg-light);
}
.specs-table td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  vertical-align: middle;
}
.specs-table td:first-child {
  color: var(--color-text-muted);
  width: 44%;
  font-weight: 500;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.specs-table td:last-child {
  font-weight: 500;
  color: var(--color-text);
}

/* --- Features / Highlights Section --- */
.product-features-section {
  background: #fff;
  padding: var(--spacing-lg) 0;
}

.product-features__header {
  text-align: center;
  margin-bottom: 3rem;
}

.product-features__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.product-features__title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: var(--transition);
}

.product-feature-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-feature-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-feature-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.product-feature-card__body {
  flex: 1;
}

.product-feature-card__title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.product-feature-card__desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* --- Accessories / Filters Section --- */
.product-accessories-section {
  background: var(--color-bg-light);
  padding: var(--spacing-md) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.product-accessories__card {
  background: var(--color-bg-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.product-accessories__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: rgba(226, 0, 38, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-accessories__icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.product-accessories__content {
  flex: 1;
  min-width: 240px;
}

.product-accessories__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.product-accessories__title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
}

.product-accessories__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

/* --- Related Products Section --- */
.product-related-section {
  padding: var(--spacing-lg) 0;
}

.product-related__header {
  text-align: center;
  margin-bottom: 3rem;
}

.product-related__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.product-related__title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

/* --- Product CTA Section --- */
.product-cta-section {
  background: var(--color-primary);
  padding: var(--spacing-lg) 0;
}

.product-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.product-cta__content {
  flex: 1;
}

.product-cta__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.product-cta__desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.product-cta__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* --- Product card link hover (used in related) --- */
.product-card--link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.product-card--link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* ============================================================
   Product Detail — Responsive
   ============================================================ */
@media (max-width: 900px) {
  .product-specs-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .product-specs__header {
    position: static;
  }
}

@media (max-width: 768px) {
  .product-hero {
    padding-bottom: var(--spacing-md);
  }
  .product-hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 1.25rem;
  }
  .product-hero__media {
    order: -1;
    width: 100%;
  }
  .product-hero__img-wrap {
    max-width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 360px;
    padding: 2rem;
  }
  .product-hero__img {
    max-height: 300px;
  }
  .product-hero__spec-pills {
    gap: 0.5rem;
  }
  .product-hero__spec-pill {
    min-width: 90px;
    padding: 0.5rem 0.75rem;
  }
  .product-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .product-features-grid {
    grid-template-columns: 1fr;
  }
  .product-accessories__card {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .product-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-cta__actions {
    width: 100%;
    flex-direction: column;
  }
  .product-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Technology Icons Strip
   ============================================================ */
.tech-icons-strip {
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 2rem 0;
}

/* Product Icon Grid — SVG file icons */
.product-icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  padding: 0.5rem 0;
  justify-content: flex-start;
}

.product-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  width: 80px;
}

.product-icon-item__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.product-icon-item__label {
  font-size: 0.7rem;
  line-height: 1.3;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
}

@media (max-width: 768px) {
  .product-icon-grid {
    gap: 1rem 1.25rem;
  }
  .product-icon-item {
    width: 68px;
  }
  .product-icon-item__img {
    width: 40px;
    height: 40px;
  }
  .product-icon-item__label {
    font-size: 0.65rem;
  }
}

/* ============================================================
   Product Lifestyle Section
   ============================================================ */
.product-lifestyle-section {
  padding: var(--spacing-lg) 0;
  background: #fff;
}

.product-lifestyle__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.product-lifestyle__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.product-lifestyle__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0;
}

.product-lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.product-lifestyle-grid--single {
  grid-template-columns: 1fr;
}

.product-lifestyle-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-light);
}

.product-lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-lifestyle-item:hover img {
  transform: scale(1.03);
}

.product-lifestyle-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-lifestyle-item:hover .product-lifestyle-item__caption {
  opacity: 1;
}

@media (max-width: 768px) {
  .product-lifestyle-grid {
    grid-template-columns: 1fr;
  }
  .product-lifestyle-item {
    aspect-ratio: 4 / 3;
  }
}

/* ============================================================
   Accordion (Tech Data / Downloads / Accessories)
   ============================================================ */
.product-accordion-section {
  padding: var(--spacing-md) 0 var(--spacing-lg);
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border-light);
}

.product-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.01em;
  text-align: left;
  border: none;
  transition: background 0.2s ease;
}

.accordion-trigger:hover {
  background: var(--color-bg-light);
}

.accordion-trigger[aria-expanded="true"] {
  background: var(--color-bg-light);
  color: var(--color-primary);
}

.accordion-trigger__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-trigger__icon {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.accordion-panel {
  display: none;
  padding: 0 1.75rem 1.5rem;
  background: #fff;
  animation: accordionOpen 0.25s ease;
}

.accordion-panel.is-open {
  display: block;
}

@keyframes accordionOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.accordion-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.accordion-specs-table tr {
  border-bottom: 1px solid var(--color-border-light);
}

.accordion-specs-table tr:last-child {
  border-bottom: none;
}

.accordion-specs-table td {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  vertical-align: top;
}

.accordion-specs-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 500;
  width: 40%;
  padding-right: 1rem;
}

.accordion-specs-table td:last-child {
  color: var(--color-text);
  font-weight: 400;
}

@media (max-width: 768px) {
  .accordion-trigger {
    padding: 1rem 1.25rem;
  }
  .accordion-panel {
    padding: 0 1.25rem 1.25rem;
  }
  .accordion-specs-table td:first-child {
    width: 45%;
  }
}

/* ============================================================
   Product Gallery Thumbnails
   ============================================================ */
.product-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.product-gallery-thumb {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--color-bg-light);
  padding: 4px;
  transition: border-color 0.2s;
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--color-primary);
}

/* ============================================================
   Product Video Section
   ============================================================ */
.product-video-section {
  padding: var(--spacing-lg) 0;
  background: var(--color-bg-dark);
}

.product-video__header {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}

.product-video__header h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.product-video__wrap {
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.product-video__wrap video {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

/* Container-width variant (matches specs section width, white bg) */
.product-video-section--full {
  background: #fff;
  padding: var(--spacing-md) 0 0;
}

.product-video-section--full .product-video__wrap {
  max-width: none;
  margin: 0;
  border-radius: 0;
}

.product-video-section--full .product-video__wrap video {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

/* ============================================================
   Product Feature Pills (horizontal icon-left + label-right)
   ============================================================ */
.product-feature-cards-section {
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 2rem 0;
}

.product-feature-cards-section--pills {
  padding: var(--spacing-lg) 0;
  background: #fff;
  border: none;
}

/* Pills grid: row 1 has 3 items (featured), rows 2+ have 5 items each */
.product-icon-grid--pills {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 0.875rem;
  padding: 0;
}

.product-icon-item--pill {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  width: auto;
  min-height: 78px;
  background: var(--color-bg-light, #f6f6f6);
  border: 1px solid var(--color-border-light, #e5e5e5);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-icon-item--pill:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* First 3 items: featured — span 5 columns (3 per row), larger */
.product-icon-grid--pills .product-icon-item--pill:nth-child(-n+3) {
  grid-column: span 5;
  min-height: 92px;
  padding: 1rem 1.25rem;
}

/* Remaining items: span 3 columns (5 per row) */
.product-icon-grid--pills .product-icon-item--pill:nth-child(n+4) {
  grid-column: span 3;
}

.product-icon-item--pill .product-icon-item__img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.product-icon-grid--pills .product-icon-item--pill:nth-child(-n+3) .product-icon-item__img {
  width: 52px;
  height: 52px;
}

.product-icon-item--pill .product-icon-item__label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text, #222);
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.product-icon-grid--pills .product-icon-item--pill:nth-child(-n+3) .product-icon-item__label {
  font-size: 1rem;
  font-weight: 400;
}

@media (max-width: 992px) {
  .product-icon-grid--pills {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
  }
  .product-icon-grid--pills .product-icon-item--pill:nth-child(-n+3),
  .product-icon-grid--pills .product-icon-item--pill:nth-child(n+4) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .product-icon-grid--pills {
    grid-template-columns: 1fr 1fr;
  }
  .product-icon-grid--pills .product-icon-item--pill:nth-child(-n+3),
  .product-icon-grid--pills .product-icon-item--pill:nth-child(n+4) {
    grid-column: span 1;
  }
  .product-icon-item--pill {
    min-height: 64px;
    padding: 0.75rem 0.875rem;
  }
  .product-icon-item--pill .product-icon-item__img,
  .product-icon-grid--pills .product-icon-item--pill:nth-child(-n+3) .product-icon-item__img {
    width: 36px;
    height: 36px;
  }
  .product-icon-item--pill .product-icon-item__label,
  .product-icon-grid--pills .product-icon-item--pill:nth-child(-n+3) .product-icon-item__label {
    font-size: 0.82rem;
    font-weight: 400;
  }
}

/* ============================================================
   Product Lifestyle Blocks (container-constrained, image + text)
   ============================================================ */
.product-lifestyle-blocks {
  padding: var(--spacing-lg) 0;
  background: #fff;
}

.product-lifestyle-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.product-lifestyle-block:last-child { margin-bottom: 0; }

.product-lifestyle-block--right .product-lifestyle-block__media {
  order: 2;
}

.product-lifestyle-block__media img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.product-lifestyle-block__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.product-lifestyle-block__title {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 400;
  color: #333;
  margin: 0 0 1rem;
  line-height: 1.35;
  letter-spacing: 0.005em;
}

.product-lifestyle-block__body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}
.product-lifestyle-block__body:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .product-lifestyle-block {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
  .product-lifestyle-block--right .product-lifestyle-block__media { order: 0; }
  .product-lifestyle-block__media img { max-height: 280px; }
}

/* ============================================================
   (Legacy) Product Lifestyle Hero — full-width banner (kept for fallback)
   ============================================================ */
.product-lifestyle-hero {
  width: 100%;
}

.product-lifestyle-hero__img-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.product-lifestyle-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-lifestyle-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0) 100%);
  color: #fff;
}

.product-lifestyle-hero--right .product-lifestyle-hero__overlay {
  background: linear-gradient(270deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0) 100%);
}

.product-lifestyle-hero--right .product-lifestyle-hero__text {
  margin-left: auto;
  text-align: right;
}

.product-lifestyle-hero__overlay .container {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  width: 100%;
  padding: 2rem 1.5rem;
}

.product-lifestyle-hero__text {
  max-width: 640px;
}

.product-lifestyle-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.product-lifestyle-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.15;
  max-width: 640px;
}

.product-lifestyle-hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #fff;
  opacity: 0.95;
  margin: 0;
  max-width: 560px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .product-lifestyle-hero__img-wrap { height: 360px; }
  .product-lifestyle-hero__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
    align-items: flex-end;
  }
  .product-lifestyle-hero--right .product-lifestyle-hero__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
  }
  .product-lifestyle-hero--right .product-lifestyle-hero__text {
    margin-left: 0;
    text-align: left;
  }
}

/* ============================================================
   Product System Description
   ============================================================ */
.product-system-description {
  padding: var(--spacing-lg) 0;
  background: #fff;
}

.product-system-description__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.product-system-description__inner--with-image {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.product-system-description__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .product-system-description__inner--with-image {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}

.product-system-description__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.product-system-description__title {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 400;
  color: #333;
  margin: 0 0 1rem;
  line-height: 1.35;
  letter-spacing: 0.005em;
}

.product-system-description__body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   Compatible Filters Section
   ============================================================ */
.product-compatible-filters {
  padding: var(--spacing-lg) 0;
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border-light);
}

.product-compatible-filters__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.product-compatible-filters__eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.product-compatible-filters__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.product-compatible-filters__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-compatible-filter-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.product-compatible-filter-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.product-compatible-filter-card__img-wrap {
  background: var(--color-bg-light);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.product-compatible-filter-card__img-wrap img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  display: block;
}

.product-compatible-filter-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.product-compatible-filter-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.product-compatible-filter-card__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

@media (max-width: 600px) {
  .product-compatible-filters__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

/* Product Hero — Short Description (bulleted feature list) */
.product-hero__short-desc {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
}
.product-hero__short-desc-item {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.3rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-muted, #555);
}
.product-hero__short-desc-item::before {
  content: "•";
  position: absolute;
  left: 0.3rem;
  top: 0.35rem;
  color: var(--color-text, #222);
  font-weight: 700;
}
.product-hero__short-desc-item strong {
  color: var(--color-text, #111);
  font-weight: 700;
}

@media (max-width: 600px) {
  .product-hero__short-desc-item {
    font-size: 0.9rem;
  }
}

/* Downloads list (PDF items inside accordion) */
.product-downloads-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-downloads-list__item {
  padding: 0.3rem 0;
}
.product-downloads-list__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-text, #222);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color 0.15s ease;
}
.product-downloads-list__link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.product-downloads-list__icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Replacement parts list (accessory items inside accordion) */
.product-parts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-parts-list__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.4rem 0;
}
.product-parts-list__img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.product-parts-list__name {
  font-size: 0.95rem;
  color: var(--color-text, #222);
  line-height: 1.3;
}
