﻿/* ===== VARIABLES ===== */
:root {
  --navy: #1a2744;
  --navy-deep: #0f1a2e;
  --cyan: #00c9c0;
  --cyan-light: #2dd4bf;
  --white: #ffffff;
  --gray-100: #f5f7fa;
  --gray-200: #e8ecf1;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #1e293b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(15, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  height: 70px;
}

.navbar dl, .navbar ol, .navbar ul {
  margin-top: 0;
  margin-bottom: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}

.nav-logo-img:hover {
  opacity: 0.85;
}

.nav-logo-golve {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 3px;
}

.nav-logo-design {
  background: var(--cyan);
  color: var(--white);
  padding: 2px 10px;
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 6px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu > li > a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-menu > li > a.active { color: var(--cyan); }

.dropdown-arrow { width: 10px; height: 10px; transition: transform 0.3s; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-dropdown a:hover { background: rgba(0,201,192,0.12); color: var(--cyan); }

.lang-selector { position: relative; margin-left: 16px; }

.lang-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.lang-btn:hover { background: rgba(255,255,255,0.15); border-color: var(--cyan); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.3s;
  min-width: 130px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.lang-selector:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-dropdown button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}
.lang-dropdown button:hover { background: rgba(0,201,192,0.12); color: var(--cyan); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}

/* ===== HERO - IMAGE ZOOM BANNER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  animation: heroZoom 12s ease-in-out infinite alternate;
  z-index: 2;
}

.hero-slide:nth-child(1) .hero-slide-bg {
    background: url('../images/banner1.png') center center / cover no-repeat;
    background-color: transparent;
}
.hero-slide:nth-child(2) .hero-slide-bg {
    background: url('../images/banner2.png') center center / cover no-repeat;
    background-color: transparent;
}
.hero-slide:nth-child(3) .hero-slide-bg {
  background: url('../images/banner3.png') center center / cover no-repeat;
  background-color: transparent;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    transparent 40%,
    transparent 60%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

/* Decorative handle silhouette */
.hero-deco {
  display: none;
}

.hero-deco svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  display: none;
  position: absolute;
  z-index: 3;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 420px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 201, 192, 0.12);
  border: 1px solid rgba(0, 201, 192, 0.25);
  color: var(--cyan-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s 0.3s ease forwards;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s ease forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--cyan-light);
  font-weight: 400;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 300;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s 0.7s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s 0.9s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 16px 36px;
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 201, 192, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.35s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,201,192,0.06); }

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 48px;
  left: 10%;
  z-index: 10;
  display: flex;
  gap: 12px;
  align-items: center;
}

.slider-dot {
  width: 12px;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s;
  padding: 0;
}

.slider-dot.active {
  width: 40px;
  background: var(--cyan);
}

.slider-counter {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  margin-left: 16px;
  font-weight: 300;
  letter-spacing: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  color: rgba(255,255,255,0.35);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTIONS ===== */
.section { padding: 120px 48px; }

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

.section-label {
  display: inline-block;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 17px;
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== ABOUT ===== */
.about-section { background: var(--gray-100); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy);
}

.about-visual-inner {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--navy-deep) 0%, #162a4a 60%, #0d3d5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-watermark {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  font-style: italic;
  color: rgba(0,201,192,0.04);
  white-space: nowrap;
}

.about-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
  height: 100%;
  align-content: center;
}

.about-product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
}
.about-product-card:hover {
  background: rgba(0,201,192,0.08);
  border-color: rgba(0,201,192,0.25);
  transform: translateY(-4px);
}
.about-product-card img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: transform 0.4s ease;
}
.about-product-card:hover img {
  transform: scale(1.08);
}
.about-product-card h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.25;
}

.about-text p {
  color: var(--gray-600);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 300;
}

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.stat-item .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-item .stat-number span { color: var(--cyan); }
.stat-item .stat-label { color: var(--gray-600); font-size: 13px; margin-top: 6px; }

/* ===== PRODUCTS ===== */
.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.08), 0 1px 6px rgba(10, 22, 40, 0.05);
    transition: box-shadow 0.4s, transform 0.4s;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        box-shadow: 0 16px 48px rgba(10, 22, 40, 0.14), 0 4px 16px rgba(0, 201, 192, 0.1);
        transform: translateY(-4px);
    }

