/* ==========================================================================
   EURO+ — Products Page Styles (Dark Premium Theme)
   Brand Gold: #C3862B
   ========================================================================== */


/* ----------------------------------------------
   PAGE BANNER
   ---------------------------------------------- */

.page-banner {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void);
  padding: 140px 0 70px;
  overflow: hidden;
  text-align: center;
}

.page-banner .banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-banner .banner-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-banner .banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12,10,7,0.65) 0%,
    rgba(12,10,7,0.8) 55%,
    rgba(12,10,7,0.96) 100%
  );
}

.page-banner .container-xl {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241,233,220,0.55);
  margin-bottom: 22px;
}

.breadcrumb a {
  color: rgba(241,233,220,0.75);
  transition: color .3s ease;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb i {
  font-size: 9px;
  color: var(--gold);
}

.page-banner h1 {
  font-size: clamp(36px, 5vw, 58px);
  color: #fff;
  line-height: 1.15;
}

.page-banner h1 em {
  font-style: normal;
  background: linear-gradient(
    120deg,
    var(--gold) 0%,
    var(--gold-royal) 60%,
    var(--gold-dark) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-banner p {
  margin: 20px auto 0;
  max-width: 600px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
}

.banner-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.sub-head {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.sub-head.on-dark {
  color: var(--gold);
}


/* ----------------------------------------------
   STICKY SUB-NAV
   ---------------------------------------------- */

.product-subnav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(20,16,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.product-subnav .container-xl {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-subnav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all .3s ease;
}

.product-subnav a:hover {
  color: var(--gold);
  border-color: rgba(195,134,43,0.3);
  background: rgba(195,134,43,0.08);
}


/* ----------------------------------------------
   CATEGORY GRID
   ---------------------------------------------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.55);
  cursor: pointer;
  transition: all .5s cubic-bezier(.22,.61,.36,1);
  border: 1px solid var(--line);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px -30px rgba(143,93,24,0.35);
  border-color: var(--gold);
}

.category-card .category-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.category-card .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}

.category-card:hover .category-image img {
  transform: scale(1.08);
}

.category-card .category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,10,7,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-card .category-overlay span {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(195,134,43,0.9);
  padding: 10px 24px;
  border-radius: 30px;
}

.category-card .category-body {
  padding: 28px 26px 32px;
  text-align: center;
}

.category-card .category-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195,134,43,0.12);
  color: var(--gold);
  font-size: 20px;
}

.category-card h4 {
  font-size: 19px;
  margin-bottom: 8px;
}

.category-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}


/* ----------------------------------------------
   PRODUCT VISUAL
   ---------------------------------------------- */

.product-visual {
  position: relative;
}

.product-visual-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
  border: 1px solid var(--line);
}

.product-visual-frame img {
  width: 100%;
  max-width: 477px;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
}

.product-visual-frame .product-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12,10,7,0.85);
  color: var(--gold);
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-visual-frame .product-badge i {
  font-size: 14px;
}


/* ----------------------------------------------
   FEATURE GRID 2-COL
   ---------------------------------------------- */

.feature-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

@media (max-width: 480px) {
  .feature-grid-2col {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
}

.feature-item .feature-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(195,134,43,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.product-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ----------------------------------------------
   SPECIFICATIONS
   ---------------------------------------------- */

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

.spec-card {
  text-align: center;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 20px;
  transition: all .4s cubic-bezier(.22,.61,.36,1);
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.55);
  border-color: rgba(195,134,43,0.4);
}

.spec-card .spec-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195,134,43,0.1);
  color: var(--gold);
  font-size: 20px;
}

.spec-card h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.spec-card p {
  margin: 0;
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
}


/* ----------------------------------------------
   APPLICATIONS
   ---------------------------------------------- */

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .applications-grid {
    grid-template-columns: 1fr;
  }
}

.application-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
  border: 1px solid var(--line);
}

.application-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}

.application-card:hover img {
  transform: scale(1.08);
}

.application-card .application-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(
    0deg,
    rgba(12,10,7,0.85) 0%,
    transparent 100%
  );
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}


/* ----------------------------------------------
   DECORATIVE GRID
   ---------------------------------------------- */

.decorative-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .decorative-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .decorative-grid {
    grid-template-columns: 1fr;
  }
}

.decorative-card {
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .4s cubic-bezier(.22,.61,.36,1);
}

.decorative-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.55);
  border-color: rgba(195,134,43,0.4);
}

.decorative-card .decorative-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.decorative-card .decorative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}

