/* ==========================================================================
   ExiroMED Front Page Styles (LTR)
   Extracted from index.html design
   ========================================================================== */

/* Hide old WordPress header — replaced by global navbar in header.php */
#header.old-header,
.old-header + .m_menu {
  display: none !important;
}

/* ---- Fonts ---- */
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-bold-webfont.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/gotham-book-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Reset for front page ---- */
.exiro-front-page *,
.exiro-front-page *::before,
.exiro-front-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---- CSS Variables ---- */
.exiro-front-page {
  --cream: #f5f0ea;
  --warm-white: #ffffff;
  /*--warm-white: #faf8f5;*/
  --section-bg: #eaeae9;
  --text-dark: #111111;
  --text-muted-dark: #333333;
  --exiro-green: #143931;
  --exiro-green-hover: #235247;
  --transition: 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Gotham', sans-serif;
  --font-body: 'Gotham', sans-serif;
  background: var(--warm-white);
  font-family: var(--font-body);
  font-weight: normal;
  overflow-x: hidden;
  letter-spacing: -1px !important;
}

.exiro-front-page h1,
.exiro-front-page h2,
.exiro-front-page h3,
.exiro-front-page h4,
.exiro-front-page h5,
.exiro-front-page h6 {
  font-family: var(--font-heading);
  font-weight: bold;
  letter-spacing: -1px !important;
}

/* ---- Global Layout ---- */
.exiro-front-page .container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/* ==========================================================================
   1. HERO SLIDER
   ========================================================================== */
.exiro-front-page .hero-section {
  padding: 40px 20px;
}

.exiro-front-page .hero-card {
  position: relative;
}

.exiro-front-page .hero-svg {
  width: 100%;
  display: block;
}

.exiro-front-page .slide-img {
  transition: opacity var(--transition);
  opacity: 0;
}

.exiro-front-page .slide-img.active {
  opacity: 1;
}

.exiro-front-page .navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.2% 4%;
  z-index: 10;
  pointer-events: none;

  background: linear-gradient(to bottom, rgb(10 25 20 / 87%) 0%, rgba(10, 25, 20, 0.00) 100%);
  backdrop-filter: blur(0px);
  padding-bottom: 48px;
  border-radius: var(--hero-card-radius) var(--hero-card-radius) 0 0;
}

.exiro-front-page .navbar > * {
  pointer-events: auto;
}

.exiro-front-page .logo {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #fff;
  text-decoration: none;
  font-size: clamp(16px, 2.2vw, 26px);
}

.exiro-front-page .logo img {
  height: clamp(18px, 2vw, 28px);
  width: auto;
  object-fit: contain;
}

.exiro-front-page .logo .script {
  font-weight: normal;
  font-size: 1.3em;
}

.exiro-front-page .logo .bold {
  font-weight: bold;
  letter-spacing: 0.14em;
  font-size: 0.82em;
}

.exiro-front-page .navbar nav {
  display: flex;
  gap: clamp(16px, 3vw, 48px);
}

.exiro-front-page .navbar nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: clamp(11px, 1.05vw, 14px);
  letter-spacing: 0.07em;
  font-weight: normal;
  transition: color 0.3s;
}

.exiro-front-page .navbar nav a:hover {
  color: #fff;
}

/* ---- Navbar Responsive: hide Menu btn on desktop, hide desktop nav on mobile ---- */
@media (min-width: 901px) {
  .exiro-front-page .navbar .btnMenu {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .exiro-front-page .navbar nav {
    display: none !important;
  }
}

.exiro-front-page .hero-text {
  position: absolute;
  bottom: 16%;
  left: 8%;
  z-index: 10;
  width: 48%;
  max-width: 600px;
  pointer-events: none;
}

.exiro-front-page .slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.exiro-front-page .slide-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.exiro-front-page .slide-content h1 {
  font-weight: bold;
  font-size: clamp(26px, 4vw, 58px);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 0.5em;
}

.exiro-front-page .slide-content p {
  font-size: clamp(11px, 1.1vw, 14px);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: normal;
  text-align: justify;
}

.exiro-front-page .hero-dots {
  position: absolute;
  bottom: 5%;
  right: 5%;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.exiro-front-page .hero-dot {
  height: 3px;
  width: 28px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: 0.4s;
}

.exiro-front-page .hero-dot.active {
  background: #fff;
  width: 52px;
}

.exiro-front-page .counter {
  position: absolute;
  bottom: 6.5%;
  left: 10%;
  z-index: 10;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(9px, 0.9vw, 12px);
  letter-spacing: 0.12em;
}

.exiro-front-page .scroll-group {
  cursor: pointer;
}

.exiro-front-page .corner-bg {
  fill: var(--warm-white);
  transition: fill 0.4s ease;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(90px); }
  60% { transform: translateY(45px); }
}

.exiro-front-page .corner-arrow {
  stroke: #5A4A42;
  stroke-width: 20;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: bounceDown 2.5s infinite;
}

/* ==========================================================================
   2. ABOUT SECTION
   ========================================================================== */
.exiro-front-page .about-section {
  padding: 80px 20px;
}

.exiro-front-page .about-container {
  display: flex;
  align-items: center;
  gap: 8%;
}

.exiro-front-page .about-image-col {
  flex: 1;
  position: relative;
  max-width: 45%;
}

.exiro-front-page .about-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.06));
}