.product-card-bg {
    flex: 1;
    min-height: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card-bg {
    transform: scale(1.05);
}

.product-card-overlay {
    display: none;
}

.product-card:hover .product-card-overlay {
    display: none;
}

.product-card-content {
    background: #fff;
    border-top: 1px solid #e8ecf1;
    padding: 18px 22px;
    flex-shrink: 0;
}

.product-card h3 {
    color: var(--navy);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.product-card p {
    color: var(--gray-600);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 300;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
    text-decoration: none;
    transition: gap 0.3s;
}

.product-card:hover .product-card-link {
    gap: 12px;
}

.product-card.featured {
    grid-column: span 1;
    grid-row: span 2;
}

    .product-card.featured h3 {
        font-size: 20px;
    }

.product-card-icon {
    width: 34px;
    height: 34px;
    background: rgba(0,201,192,0.08);
    border: 1px solid rgba(0,201,192,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

    .product-card-icon svg {
        width: 16px;
        height: 16px;
        stroke: var(--cyan);
        fill: none;
        stroke-width: 1.5;
    }

/* ===== CATALOG ===== */
.catalog-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.catalog-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,201,192,0.08), transparent 60%);
  border-radius: 50%;
}

.catalog-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.catalog-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.catalog-text p { color: rgba(255,255,255,0.55); font-size: 16px; line-height: 1.8; margin-bottom: 36px; font-weight: 300; }

.catalog-visual { display: flex; justify-content: center; align-items: center; }

.catalog-mockup {
  width: 300px; height: 400px;
  background: linear-gradient(155deg, #1e3a5f, var(--navy));
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  transform: rotate(-3deg);
  transition: transform 0.5s;
}
.catalog-mockup:hover { transform: rotate(0deg); }
.catalog-mockup .year { font-size: 48px; font-weight: 700; color: var(--white); letter-spacing: 4px; }
.catalog-mockup .label { color: var(--cyan); font-size: 14px; letter-spacing: 3px; text-transform: uppercase; }

/* ===== QUALITY ===== */
.quality-section { background: var(--white); }

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.quality-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s;
}
.quality-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 20px 60px rgba(0,201,192,0.08);
  transform: translateY(-6px);
}
.quality-card .q-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(0,201,192,0.1), rgba(26,39,68,0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.quality-card h4 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.quality-card p { color: var(--gray-600); font-size: 14px; line-height: 1.6; font-weight: 300; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  padding: 80px 48px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .footer-logo { display: flex; align-items: center; gap: 4px; margin-bottom: 20px; }
.footer-logo-img { height: 72px; width: auto; object-fit: contain; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.8; max-width: 320px; font-weight: 300; }

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: all 0.3s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--cyan); padding-left: 6px; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }
.footer-certs { display: flex; gap: 16px; }
.footer-certs span { color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 600; letter-spacing: 1px; }