.decorative-card:hover .decorative-image img {
  transform: scale(1.06);
}

.decorative-card h5 {
  font-size: 16px;
  padding: 18px 20px 6px;
  margin: 0;
  color: var(--white);
}

.decorative-card p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  padding: 0 20px 22px;
  margin: 0;
}


/* ----------------------------------------------
   HARDWARE GRID
   ---------------------------------------------- */

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .hardware-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hardware-grid {
    grid-template-columns: 1fr;
  }
}

.hardware-card {
  position: relative;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(227,181,110,0.04);
  border: 1px solid var(--line);
  transition: all .4s cubic-bezier(.22,.61,.36,1);
  padding-bottom: 20px;
}

.hardware-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -25px rgba(195,134,43,0.25);
  border-color: rgba(195,134,43,0.4);
}

.hardware-card .hardware-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(12,10,7,0.7);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.hardware-card .hardware-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.hardware-card .hardware-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: all .6s cubic-bezier(.22,.61,.36,1);
}

.hardware-card:hover .hardware-image img {
  transform: scale(1.08);
  opacity: 1;
}

.hardware-card h6 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin: 16px 0 4px;
  padding: 0 16px;
}

.hardware-card p {
  color: rgba(241,233,220,0.5);
  font-size: 12px;
  margin: 0;
  padding: 0 16px;
}


/* ----------------------------------------------
   COMPARISON TABLE
   ---------------------------------------------- */

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
}

.compare-table thead th {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid var(--line);
}

.compare-table tbody td:first-child,
.compare-table thead th:first-child {
  text-align: left;
  color: var(--white);
  font-weight: 500;
}

.compare-table .highlight-col {
  background: rgba(195,134,43,0.1);
  font-weight: 600;
}

.compare-table thead .highlight-col {
  color: var(--gold);
  background: rgba(195,134,43,0.14);
}

.compare-table i.chk {
  color: #3fbf7f;
  font-size: 16px;
}

.compare-table i.cross {
  color: #e07a7a;
  font-size: 16px;
}

.compare-table i.dash {
  color: #666;
  font-size: 16px;
}

.table-responsive {
  overflow-x: auto;
}

@media (max-width: 768px) {
  .compare-table {
    min-width: 620px;
  }
}


/* ----------------------------------------------
   WHY GRID 4-COL
   ---------------------------------------------- */

.why-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .why-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .why-grid-4 {
    grid-template-columns: 1fr;
  }
}

.why-card {
  text-align: center;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border-radius: 8px;
  padding: 36px 24px;
  border: 1px solid var(--line);
  transition: all .4s cubic-bezier(.22,.61,.36,1);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.55);
  border-color: var(--gold);
}

.why-card .why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195,134,43,0.1);
  color: var(--gold);
  font-size: 22px;
}

.why-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 300;
  margin: 0;
}


/* ----------------------------------------------
   GALLERY FILTERS
   ---------------------------------------------- */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.gallery-filters button {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .35s ease;
}

.gallery-filters button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-filters button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}


/* ----------------------------------------------
   PRODUCT SHOWCASE GALLERY
   ---------------------------------------------- */

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.product-showcase-card {
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  transition: all 0.4s ease;
}

.product-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border-color: var(--gold);
}

.product-showcase-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--surface);
}

.product-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-showcase-card:hover .product-showcase-image img {
  transform: scale(1.05);
}

.product-showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-showcase-card:hover .product-showcase-overlay {
  opacity: 1;
}

.product-showcase-overlay a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.product-showcase-card:hover .product-showcase-overlay a {
  transform: scale(1);
}

.product-showcase-overlay a:hover {
  background: #fff;
  transform: scale(1.1);
}

.product-showcase-content {
  padding: 24px 24px 28px;
}

.product-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(195,134,43,0.12);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.product-showcase-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-showcase-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-showcase-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.product-showcase-meta span {
  font-size: 12px;
  color: rgba(241,233,220,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-showcase-meta span i {
  color: var(--gold);
  font-size: 14px;
}

.product-showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-showcase-btn:hover {
  color: var(--white);
  gap: 12px;
}

.product-showcase-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.product-showcase-btn:hover i {
  transform: translateX(4px);
}


/* Tablet */

@media(max-width: 992px) {
  .product-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}


/* Mobile */

@media(max-width: 576px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-showcase-content {
    padding: 20px;
  }

  .product-showcase-content h4 {
    font-size: 16px;
  }
}


/* ----------------------------------------------
   DOWNLOADS
   ---------------------------------------------- */

.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
}

.download-card {
  text-align: center;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 24px;
  transition: all .4s cubic-bezier(.22,.61,.36,1);
}

.download-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.55);
  border-color: var(--gold);
}