.exiro-front-page .about-text-col {
  flex: 1;
}

.exiro-front-page .about-text-col h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.exiro-front-page .about-text-col p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 400;
  text-align: justify;
}

.exiro-front-page .learn-more-group {
  cursor: pointer;
}

.exiro-front-page .about-corner-bg {
  fill: var(--exiro-green);
  transition: fill 0.3s ease;
}

.exiro-front-page .learn-more-group:hover .about-corner-bg {
  fill: var(--exiro-green-hover);
}

.exiro-front-page .about-corner-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 38px;
  font-weight: 300;
  fill: #ffffff;
}

.exiro-front-page .about-corner-arrow {
  stroke: #ffffff;
  stroke-width: 3.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.exiro-front-page .learn-more-group:hover .about-corner-arrow {
  transform: translateX(12px);
}

/* ==========================================================================
   2.5 BRANDS LOGO STRIP
   ========================================================================== */
.exiro-front-page .brands-section {
  padding: 80px 20px 120px 20px;
  background: var(--warm-white);
}

.exiro-front-page .brands-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(30px, 4vw, 30px);
}

.exiro-front-page .brand-logo {
  height: clamp(28px, 3.5vw, 50px);
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.exiro-front-page .brand-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ==========================================================================
   3. OUR PRODUCTS SECTION
   ========================================================================== */
.exiro-front-page .products-section {
  padding: 0 20px 80px 20px;
}

.exiro-front-page .products-box {
  position: relative;
  background: var(--section-bg);
  border-radius: 40px;
  display: flex;
  padding: 80px 0 80px 60px;
  overflow: hidden;
  min-height: 500px;
}

.exiro-front-page .products-mask {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 160px;
  height: 160px;
  z-index: 10;
  pointer-events: none;
}

.exiro-front-page .products-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 11;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exiro-front-page .products-arrow svg {
  width: 70px;
  height: 70px;
  transition: transform 0.3s ease;
}

.exiro-front-page .products-arrow:hover svg {
  transform: translateX(6px);
}

.exiro-front-page .products-text-col {
  flex: 0 0 45%;
  padding-right: 40px;
  z-index: 2;
}

.exiro-front-page .products-text-col h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.exiro-front-page .products-text-col p {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: justify;
}

.exiro-front-page .products-slider-col {
  flex: 1;
  position: relative;
}

.exiro-front-page .products-track {
  display: flex;
  gap: 50px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.exiro-front-page .product-slide {
  flex: 0 0 75%;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0.3;
  transform: scale(0.95);
  transition: opacity 0.8s, transform 0.8s;
}

.exiro-front-page .product-slide.active {
  opacity: 1;
  transform: scale(1);
}

.exiro-front-page .product-info {
  flex: 1;
  text-align: center;
}

.exiro-front-page .product-info h3 {
  font-size: clamp(40px, 4vw, 70px);
  font-weight: 700;
  line-height: 1;
  color: #111;
}

.exiro-front-page .product-info p.subtitle {
  font-size: clamp(16px, 1.5vw, 22px);
  margin: 10px 0;
  color: #111;
}

.exiro-front-page .product-info p.subtitle span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.exiro-front-page .product-info p.details {
  font-size: clamp(12px, 1vw, 14px);
  color: #666;
  letter-spacing: 0.05em;
}

.exiro-front-page .product-img-wrap {
  flex: 1.2;
}

.exiro-front-page .product-img-wrap img {
  width: 150%;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   3.5 PROLUMA SECTION
   ========================================================================== */
.exiro-front-page .proluma-section {
  padding: 80px 20px;
  background: var(--warm-white);
}

.exiro-front-page .proluma-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.exiro-front-page .proluma-image-col {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

@keyframes floatGently {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.exiro-front-page .proluma-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  animation: floatGently 4s ease-in-out infinite;
}

.exiro-front-page .proluma-text-col {
  flex: 1;
}

.exiro-front-page .proluma-text-col h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.exiro-front-page .proluma-text-col p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 25px;
  max-width: 600px;
  text-align: justify;
}

.exiro-front-page .proluma-btn {
  display: inline-block;
  background: var(--exiro-green);
  color: #fff;
  text-decoration: none;
  padding: 18px 36px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 15px;
  border-radius: 4px;
  border-bottom-right-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.exiro-front-page .proluma-btn:hover {
  background: var(--exiro-green-hover);
  transform: translateY(-3px);
}

/* ==========================================================================
   4. BLOG SECTION
   ========================================================================== */
.exiro-front-page .blog-section {
  background: var(--warm-white);
  padding: 100px 20px;
}

.exiro-front-page .blog-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.exiro-front-page .blog-card {
  display: flex;
  background: var(--section-bg);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-height: 400px;
}

.exiro-front-page .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.exiro-front-page .blog-image {
  flex: 0 0 45%;
  position: relative;
}

.exiro-front-page .blog-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exiro-front-page .blog-content {
  flex: 1;
  padding: 60px 80px 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exiro-front-page .blog-date {
  font-size: 13px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 500;
}

.exiro-front-page .blog-title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.exiro-front-page .blog-excerpt {
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.6;
  color: #333333;
  text-align: justify;
}

/* Blog Corner Cut */
.exiro-front-page .blog-corner-cut {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 160px;
  height: 160px;
  z-index: 10;
}

.exiro-front-page .blog-corner-shape {
  fill: var(--warm-white);
  transition: fill 0.4s ease;
}

.exiro-front-page .blog-corner-content {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.exiro-front-page .blog-corner-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  fill: #ffffff;
}

.exiro-front-page .blog-card:hover .blog-corner-shape {
  fill: var(--exiro-green);
}

.exiro-front-page .blog-card:hover .blog-corner-content {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   5. FOOTER & GLOBAL NETWORK SECTION
   ========================================================================== */
.exiro-front-page .main-footer {
  padding: 80px 20px 0;
  background: var(--warm-white);
}

.exiro-front-page .global-content {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 5;
  padding-bottom: 0;
}

.exiro-front-page .global-text {
  flex: 0 0 45%;
  margin-bottom: 120px;
}

.exiro-front-page .global-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.exiro-front-page .global-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: justify;
}

.exiro-front-page .global-image {
  flex: 1;
  position: relative;
  margin-right: calc(-50vw + 50%);
  transform: translateY(200px);
}

.exiro-front-page .global-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Green Footer Box */
.exiro-front-page .footer-box {
  position: relative;
  background: var(--exiro-green);
  border-radius: 40px 0 0 0;
}

.exiro-front-page .footer-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 50vw;
  height: 100%;
  background: var(--exiro-green);
}

/* Footer Cut Mask */
.exiro-front-page .footer-cut-mask {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 250px;
  height: 250px;
  z-index: 10;
  pointer-events: none;
}

/* Footer Arrow */
.exiro-front-page .footer-arrow {
  position: absolute;
  width: 90px;
  height: 90px;
  z-index: 11;
  cursor: pointer;
  overflow: hidden;
  border-radius: 50%;
}

.exiro-front-page .footer-arrow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.exiro-front-page .footer-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

.exiro-front-page .arrow-text {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--exiro-green);
  line-height: 1.2;
}

.exiro-front-page .footer-arrow:hover .footer-arrow-inner {
  transform: translateY(-100%);
}

.exiro-front-page .footer-layout {
  display: flex;
  padding: 100px 80px 60px 180px;
  gap: 120px;
}

.exiro-front-page .footer-left {
  display: flex;
  flex-direction: column;
}

.exiro-front-page .footer-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}

.exiro-front-page .footer-left p {
  font-size: clamp(14px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.5;
}

.exiro-front-page .footer-copyright {
  margin-top: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.exiro-front-page .footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.exiro-front-page .footer-contact {
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 300;
}

.exiro-front-page .social-icons {
  display: flex;
  gap: 20px;
}

.exiro-front-page .social-icons a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.exiro-front-page .social-icons svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 0.3s;
}

.exiro-front-page .social-icons a:hover svg {
  transform: translateY(-3px);
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .exiro-front-page .about-container {
    flex-direction: column;
    gap: 50px;
  }

  .exiro-front-page .about-image-col {
    max-width: 80%;
  }

  .exiro-front-page .brands-track {
    gap: 30px 5px;
  }

  .exiro-front-page .brands-section {
    padding: 0 20px 100px 20px;
    background: var(--warm-white);
  }

  .exiro-front-page .brand-logo {
    height: 35px;
  }

  .exiro-front-page .products-box {
    flex-direction: column;
    padding: 50px 30px;
    gap: 50px;
  }

  .exiro-front-page .products-text-col {
    flex: none;
    padding-right: 0;
  }

  .exiro-front-page .products-track {
    gap: 20px;
  }

  .exiro-front-page .product-slide {
    flex: 0 0 85%;
    flex-direction: column;
    text-align: center;
  }

  .exiro-front-page .products-mask {
    width: 100px;
    height: 100px;
  }

  .exiro-front-page .products-arrow {
    top: 15px;
    right: 0;
  }

  .exiro-front-page .products-arrow {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 11;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .exiro-front-page .proluma-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .exiro-front-page .proluma-img {
    max-width: 300px;
  }

  .exiro-front-page .proluma-section {
    padding: 0px 20px;
    background: var(--warm-white);
  }

  .exiro-front-page .proluma-text-col p {
    margin: 0 auto 25px auto;
  }

  .exiro-front-page .blog-card {
    flex-direction: column;
  }

  .exiro-front-page .blog-image {
    flex: none;
    width: 100%;
    height: 260px;
  }

  .exiro-front-page .blog-content {
    padding: 40px 30px 80px 30px;
  }

  .exiro-front-page .blog-corner-cut {
    width: 130px;
    height: 130px;
  }

  .exiro-front-page .global-content {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
  }

  .exiro-front-page .footer-cut-mask {
    width: 150px;
    height: 150px;
  }

  .exiro-front-page .footer-arrow {
    top: 80px;
    left: 20px;
  }

  .exiro-front-page .footer-layout {
    flex-direction: column;
    padding: 150px 80px 20px 180px;
    gap: 60px;
  }

  .exiro-front-page .footer-copyright {
    margin-top: 50px;
  }

  .exiro-front-page .main-footer {
    padding: 0 20px 0;
    background: var(--warm-white);
  }

  .exiro-front-page .global-text {
    flex: 0 0 45%;
  }

  .exiro-front-page .global-image {
    flex: 1;
    position: relative;
    margin-left: calc(-50vw + 50%);
    transform: translateY(100px);
  }

  .exiro-front-page .global-text {
    margin-bottom: 0;
  }

  .exiro-front-page .footer-layout {
    flex-direction: row;
    padding: 150px 40px 20px 20px;
    gap: 60px;
  }
}

/* ==========================================================================
   PRODUCT ARCHIVE PAGE  (archive-product.php)
   Full redesign — native to ExiroMED design system
   ========================================================================== */

/* ---- Page wrapper ---- */
.exiro-products-archive {
  background: var(--warm-white);
}

/* ---- Section shell ---- */
.archive-products-section {
  padding: 72px 24px 96px;
}

.archive-products-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ---- Section header ---- */
.archive-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.archive-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--exiro-green);
  margin-bottom: 16px;
}

.archive-section-label::before,
.archive-section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--exiro-green);
  opacity: 0.45;
}