/* ===== MOBILE ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.active { display: block; opacity: 1; }

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 400px; }
  .catalog-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .section { padding: 80px 24px; }

  .nav-menu {
    position: fixed;
    top: 0; right: -300px;
    width: 300px; height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 40px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-menu > li > a { padding: 14px 16px; font-size: 16px; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; background: rgba(255,255,255,0.03);
    box-shadow: none; border: none;
    margin: 4px 0 8px 16px; padding: 4px; display: none;
  }
  .has-dropdown.mobile-open .nav-dropdown { display: block; }
  .lang-selector { margin-left: 0; margin-top: 16px; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .products-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .product-card { height: 260px; }
  .product-card.featured { grid-column: span 1; grid-row: span 1; height: 300px; }
  .quality-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-content { padding: 0 24px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-deco { display: none; }
  .scroll-indicator { display: none; }
  .stat-row { gap: 24px; }
  .stat-item .stat-number { font-size: 32px; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  position: relative;
  min-height: 460px;
  height: 52vh;
  background: var(--navy-deep);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/banner1.png') center center / cover no-repeat;
  opacity: 0.1;
  transform: scale(1.05);
}

.page-hero-deco {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  background: radial-gradient(ellipse at 75% 50%, rgba(0,201,192,0.07), transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 72px;
  max-width: 1296px;
  margin: 0 auto;
  width: 100%;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.breadcrumb-nav a,
.breadcrumb-nav span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

.breadcrumb-nav a:hover { color: var(--cyan); }
.breadcrumb-nav .separator { color: rgba(255,255,255,0.2); font-size: 11px; }
.breadcrumb-nav .current { color: var(--cyan-light); }

.page-hero-content .section-label { margin-bottom: 12px; }

.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-content h1 em {
  font-style: italic;
  color: var(--cyan-light);
  font-weight: 400;
}

.page-hero-content .page-hero-desc {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  font-weight: 300;
  max-width: 560px;
  line-height: 1.75;
}

/* ===== STORY SECTION (About Page) ===== */
.story-section { background: var(--white); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.story-visual-box {
  width: 100%;
  height: 520px;
  background: linear-gradient(145deg, var(--navy-deep) 0%, #162a4a 55%, #0d3d5c 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-visual-watermark {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 140px;
  font-style: italic;
  color: rgba(0,201,192,0.04);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.story-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.story-visual-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.story-visual-card:hover {
  background: rgba(0,201,192,0.08);
  border-color: rgba(0,201,192,0.25);
  transform: translateY(-4px);
}

.story-visual-card img {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: transform 0.4s;
}

.story-visual-card:hover img { transform: scale(1.08); }

.story-visual-card span {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.story-text p {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 18px;
}

.story-highlights {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--gray-100);
  border-radius: 12px;
  border-left: 3px solid var(--cyan);
  transition: all 0.3s;
}

.story-highlight-item:hover {
  background: rgba(0,201,192,0.05);
  transform: translateX(4px);
}

.story-highlight-icon {
  width: 38px;
  height: 38px;
  background: rgba(0,201,192,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.story-highlight-item h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.story-highlight-item p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* ===== VALUES SECTION (About Page) ===== */
.values-section { background: var(--gray-100); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 32px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.value-card:hover::before { transform: scaleX(1); }

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,201,192,0.08), 0 8px 24px rgba(0,0,0,0.06);
  border-color: rgba(0,201,192,0.2);
}

.value-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(0,201,192,0.12), rgba(26,39,68,0.06));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 30px;
  transition: transform 0.4s;
}

.value-card:hover .value-icon { transform: scale(1.1) rotate(-5deg); }

.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
}

/* ===== CERTIFICATIONS SECTION (About Page) ===== */
.certs-section { background: var(--white); }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}

.cert-card {
  background: var(--gray-100);
  border-radius: 24px;
  padding: 44px 40px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 32px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cert-card:hover {
  border-color: rgba(0,201,192,0.3);
  box-shadow: 0 20px 60px rgba(0,201,192,0.08);
  transform: translateY(-4px);
  background: var(--white);
}

.cert-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
}

.cert-badge {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,201,192,0.15), rgba(26,39,68,0.08));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 1px;
  font-family: 'Outfit', sans-serif;
}

.cert-info h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.cert-info p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section { background: var(--white); }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--gray-100);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.contact-info-card:hover::after { transform: scaleX(1); }

.contact-info-card:hover {
  border-color: rgba(0,201,192,0.2);
  box-shadow: 0 20px 60px rgba(0,201,192,0.08);
  transform: translateY(-6px);
  background: var(--white);
}

.contact-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(0,201,192,0.12), rgba(26,39,68,0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: transform 0.4s;
}

.contact-info-card:hover .contact-icon { transform: scale(1.1) rotate(-5deg); }

.contact-icon svg { width: 30px; height: 30px; stroke: var(--cyan); }

.contact-info-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  font-weight: 300;
  text-decoration: none;
  display: block;
  transition: color 0.3s;
}

.contact-info-card a:hover { color: var(--cyan); }

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section { background: var(--gray-100); }