.download-card .download-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    140deg,
    var(--gold),
    var(--gold-dark)
  );
  color: #111;
  font-size: 22px;
  box-shadow: 0 16px 32px -14px rgba(195,134,43,0.45);
}

.download-card h6 {
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--white);
}

.download-card p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.download-card a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .3s ease;
}

.download-card a:hover {
  color: var(--white);
}


/* ----------------------------------------------
   CERTIFICATIONS
   ---------------------------------------------- */

.certifications-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.certification-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.certification-item i {
  font-size: 28px;
  color: var(--gold);
}


/* ----------------------------------------------
   FAQ
   ---------------------------------------------- */

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.faq-item .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background .3s ease;
}

.faq-item .faq-question:hover {
  background: rgba(195,134,43,0.06);
}

.faq-item .faq-question i {
  font-size: 14px;
  color: var(--gold);
  transition: transform .3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item .faq-question.active i {
  transform: rotate(180deg);
}

.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 24px;
}

.faq-item .faq-answer p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  line-height: 1.7;
  padding-bottom: 24px;
}


/* ----------------------------------------------
   TESTIMONIALS
   ---------------------------------------------- */

.testimonial-card {
  background: rgba(227,181,110,0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 32px;
  backdrop-filter: blur(10px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: rgba(241,233,220,0.78);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  margin: 0 0 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(
    140deg,
    var(--gold),
    var(--gold-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: #111;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-author b {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.testimonial-author span {
  display: block;
  color: rgba(241,233,220,0.5);
  font-size: 12px;
  margin-top: 2px;
}

.testimonial-swiper {
  position: relative;
  padding: 0 54px;
}

@media (max-width: 768px) {
  .testimonial-swiper {
    padding: 0 6px;
  }
}

.testimonial-nav-btn {
  color: var(--gold);
  width: 44px;
  height: 44px;
  background: rgba(227,181,110,0.06);
  border: 1px solid rgba(195,134,43,0.35);
  border-radius: 50%;
  transition: all .35s ease;
}

.testimonial-nav-btn::after {
  font-size: 15px;
  font-weight: 700;
}

.testimonial-nav-btn:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .testimonial-nav-btn {
    display: none;
  }
}

.swiper-pagination-bullet {
  background: rgba(241,233,220,0.3);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
}


/* ----------------------------------------------
   BACK TO TOP
   ---------------------------------------------- */

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--void);
  color: var(--gold);
  border: 1px solid rgba(195,134,43,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .4s cubic-bezier(.22,.61,.36,1);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--gold);
  color: #111;
}


/* ----------------------------------------------
   RESPONSIVE OVERRIDES
   ---------------------------------------------- */

@media (max-width: 768px) {
  .page-banner {
    min-height: 55vh;
    padding: 120px 0 50px;
  }

  .page-banner h1 {
    font-size: 30px;
  }

  .banner-btns {
    flex-direction: column;
    align-items: center;
  }

  .banner-btns .btn-euro {
    width: 100%;
    justify-content: center;
  }

  .product-subnav a {
    font-size: 10px;
    padding: 6px 12px;
  }
}

@media (max-width: 576px) {
  .page-banner {
    min-height: 45vh;
    padding: 100px 0 40px;
  }

  .page-banner h1 {
    font-size: 26px;
  }

  .page-banner p {
    font-size: 14px;
  }

  .container-xl {
    padding: 0 16px;
  }

  .product-subnav .container-xl {
    gap: 6px;
  }

  .product-subnav a {
    font-size: 9px;
    padding: 5px 10px;
  }

  .btn-euro {
    padding: 14px 24px;
    font-size: 11px;
  }
}


/* ----------------------------------------------
   PREVENT HORIZONTAL OVERFLOW
   ---------------------------------------------- */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}


/* ==========================================================================
   FULL PRODUCT CATALOG — 16 Category Grid
   ========================================================================== */

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.catalog-card {
  display: block;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px -26px rgba(0,0,0,0.55);
  cursor: pointer;
  transition:
    transform .5s cubic-bezier(.22,.61,.36,1),
    box-shadow .5s cubic-bezier(.22,.61,.36,1),
    border-color .5s ease;
  outline: none;
}

.catalog-card:hover,
.catalog-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 34px 70px -30px rgba(143,93,24,0.38);
  border-color: var(--gold);
}

.catalog-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface);
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform .8s cubic-bezier(.22,.61,.36,1),
    filter .6s ease;
}