.archive-section-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.archive-section-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.75;
  color: #666;
  max-width: 580px;
  margin: 0 auto;
}

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

/* ================================================================
   PRODUCT CARD
   ================================================================ */
.archive-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--section-bg);   /* #eaeae9 — exact theme bg */
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  /* Lift on hover */
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(20, 57, 49, 0.13);
}

/* ---- Image pane ---- */
.archive-card-image {
  position: relative;
  width: 100%;
  padding-top: 72%;      /* tall portrait ratio — shows product well */
  overflow: hidden;
  background: #dedad4;   /* warm placeholder matching --section-bg darker */
}

.archive-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ---- Index badge (01, 02 …) — top-left over image ---- */
.archive-card-index {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(20, 57, 49, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 4px 12px;
  line-height: 1.6;
  z-index: 5;
}

/* ---- Brand logo badge — bottom-left over image ---- */
.archive-card-logo-wrap {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 10px;
  padding: 5px 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.archive-card-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ---- Divider line between image & body ---- */
.archive-product-card::after {
  content: none; /* reset any inherited */
}

/* ---- Card body ---- */
.archive-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

/* Product name */
.archive-card-title {
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
}

/* Short excerpt */
.archive-card-excerpt {
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.65;
  color: #666;
  margin: 0 0 20px;
  flex: 1;
  /* clamp to 3 lines */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* Bottom row: CTA link */
.archive-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 18px;
  margin-top: auto;
}

.archive-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--exiro-green);
  transition: gap 0.3s ease;
}