.contact-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-form-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-form-left > p {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

.contact-detail-item:hover {
  border-color: rgba(0,201,192,0.3);
  box-shadow: 0 4px 20px rgba(0,201,192,0.06);
}

.contact-detail-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-detail-item span,
.contact-detail-item a {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail-item a:hover { color: var(--cyan); }

/* Form Box */
.contact-form-box {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 40px rgba(10,22,40,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group label span { color: var(--cyan); margin-left: 2px; }

.form-control-custom {
  width: 100%;
  padding: 13px 17px;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--gray-800);
  transition: all 0.3s;
  outline: none;
  font-weight: 400;
  -webkit-appearance: none;
  appearance: none;
}

.form-control-custom:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,201,192,0.08);
}

.form-control-custom::placeholder { color: var(--gray-400); font-weight: 300; }

textarea.form-control-custom {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

select.form-control-custom { cursor: pointer; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-note {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 300;
}

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(0,201,192,0.08);
  border: 1px solid rgba(0,201,192,0.25);
  border-radius: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  text-align: center;
  animation: fadeUp 0.4s ease forwards;
}

.form-success.show { display: block; }

/* ===== SUB DROPDOWN (Flyout Nested Menu) ===== */
.nav-sub-item {
  position: relative;
}

.nav-sub-item > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.sub-arrow {
  width: 7px;
  height: 11px;
  flex-shrink: 0;
  margin-left: 10px;
  opacity: 0.35;
  stroke: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-sub-item:hover > a .sub-arrow {
  opacity: 1;
  transform: translateX(2px);
}

.nav-sub-item.mobile-sub-open > a .sub-arrow {
  opacity: 1;
  transform: rotate(90deg);
}

.nav-subdropdown {
  position: absolute;
  left: calc(100% + 10px);
  top: -8px;
  min-width: 210px;
  background: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.nav-subdropdown::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 16px;
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid rgba(255,255,255,0.07);
}

.nav-sub-item:hover .nav-subdropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav-subdropdown a {
  display: block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  font-size: 13px;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 300;
  white-space: nowrap;
  letter-spacing: 0.2px;
  position: relative;
}

.nav-subdropdown a::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 3px;
  background: rgba(0, 201, 192, 0);
  border-radius: 50%;
  transition: all 0.2s;
}

.nav-subdropdown a:hover {
  background: rgba(0, 201, 192, 0.1);
  color: var(--cyan);
  padding-left: 22px;
}

.nav-subdropdown a:hover::before {
  background: var(--cyan);
  left: 10px;
}

/* ===== RESPONSIVE (New Pages) ===== */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; gap: 52px; }
  .story-visual-box { height: 400px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: 1fr; max-width: 520px; }
  .contact-info-grid { grid-template-columns: 1fr; max-width: 460px; }
  .contact-form-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-subdropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 201, 192, 0.03);
    border: none;
    border-left: 1px solid rgba(0, 201, 192, 0.2);
    border-radius: 0;
    box-shadow: none;
    padding: 4px 0 4px 12px;
    margin: 4px 0 6px 16px;
    min-width: unset;
    display: none;
  }

  .nav-subdropdown::before { display: none; }

  .nav-sub-item.mobile-sub-open .nav-subdropdown { display: block; }

  .nav-subdropdown a {
    padding: 8px 10px;
    font-size: 14px;
    white-space: normal;
    color: rgba(255,255,255,0.45);
  }

  .nav-subdropdown a:hover {
    padding-left: 16px;
  }
}

@media (max-width: 768px) {
  .page-hero-content { padding: 0 24px 56px; }
  .story-visual-box { height: auto; padding: 24px; }
  .story-visual-grid { padding: 0; gap: 12px; }
  .story-visual-card { padding: 16px 12px; }
  .story-visual-card img { max-height: 80px; }
  .values-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .cert-card { flex-direction: column; text-align: center; padding: 36px 28px; }
  .contact-form-box { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: flex-start; }
}

/* ===== VISION & MISSION ===== */
.vm-section {
  background: var(--navy-deep);
  padding: 88px 0;
}

.vm-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.vm-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--cyan);
  border-radius: 20px;
  padding: 48px 40px;
  transition: background 0.3s;
}
.vm-card:hover { background: rgba(255,255,255,0.05); }

.vm-icon {
  width: 48px; height: 48px;
  background: rgba(0,201,192,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 24px;
}

.vm-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}

.vm-card p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 1024px) {
  .vm-grid { padding: 0 40px; }
}
@media (max-width: 768px) {
  .vm-section { padding: 64px 0; }
  .vm-grid { grid-template-columns: 1fr; padding: 0 24px; gap: 20px; }
  .vm-card { padding: 36px 28px; }
  .vm-card h3 { font-size: 26px; }
}

/* ===== PRODUCTS PAGE ===== */
body.bg-products { background: var(--gray-100); }

/* ===== PRODUCTS PAGE HERO ===== */
.pl-hero {
  background: var(--navy-deep);
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}
.pl-hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,201,192,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.pl-hero[data-bg-text]::after {
  content: attr(data-bg-text);
  position: absolute;
  right: -20px; bottom: -30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px;
  font-style: italic;
  color: rgba(255,255,255,0.025);
  letter-spacing: 12px;
  pointer-events: none;
  white-space: nowrap;
}