.catalog-card:hover .catalog-image img {
  filter: brightness(0.92);
}

.catalog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12,10,7,0) 40%,
    rgba(12,10,7,0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  opacity: 0;
  transition: opacity .4s ease;
}

.catalog-card:hover .catalog-overlay,
.catalog-card:focus-visible .catalog-overlay {
  opacity: 1;
}

.catalog-overlay span {
  font-family: var(--font-btn, 'Montserrat', sans-serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(195,134,43,0.95);
  padding: 9px 20px;
  border-radius: 30px;
  transform: translateY(10px);
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.catalog-card:hover .catalog-overlay span,
.catalog-card:focus-visible .catalog-overlay span {
  transform: translateY(0);
}

.catalog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(12,10,7,0.75);
  color: #fff;
  font-family: var(--font-btn, 'Montserrat', sans-serif);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.catalog-body {
  padding: 20px 20px 24px;
}

.catalog-body h4 {
  font-size: 17px;
  margin-bottom: 6px;
  transition: color .3s ease;
}

.catalog-card:hover .catalog-body h4 {
  color: var(--gold);
}

.catalog-body p {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================================
   PRODUCT DETAIL MODAL
   ========================================================================== */

.euro-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity .45s ease,
    visibility 0s linear .45s;
}

.euro-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition:
    opacity .45s ease,
    visibility 0s linear 0s;
}

.euro-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,5,3,0.82);
  backdrop-filter: blur(6px);
}

.euro-modal-dialog {
  position: relative;
  background: linear-gradient(165deg, var(--surface-2) 0%, var(--surface) 100%);
  width: 100%;
  max-width: 640px;
  max-height: 88vh;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.7);
  transform: translateY(40px) scale(0.97);
  opacity: 0;
  transition:
    transform .5s cubic-bezier(.22,.61,.36,1),
    opacity .5s ease;
}

.euro-modal.is-open .euro-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.euro-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(12,10,7,0.65);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.5);
  transition:
    background .3s ease,
    transform .3s ease;
}

.euro-modal-close:hover {
  background: var(--gold-dark);
  transform: rotate(90deg);
}

.euro-modal-grid {
  display: flex;
  flex-direction: column;
  max-height: 88vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(195,134,43,0.5) transparent;
}

.euro-modal-grid::-webkit-scrollbar {
  width: 6px;
}

.euro-modal-grid::-webkit-scrollbar-thumb {
  background: rgba(195,134,43,0.5);
  border-radius: 10px;
}

.euro-modal-media {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  max-height: 65vh;
  overflow: hidden;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
}

.euro-modal-media img {
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .euro-modal-media {
    max-height: 50vh;
  }

  .euro-modal-media img {
    max-height: 50vh;
  }
}

@media (max-width: 480px) {
  .euro-modal-media {
    max-height: 40vh;
  }

  .euro-modal-media img {
    max-height: 40vh;
  }
}

.euro-modal-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(195,134,43,0.95);
  color: #fff;
  font-family: var(--font-btn, 'Montserrat', sans-serif);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 20px;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,0.5);
}

.euro-modal-content {
  flex: 1 1 auto;
  padding: 44px 44px 38px;
}

@media (max-width: 576px) {
  .euro-modal-content {
    padding: 30px 24px 28px;
  }
}

.euro-modal-content #pmEyebrow {
  margin-bottom: 10px;
}

.euro-modal-content #pmTitle {
  font-size: 29px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.euro-modal-desc {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.euro-modal-block {
  margin-bottom: 26px;
}

.euro-modal-block h6 {
  font-family: var(--font-btn, 'Montserrat', sans-serif);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.euro-modal-block h6 i {
  font-size: 12px;
  color: var(--gold);
}

.euro-modal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 18px;
}

.euro-modal-list li {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}

.euro-modal-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--gold);
  background: rgba(195,134,43,0.16);
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  margin-top: 1px;
  flex-shrink: 0;
}

.euro-modal-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 28px;
}

.euro-modal-split .euro-modal-list {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 480px) {
  .euro-modal-split {
    padding: 20px;
  }

  .euro-modal-split .euro-modal-list {
    grid-template-columns: 1fr;
  }

  .euro-modal-list {
    grid-template-columns: 1fr;
  }
}

.euro-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}


/* ----------------------------------------------
   VIDEO MODAL
   ---------------------------------------------- */

body.modal-open {
  overflow: hidden;
}

#videoModal .vm-close {
  position: absolute;
  top: 34px;
  right: 44px;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}