.archive-card-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.archive-product-card:hover .archive-card-cta {
  gap: 13px;
}

.archive-product-card:hover .archive-card-cta svg {
  transform: translateX(4px);
}

/* Small green dot accent */
.archive-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--exiro-green);
  opacity: 0.25;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.archive-product-card:hover .archive-card-dot {
  opacity: 0.7;
}

/* ================================================================
   CORNER-CUT HOVER SVG
   — Same pattern as blog-card and about-section
   ================================================================ */
.archive-card-corner {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 110px;
  height: 110px;
  z-index: 10;
  pointer-events: none;
}

.archive-card-corner-shape {
  fill: var(--warm-white);
  transition: fill 0.42s ease;
}

.archive-card-corner-content {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.archive-card-corner-text {
  font-family: 'Gotham', 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  fill: #ffffff;
  letter-spacing: 0.04em;
}

.archive-product-card:hover .archive-card-corner-shape {
  fill: var(--exiro-green);
}

.archive-product-card:hover .archive-card-corner-content {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================================
   FEATURED (first) CARD — spans 2 columns, horizontal layout
   ================================================================ */
.archive-product-card.featured {
  grid-column: span 2;
  flex-direction: row;
}

.archive-product-card.featured .archive-card-image {
  flex: 0 0 52%;
  padding-top: 0;
  min-height: 340px;
}

.archive-product-card.featured .archive-card-body {
  flex: 1;
  padding: 36px 32px 36px;
  justify-content: center;
}

.archive-product-card.featured .archive-card-title {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 14px;
}

.archive-product-card.featured .archive-card-excerpt {
  -webkit-line-clamp: 5;
}

/* ================================================================
   NO PRODUCTS / EMPTY STATE
   ================================================================ */
.archive-no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 100px 24px;
  color: #888;
}

.archive-no-products svg {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: block;
  opacity: 0.3;
}

.archive-no-products p {
  font-size: 18px;
  font-weight: 400;
}

/* ================================================================
   PAGINATION
   ================================================================ */
.archive-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

/* ================================================================
   CONTACT CTA SECTION
   ================================================================ */
.archive-contact-cta {
  padding: 0 24px 96px;
}

.archive-cta-box {
  position: relative;
  background: var(--exiro-green);
  border-radius: 32px;
  padding: 64px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
}

/* Decorative circles */
.archive-cta-box::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  top: -180px;
  right: -120px;
  pointer-events: none;
}

.archive-cta-box::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  bottom: -80px;
  left: 10%;
  pointer-events: none;
}

.archive-cta-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

.archive-cta-text span {
  display: block;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.archive-cta-text p {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

/* CTA Button */
.archive-cta-btn-wrap {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.archive-cta-box button {
  outline: none;
  cursor: pointer;
  border: none;
  min-width: 210px;
  height: 58px;
  padding: 0 34px;
  font-family: inherit;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.03em;
  font-weight: 700;
  border-radius: 500px;
  background: #fff;
  color: var(--exiro-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive-cta-box button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.archive-cta-box button span.mont {
  position: relative;
  z-index: 10;
}

.archive-cta-box button img {
  height: 16px;
  width: auto;
  filter: invert(24%) sepia(47%) saturate(464%) hue-rotate(121deg) brightness(85%) contrast(92%);
}

.archive-cta-box .radius {
  display: none;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .archive-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

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

@media (max-width: 860px) {
  .archive-product-card.featured {
    grid-column: span 1;
    flex-direction: column;
  }

  .archive-product-card.featured .archive-card-image {
    flex: none;
    padding-top: 65%;
    min-height: auto;
  }
}

@media (max-width: 768px) {