.pl-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.pl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.pl-breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.pl-breadcrumb a:hover { color: var(--cyan); }
.pl-breadcrumb .sep { color: rgba(255,255,255,0.18); font-size: 11px; }
.pl-breadcrumb .current { color: rgba(255,255,255,0.7); font-size: 13px; }

.pl-hero-label {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pl-hero-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

.pl-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pl-hero-title em { color: var(--cyan-light); font-style: italic; font-weight: 400; }

.pl-hero-desc {
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
}

.pl-hero-meta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.pl-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.pl-meta-item span { color: #fff; font-weight: 600; }

/* ===== PRODUCTS CATEGORY NAV ===== */
.pl-cat-nav {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 70px;
  z-index: 100;
}
.pl-cat-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.pl-cat-nav-inner::-webkit-scrollbar { display: none; }

.pl-cat-btn {
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
}
.pl-cat-btn:hover { color: var(--navy); }
.pl-cat-btn.active { color: var(--cyan); border-bottom-color: var(--cyan); font-weight: 600; }

/* ===== PRODUCTS MAIN LAYOUT ===== */
.pl-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 48px 80px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== PRODUCTS SIDEBAR ===== */
.pl-sidebar {
  position: sticky;
  top: 130px;
}

.pl-filter-block {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  padding: 24px;
  margin-bottom: 16px;
}

.pl-filter-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.pl-filter-list { display: flex; flex-direction: column; gap: 2px; }

.pl-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.pl-filter-item:hover { background: var(--gray-100); }
.pl-filter-item.active { background: rgba(0,201,192,0.06); }

.pl-filter-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--navy);
}
.pl-filter-item.active .pl-filter-item-left { color: var(--cyan); font-weight: 600; }

.pl-filter-item-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pl-filter-check {
  width: 16px; height: 16px;
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  flex-shrink: 0;
  transition: all 0.2s;
  position: relative;
}
.pl-filter-item.active .pl-filter-check { background: var(--cyan); border-color: var(--cyan); }
.pl-filter-item.active .pl-filter-check::after {
  content: '';
  position: absolute;
  top: 1px; left: 4px;
  width: 5px; height: 8px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.pl-filter-count {
  font-size: 11px;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

/* ===== SIDEBAR LINK RESETS ===== */
a.pl-filter-item {
    text-decoration: none;
    color: inherit;
}

a.pl-filter-item-left {
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 0;
}

a.pl-filter-sub-item {
    text-decoration: none;
}

/* ===== SIDEBAR SUB-CATEGORIES ===== */
.pl-filter-arrow {
  display:none;
}
 

.pl-filter-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
  padding-left: 26px;
}
.pl-filter-sub.expanded {
  max-height: 300px;
  padding-bottom: 6px;
}

.pl-filter-sub-item {
  display: block;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--gray-600);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  border-left: 2px solid transparent;
  margin-bottom: 1px;
}
.pl-filter-sub-item:hover { color: var(--navy); background: var(--gray-100); }
.pl-filter-sub-item.active {
  color: var(--cyan);
  border-left-color: var(--cyan);
  background: rgba(0,201,192,0.05);
  font-weight: 500;
}

/* ===== FINISH SWATCHES ===== */
.pl-swatch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0;
}
.pl-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--swatch, #ccc);
  border: 2px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.pl-swatch:hover { transform: scale(1.15); }
.pl-swatch.active { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,201,192,0.3); }
.pl-swatch[title]::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: 'Outfit', sans-serif;
  z-index: 10;
}
.pl-swatch:hover::after { opacity: 1; }

/* ===== PRODUCTS GRID HEADER ===== */
.pl-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.pl-grid-count { font-size: 14px; color: var(--gray-600); }
.pl-grid-count strong { color: var(--navy); font-weight: 600; }

.pl-sort { display: flex; align-items: center; gap: 8px; }
.pl-sort-label { font-size: 13px; color: var(--gray-600); }
.pl-sort select {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--navy);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 7px 28px 7px 12px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.pl-sort select:focus { border-color: var(--cyan); }

.pl-view-btns { display: flex; gap: 4px; }
.pl-view-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  color: var(--gray-600);
  transition: all 0.2s;
}
.pl-view-btn.active, .pl-view-btn:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,201,192,0.05); }

/* ===== PRODUCTS GRID ===== */
.pl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== PRODUCT CARD ===== */
.pd-related-card {
  background: #f8f9fb;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8ecf1;
  transition: all 0.4s;
  text-decoration: none;
}
.pd-related-card:hover { box-shadow: 0 12px 40px rgba(10,22,40,0.1); transform: translateY(-4px); border-color: #d0d8e8; }
.pd-related-card-img {
  background: #fff;
  padding: 32px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-related-card-img img { max-height: 160px; object-fit: contain; }
.pd-related-card-info { padding: 20px 24px; }
.pd-related-card-info span { color: var(--cyan); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.pd-related-card-info h4 { color: var(--navy); font-size: 16px; font-weight: 700; margin: 6px 0 0; }

/* ===== LOAD MORE ===== */
.pl-load-more { text-align: center; margin-top: 48px; }
.pl-load-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.pl-load-btn:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,201,192,0.04); }

/* ===== PRODUCTS CTA BANNER ===== */
.pl-cta-banner {
  background: var(--navy-deep);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pl-cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,201,192,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pl-cta-inner { position: relative; z-index: 1; }
.pl-cta-label { color: var(--cyan); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.pl-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.pl-cta-desc { color: rgba(255,255,255,0.45); font-size: 15px; font-weight: 300; margin-bottom: 32px; }
.pl-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--navy-deep);
  padding: 14px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.pl-cta-btn:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,201,192,0.25); color: var(--navy-deep); }

/* ===== PRODUCTS PAGE RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pl-main { grid-template-columns: 1fr; padding: 40px 32px 80px; }
  .pl-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pl-filter-block { margin-bottom: 0; }
  .pl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pl-hero-inner { padding: 0 24px; }
  .pl-main { padding: 28px 20px 56px; gap: 20px; }
  .pl-cat-nav-inner { padding: 0 16px; }
  .pl-grid { grid-template-columns: 1fr; }
  .pl-hero[data-bg-text]::after { display: none; }
  .pl-hero-meta { flex-wrap: wrap; gap: 16px; }
  .pl-grid-header { flex-wrap: wrap; gap: 12px; }
  .pl-sidebar { grid-template-columns: 1fr; }
}

/* ===== PRODUCT DETAIL PAGE ===== */
.pd-page {
    background: #f8f9fb;
    min-height: 100vh;
}

/* Breadcrumb */
.pd-breadcrumb {
    padding: 100px 0 0;
    background: var(--navy-deep);
}

.pd-breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-breadcrumb a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

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

.pd-breadcrumb .sep {
    color: rgba(255,255,255,0.2);
    font-size: 12px;
}

.pd-breadcrumb .current {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
}

/* Product Hero */
.pd-hero {
    background: var(--navy-deep);
    padding: 0 0 60px;
}

.pd-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 48px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Gallery */
.pd-gallery {
    position: relative;
}

.pd-main-img-wrap {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    margin-bottom: 16px;
}

    .pd-main-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.5s ease;
        padding: 20px;
    }

    .pd-main-img-wrap:hover img {
        transform: scale(1.04);
    }

.pd-badge-cert {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

    .pd-badge-cert img {
        height: 44px;
        width: 44px;
        object-fit: contain;
        background: #fff;
        border-radius: 8px;
        padding: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

.pd-thumbs {
    display: flex;
    gap: 12px;
}

.pd-thumb {
    flex: 0 0 calc((100% - 36px) / 4);
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s;
    padding: 8px;
}

    .pd-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .pd-thumb:hover, .pd-thumb.active {
        border-color: var(--cyan);
        background: rgba(0,201,192,0.08);
    }

/* Product Info */
.pd-info {
    color: #fff;
}

.pd-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

    .pd-category::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--cyan);
        border-radius: 2px;
    }

.pd-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 8px;
}

    .pd-title em {
        color: var(--cyan-light);
        font-style: italic;
        font-weight: 400;
    }

.pd-code {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.pd-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--cyan), transparent);
    margin-bottom: 28px;
}

.pd-desc {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 32px;
}

/* Specs */
.pd-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.pd-spec-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s;
}

    .pd-spec-item:hover {
        border-color: rgba(0,201,192,0.25);
        background: rgba(0,201,192,0.06);
    }

.pd-spec-label {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pd-spec-value {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* Certifications */
.pd-certs {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    margin-bottom: 28px;
}

.pd-certs-label {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pd-certs-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

    .pd-certs-icons img {
        height: 40px;
        width: auto;
        object-fit: contain;
        background: #fff;
        border-radius: 8px;
        padding: 4px 8px;
    }

/* CTA Buttons */
.pd-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pd-btn-primary {
    background: var(--cyan);
    color: var(--navy-deep);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.35s;
    border: none;
    letter-spacing: 0.5px;
}

    .pd-btn-primary:hover {
        background: #fff;
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(0,201,192,0.3);
        color: var(--navy-deep);
    }

.pd-btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.35s;
    border: 1px solid rgba(255,255,255,0.2);
}

    .pd-btn-outline:hover {
        border-color: var(--cyan);
        color: var(--cyan);
        background: rgba(0,201,192,0.06);
    }

/* ===== TABS SECTION ===== */
.pd-tabs-section {
    background: #fff;
    border-bottom: 1px solid #e8ecf1;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.pd-tabs-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    gap: 0;
}

.pd-tab {
    padding: 18px 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}

    .pd-tab:hover {
        color: var(--navy);
    }

    .pd-tab.active {
        color: var(--cyan);
        border-bottom-color: var(--cyan);
        font-weight: 600;
    }

/* ===== CONTENT SECTIONS ===== */
.pd-content {
    padding: 80px 0;
}

.pd-content-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.pd-section-label {
    display: inline-block;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pd-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.pd-section-desc {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 560px;
    margin-bottom: 40px;
}

.pd-colors-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 32px rgba(10,22,40,0.07);
    border: 1px solid #e8ecf1;
}

    .pd-colors-wrap img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.pd-colors-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pd-color-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(10,22,40,0.05);
    transition: all 0.3s;
}

    .pd-color-row:hover {
        border-color: var(--cyan);
        transform: translateX(4px);
        box-shadow: 0 4px 20px rgba(0,201,192,0.1);
    }

.pd-color-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pd-color-text strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    font-weight: 600;
}

.pd-color-text span {
    font-size: 12px;
    color: #94a3b8;
}

/* Technical */
.pd-technical-section {
    background: var(--gray-100);
    padding: 80px 0;
}

.pd-technical-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.pd-technical-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.pd-technical-img-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 32px rgba(10,22,40,0.07);
    border: 1px solid #e8ecf1;
}

    .pd-technical-img-wrap img {
        width: 100%;
        height: auto;
    }

.pd-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-top: 32px;
    margin-bottom: 28px;
}

.pd-stat {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 14px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s;
}

    .pd-stat:hover {
        border-color: rgba(0,201,192,0.4);
        box-shadow: 0 4px 16px rgba(0,201,192,0.1);
    }

.pd-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

    .pd-stat-val span {
        color: var(--cyan);
    }

.pd-stat-lbl {
    font-size: 10px;
    color: var(--gray-600);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pd-feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pd-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 400;
}

    .pd-feature-item::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--cyan);
        border-radius: 50%;
        flex-shrink: 0;
    }

/* Features */
.pd-features-section {
    background: var(--navy-deep);
    padding: 80px 0;
}

.pd-features-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.pd-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pd-feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s;
}

    .pd-feature-card:hover {
        border-color: rgba(0,201,192,0.3);
        background: rgba(0,201,192,0.06);
        transform: translateY(-4px);
    }

.pd-feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(0,201,192,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

    .pd-feature-icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--cyan);
        fill: none;
        stroke-width: 1.5;
    }

.pd-feature-card h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pd-feature-card p {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 300;
}

/* Related */
.pd-related-section {
    background: #fff;
    padding: 80px 0;
}

.pd-related-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
/* .pd-related-card → see "PRODUCT CARD" section */

/* Responsive */
@media (max-width: 1024px) {
    .pd-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pd-technical-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

@media (max-width: 768px) {
    .pd-hero-inner {
        padding: 24px 24px 0;
    }

    .pd-breadcrumb-inner {
        padding: 0 24px 20px;
    }

    .pd-content-inner {
        padding: 0 24px;
    }

    .pd-technical-inner {
        padding: 0 24px;
    }

    .pd-features-inner {
        padding: 0 24px;
    }

    .pd-related-inner {
        padding: 0 24px;
    }

    .pd-tabs-inner {
        padding: 0 16px;
        overflow-x: auto;
    }

    .pd-specs {
        grid-template-columns: 1fr;
    }

    .pd-features-grid {
        grid-template-columns: 1fr;
    }

    .pd-related-grid {
        grid-template-columns: 1fr;
    }

    .pd-title {
        font-size: 36px;
    }