/* Homepage — extends service-eficient tokens via shared classes */

/* ============================
HERO
============================ */
.se-page--home .hero {
  min-height: clamp(500px, 70vh, 720px);
}

.se-page--home .home-hero-visual {
  background:
    linear-gradient(135deg, rgba(15, 26, 20, 0.72), rgba(53, 127, 51, 0.55)),
    url('../../../../image/theme/banner/landing-banner-m.jpg') center/cover no-repeat;
}

#sectionIndustries {
  scroll-margin-top: 100px;
}

@media (max-width: 640px) {
  .se-page--home .home-hero-visual {
    background-image:
      linear-gradient(135deg, rgba(15, 26, 20, 0.78), rgba(53, 127, 51, 0.6)),
      url('../../../../image/theme/banner/landing-banner-s.jpg');
  }
}

/* ============================
INDUSTRIES SECTION
============================ */
.home-industries {
  --eet-green: #4ba248;
  --eet-green-dark: #3d8a3a;
  --eet-green-50: #ecf7eb;
  --eet-yellow: #fdce2b;
  --eet-yellow-dark: #e6b81b;
  --ink-900: #0f1a14;
  --ink-700: #34423a;
  --ink-500: #5c6b62;
  --line: #e3e8e4;
  --bg-soft: #f6f8f5;
  --shadow-sm: 0 1px 2px rgba(15, 26, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 26, 20, 0.1);
  --shadow-lg: 0 16px 40px rgba(15, 26, 20, 0.14);
  --radius-lg: 16px;
  --radius-md: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  position: relative;
  overflow: hidden;
  width: 100%;
  background:
    radial-gradient(ellipse 75% 55% at 0% 0%, rgba(75, 162, 72, 0.14), transparent 58%),
    radial-gradient(ellipse 70% 50% at 100% 15%, rgba(253, 206, 43, 0.16), transparent 52%),
    linear-gradient(180deg, var(--bg-soft) 0%, #fff 72%);
  border-top: 1px solid var(--line);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink-900);
}

.home-industries::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(75, 162, 72, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 162, 72, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.home-industries .row.column.padding {
  position: relative;
  z-index: 1;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  max-width: 75rem;
  margin: 0 auto;
  float: none;
}

.home-industries__head.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.home-industries .section-eyebrow {
  color: var(--eet-green-dark);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: inline-block;
  font-family: 'Manrope', 'Inter', sans-serif;
}

.home-industries__head h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
  color: var(--ink-900);
}

.home-industries__head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
}

.home-industries__scroll {
  margin-bottom: 2.5rem;
}

.home-industries__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-industries__hint {
  display: none;
  margin: 14px 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}

/* Industry category cards — punchy gradient hero + footer meta */
.home-industry-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.home-industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--eet-green), var(--eet-yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  z-index: 4;
}

.home-industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(75, 162, 72, 0.35);
}

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

.home-industry-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-900);
}

.home-industry-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.home-industry-card:hover .home-industry-card__visual img {
  transform: scale(1.08);
}

.home-industry-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s var(--ease);
}

.home-industry-card--green .home-industry-card__overlay {
  background:
    linear-gradient(125deg, rgba(75, 162, 72, 0.72) 0%, rgba(75, 162, 72, 0.15) 42%, transparent 68%),
    linear-gradient(to top, rgba(15, 26, 20, 0.82) 0%, rgba(15, 26, 20, 0.35) 38%, transparent 72%);
}

.home-industry-card--warm .home-industry-card__overlay {
  background:
    linear-gradient(125deg, rgba(253, 206, 43, 0.65) 0%, rgba(230, 184, 27, 0.12) 42%, transparent 68%),
    linear-gradient(to top, rgba(15, 26, 20, 0.82) 0%, rgba(15, 26, 20, 0.35) 38%, transparent 72%);
}

.home-industry-card:hover .home-industry-card__overlay {
  opacity: 0.92;
}

.home-industry-card__icon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(15, 26, 20, 0.25);
  transition: transform 0.28s var(--ease);
}

.home-industry-card--green .home-industry-card__icon {
  background: linear-gradient(145deg, var(--eet-green) 0%, var(--eet-green-dark) 100%);
}

.home-industry-card--warm .home-industry-card__icon {
  background: linear-gradient(145deg, var(--eet-yellow) 0%, var(--eet-yellow-dark) 100%);
}

.home-industry-card:hover .home-industry-card__icon {
  transform: scale(1.06);
}

.home-industry-card__icon svg {
  width: 28px !important;
  height: 28px !important;
  fill: #fff !important;
  color: #fff;
}

.home-industry-card--warm .home-industry-card__icon svg {
  fill: var(--ink-900) !important;
  color: var(--ink-900);
}

.home-industry-card__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 18px 18px 20px;
  text-align: left;
}

.home-industry-card h3 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.25px;
  margin: 0;
  color: var(--ink-900);
  transition: color 0.2s var(--ease);
}

.home-industry-card:hover h3 {
  color: var(--eet-green-dark);
}

.home-industry-card__desc {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-700);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-industry-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.home-industry-card__count {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  background: var(--eet-green-50);
  color: var(--eet-green-dark);
  border: 1px solid rgba(75, 162, 72, 0.2);
}

.home-industry-card--warm .home-industry-card__count {
  background: rgba(253, 206, 43, 0.2);
  color: #8a6f00;
  border-color: rgba(253, 206, 43, 0.45);
}

.home-industry-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--eet-green-dark);
  white-space: nowrap;
  transition: transform 0.25s var(--ease), color 0.2s var(--ease);
}

.home-industry-card__cta::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.home-industry-card:hover .home-industry-card__cta {
  color: var(--eet-green);
}

.home-industry-card:hover .home-industry-card__cta::after {
  transform: translateX(4px);
}

/* Partner banners — Echipamente reciclare + Mașini de mână (mobile-first) */
#sectionIndustries .home-partner-banners {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
  width: 100%;
}

#sectionIndustries .home-partner-banner {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 26, 20, 0.12);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

#sectionIndustries .home-partner-banner:hover {
  box-shadow: 0 18px 40px rgba(15, 26, 20, 0.16);
}

#sectionIndustries .home-partner-banner--recycle {
  background: linear-gradient(135deg, #5bc45d 0%, #4ba248 100%);
  color: #fff;
}

#sectionIndustries .home-partner-banner--tools {
  background: linear-gradient(135deg, #ffc107 0%, #ffd54f 100%);
  color: #0f1a14;
}

#sectionIndustries .home-partner-banner__media {
  order: -1;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 200px;
  min-height: 0;
  overflow: hidden;
  flex-shrink: 0;
}

#sectionIndustries .home-partner-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

#sectionIndustries .home-partner-banner:hover .home-partner-banner__media img {
  transform: scale(1.04);
}

#sectionIndustries .home-partner-banner--recycle .home-partner-banner__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(75, 162, 72, 0.35));
  pointer-events: none;
}

#sectionIndustries .home-partner-banner--tools .home-partner-banner__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(255, 193, 7, 0.35));
  pointer-events: none;
}

#sectionIndustries .home-partner-banner__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 16px 20px;
  min-width: 0;
}

#sectionIndustries .home-partner-banner__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

#sectionIndustries .home-partner-banner__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(15, 26, 20, 0.12);
}

#sectionIndustries .home-partner-banner__icon svg {
  width: 28px;
  height: 28px;
  max-width: 100%;
  max-height: 100%;
}

#sectionIndustries .home-partner-banner__titles {
  flex: 1;
  min-width: 0;
}

#sectionIndustries .home-partner-banner__titles h3 {
  margin: 0 0 4px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(20px, 5.2vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: inherit;
}

#sectionIndustries .home-partner-banner--recycle .home-partner-banner__titles h3 {
  color: #fff;
}

#sectionIndustries .home-partner-banner--tools .home-partner-banner__titles h3 {
  color: #0f1a14;
}

#sectionIndustries .home-partner-banner__stat {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.92;
}

#sectionIndustries .home-partner-banner--recycle .home-partner-banner__stat {
  color: rgba(255, 255, 255, 0.9);
}

#sectionIndustries .home-partner-banner--tools .home-partner-banner__stat {
  color: #34423a;
}

#sectionIndustries .home-partner-banner__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

#sectionIndustries .home-partner-banner--recycle .home-partner-banner__text {
  color: rgba(255, 255, 255, 0.92);
}

#sectionIndustries .home-partner-banner--tools .home-partner-banner__text {
  color: #2a3d32;
  font-weight: 500;
}

#sectionIndustries .home-partner-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease, gap 0.2s ease;
}

#sectionIndustries .home-partner-banner__cta svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

#sectionIndustries .home-partner-banner__cta--light {
  background: #fff;
  color: #4ba248;
}

#sectionIndustries .home-partner-banner__cta--light:hover {
  background: #f3f6f4;
  color: #3d8a3a;
  transform: translateY(-1px);
  text-decoration: none !important;
}

#sectionIndustries .home-partner-banner__cta--dark {
  background: #0f1a14;
  color: #fff;
}

#sectionIndustries .home-partner-banner__cta--dark:hover {
  background: #1a2b22;
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none !important;
}

@media (min-width: 640px) {
  #sectionIndustries .home-partner-banners {
    gap: 24px;
    margin-top: 2.5rem;
  }

  #sectionIndustries .home-partner-banner__body {
    padding: 22px 22px 24px;
  }

  #sectionIndustries .home-partner-banner__icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }

  #sectionIndustries .home-partner-banner__media {
    max-height: 220px;
  }

  #sectionIndustries .home-partner-banner__cta {
    width: auto;
    align-self: flex-start;
  }
}

@media (min-width: 768px) {
  #sectionIndustries .home-partner-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
  }

  #sectionIndustries .home-partner-banner__media {
    order: 0;
    max-height: none;
    min-height: 260px;
    aspect-ratio: auto;
  }

  #sectionIndustries .home-partner-banner__body {
    padding: 32px 28px 32px 36px;
    justify-content: center;
  }

  #sectionIndustries .home-partner-banner__head {
    margin-bottom: 16px;
  }

  #sectionIndustries .home-partner-banner__icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  #sectionIndustries .home-partner-banner__text {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  #sectionIndustries .home-partner-banner__body {
    padding: 40px 36px 40px 48px;
  }

  #sectionIndustries .home-partner-banner__media {
    min-height: 300px;
  }
}

/* #sectionCompany — styles in company-eficient.css (.co-values) */

/* ============================
HOME PRODUCT SHOWCASES (viewed)
============================ */
#sectionViewProduct.home-viewed {
  --eet-green: #4ba248;
  --eet-green-dark: #3d8a3a;
  --eet-green-deep: #2d6b2b;
  --eet-yellow: #fdce2b;
  --eet-yellow-dark: #e6b81b;
  --ink-900: #0f1a14;

  position: relative;
  float: none;
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: none;
  font-family: 'Inter', system-ui, sans-serif;
  color: #fff;
}

/* Deeper band — better contrast for white / yellow text (showcase) */
#sectionViewProduct.home-viewed {
  --eet-green-deep: #152218;
  --eet-green-dark: #1b3d1a;
  background:
    radial-gradient(ellipse 88% 68% at 100% 0%, rgba(253, 206, 43, 0.11), transparent 54%),
    radial-gradient(ellipse 72% 58% at 0% 100%, rgba(75, 162, 72, 0.14), transparent 52%),
    linear-gradient(
      155deg,
      var(--ink-900) 0%,
      #0f1a14 18%,
      var(--eet-green-deep) 42%,
      var(--eet-green-dark) 72%,
      #234f24 100%
    );
}

#sectionViewProduct.home-viewed::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

#sectionViewProduct.home-viewed::before {
  opacity: 0.2;
}

#sectionViewProduct.home-viewed .home-viewed__inner {
  position: relative;
  z-index: 1;
}

#sectionViewProduct.home-viewed h2,
#sectionViewProduct.home-viewed .home-viewed__head h2 {
  color: #fff;
}

.home-viewed__inner .row.column.padding,
.home-new-glass__inner .row.column.padding {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  max-width: 75rem;
  margin: 0 auto;
  float: none;
}

.home-viewed__head.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.home-viewed__head h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(15, 26, 20, 0.15);
}

.home-viewed__head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================
#sectionViewProduct — Grid Editorial showcase (Alt 1 → EET)
============================ */
#sectionViewProduct.home-viewed--showcase .home-viewed__stripe {
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--eet-yellow) 18%,
    #ffe270 50%,
    var(--eet-yellow) 82%,
    transparent 100%
  );
}

#sectionViewProduct.home-viewed--showcase .home-viewed__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px 32px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

#sectionViewProduct.home-viewed--showcase .home-viewed__header-main {
  min-width: 0;
}

#sectionViewProduct.home-viewed--showcase .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--eet-yellow);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

#sectionViewProduct.home-viewed--showcase .section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--eet-yellow);
  flex-shrink: 0;
}

#sectionViewProduct.home-viewed--showcase .home-viewed__header h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
  text-align: left;
  text-shadow: none;
}

#sectionViewProduct.home-viewed--showcase .home-viewed__header-meta {
  text-align: right;
  flex-shrink: 0;
}

#sectionViewProduct.home-viewed--showcase .home-viewed__meta-num {
  display: block;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  color: var(--eet-yellow);
}

#sectionViewProduct.home-viewed--showcase .home-viewed__meta-label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

#sectionViewProduct.home-viewed--showcase .home-viewed__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

#sectionViewProduct.home-viewed--showcase .home-viewed__grid-item {
  min-width: 0;
  display: flex;
}

/* Showcase product card */
#sectionViewProduct.home-viewed--showcase .home-showcase-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  color: #fff;
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(253, 206, 43, 0.38);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  color: #fff;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(15, 26, 20, 0.5);
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card--featured .home-showcase-card__visual {
  aspect-ratio: auto;
  flex: 1 1 auto;
  min-height: 260px;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card:hover .home-showcase-card__visual img {
  transform: scale(1.06);
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 26, 20, 0.88) 0%,
    rgba(15, 26, 20, 0.35) 42%,
    transparent 72%
  );
  pointer-events: none;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 6px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__badge--nou {
  background: var(--eet-yellow) !important;
  color: var(--ink-900) !important;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__badge--recomandat {
  background: var(--eet-green) !important;
  color: #fff !important;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 22px 22px 24px;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card--featured .home-showcase-card__body {
  padding: 26px 26px 28px;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7dd99a;
  margin-bottom: 8px;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.28;
  color: #fff;
  margin: 0 0 10px;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card--featured .home-showcase-card__title {
  font-size: 22px;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 14px;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__spec {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 4px 10px;
  border-radius: 999px;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__price {
  margin: 0 0 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__price-value {
  font-weight: 700;
  color: var(--eet-yellow);
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--eet-yellow);
  color: var(--ink-900);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(253, 206, 43, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

#sectionViewProduct.home-viewed--showcase .home-showcase-card:hover .home-showcase-card__cta {
  background: var(--eet-yellow-dark);
  transform: translateX(3px);
}

#sectionViewProduct.home-viewed--showcase .home-viewed__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#sectionViewProduct.home-viewed--showcase .home-viewed__footer-copy {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

#sectionViewProduct.home-viewed--showcase .home-viewed__footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 10px;
  background: var(--eet-yellow);
  color: var(--ink-900);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(253, 206, 43, 0.32);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

#sectionViewProduct.home-viewed--showcase .home-viewed__footer-cta:hover {
  background: #ffe270;
  color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(253, 206, 43, 0.42);
}

@media (min-width: 900px) {
  #sectionViewProduct.home-viewed--showcase .home-viewed__grid {
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  #sectionViewProduct.home-viewed--showcase .home-viewed__grid-item.is-featured {
    grid-row: span 2;
  }

  #sectionViewProduct.home-viewed--showcase .home-viewed__grid:not(:has(.home-viewed__grid-item:nth-child(3))) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  #sectionViewProduct.home-viewed--showcase .home-viewed__grid:not(:has(.home-viewed__grid-item:nth-child(3))) .home-viewed__grid-item.is-featured {
    grid-row: span 1;
  }

  #sectionViewProduct.home-viewed--showcase .home-viewed__grid:not(:has(.home-viewed__grid-item:nth-child(2))) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #sectionViewProduct.home-viewed--showcase .home-viewed__header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 28px;
  }

  #sectionViewProduct.home-viewed--showcase .home-viewed__header-meta {
    text-align: left;
  }

  #sectionViewProduct.home-viewed--showcase .home-viewed__header h2 {
    font-size: clamp(26px, 7vw, 34px);
  }

  #sectionViewProduct.home-viewed--showcase .home-showcase-card--featured .home-showcase-card__visual {
    min-height: 220px;
  }

  #sectionViewProduct.home-viewed--showcase .home-viewed__footer {
    flex-direction: column;
    align-items: stretch;
    margin-top: 36px;
  }

  #sectionViewProduct.home-viewed--showcase .home-viewed__footer-cta {
    justify-content: center;
  }
}

/* ============================
#sectionNewProduct — Glass Premium (Alt 2 → EET, mobile-first)
============================ */
#sectionNewProduct.home-new--glass {
  --eet-green: #4ba248;
  --eet-green-dark: #3d8a3a;
  --eet-green-deep: #1a3d1a;
  --eet-yellow: #fdce2b;
  --eet-yellow-dark: #e6b81b;
  --ink-900: #0f1a14;

  position: relative;
  float: none;
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: none;
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(75, 162, 72, 0.28), transparent 58%),
    radial-gradient(ellipse 60% 90% at 0% 100%, rgba(61, 122, 58, 0.75), transparent 52%),
    linear-gradient(155deg, #0f1a14 0%, var(--eet-green-deep) 38%, var(--eet-green-dark) 72%, var(--eet-green) 100%);
}

#sectionNewProduct.home-new--glass::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.home-new-glass__inner {
  position: relative;
  z-index: 1;
}

#sectionNewProduct.home-new--glass .home-new-glass__inner .row.column.padding {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.home-new-glass__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.home-new-glass__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eet-yellow);
  background: rgba(253, 206, 43, 0.12);
  border: 1px solid rgba(253, 206, 43, 0.28);
  padding: 6px 14px;
  border-radius: 999px;
}

.home-new-glass__header h2 {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
}

.home-new-glass__sub {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  max-width: 36rem;
}

.home-new-glass__header-meta {
  align-self: flex-start;
  text-align: left;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 16px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-new-glass__meta-num {
  display: block;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--eet-yellow);
}

.home-new-glass__meta-label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.home-new-glass__scroll-wrap {
  margin: 0 -1rem;
  padding: 0 1rem;
}

.home-new-glass__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(253, 206, 43, 0.35) transparent;
  padding: 6px 2px 20px;
}

.home-new-glass__track::-webkit-scrollbar {
  height: 4px;
}

.home-new-glass__track::-webkit-scrollbar-thumb {
  background: rgba(253, 206, 43, 0.35);
  border-radius: 2px;
}

.home-new-glass__track-item {
  flex: 0 0 min(88vw, 300px);
  scroll-snap-align: start;
  min-width: 0;
}

.home-new-glass__hint {
  display: block;
  margin: 4px 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.home-glass-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none !important;
  color: #fff;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.22, 0.68, 0, 1.2), border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  z-index: 2;
  pointer-events: none;
}

.home-glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(253, 206, 43, 0.35);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  text-decoration: none !important;
  color: #fff;
}

.home-glass-card__visual {
  position: relative;
  width: 100%;
  height: 168px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(75, 162, 72, 0.15));
}

.home-glass-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.home-glass-card:hover .home-glass-card__visual img {
  transform: scale(1.05);
}

.home-glass-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(15, 26, 20, 0.55));
  pointer-events: none;
}

.home-glass-card__index {
  position: absolute;
  left: 14px;
  bottom: 10px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.home-glass-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-glass-card__badge--nou {
  background: var(--eet-yellow) !important;
  color: var(--ink-900) !important;
}

.home-glass-card__badge--recomandat {
  background: var(--eet-green) !important;
  color: #fff !important;
}

.home-glass-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
}

.home-glass-card__brand {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fd48c;
  margin-bottom: 6px;
}

.home-glass-card__title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 8px;
}

.home-glass-card__desc {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-glass-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.home-glass-card__spec {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 9px;
  border-radius: 999px;
}

.home-glass-card__price {
  margin: 0 0 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.home-glass-card__price-value {
  font-weight: 700;
  color: var(--eet-yellow);
}

.home-glass-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(253, 206, 43, 0.35);
  background: rgba(253, 206, 43, 0.1);
  color: var(--eet-yellow);
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.home-glass-card:hover .home-glass-card__cta {
  background: rgba(253, 206, 43, 0.18);
  border-color: rgba(253, 206, 43, 0.55);
}

.home-new-glass__footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.home-new-glass__footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid rgba(253, 206, 43, 0.45);
  background: transparent;
  color: var(--eet-yellow);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-new-glass__footer-cta:hover {
  background: rgba(253, 206, 43, 0.1);
  border-color: var(--eet-yellow);
  color: var(--eet-yellow);
  transform: translateY(-2px);
  text-decoration: none;
}

@media (min-width: 640px) {
  #sectionNewProduct.home-new--glass .home-new-glass__inner .row.column.padding {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .home-new-glass__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px 32px;
    margin-bottom: 36px;
  }

  .home-new-glass__header-meta {
    align-self: auto;
    text-align: right;
    flex-shrink: 0;
  }

  .home-new-glass__meta-num {
    font-size: 48px;
  }

  .home-new-glass__track-item {
    flex: 0 0 300px;
  }

  .home-glass-card__visual {
    height: 190px;
  }

  .home-new-glass__hint {
    display: none;
  }
}

@media (min-width: 1024px) {
  .home-new-glass__scroll-wrap {
    margin: 0;
    padding: 0;
  }

  .home-new-glass__track {
    gap: 22px;
    padding-bottom: 12px;
  }
}

/* ============================
RESPONSIVE
============================ */
@media (max-width: 1024px) {
  #sectionIndustries .home-industries__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  #sectionIndustries .home-industry-card__visual {
    aspect-ratio: 16 / 11;
  }

}

@media (max-width: 768px) {
  #sectionIndustries .row.column.padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #sectionIndustries .home-industries__scroll {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 2rem;
  }

  #sectionIndustries .home-industries__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
  }

  #sectionIndustries .home-industries__grid::-webkit-scrollbar {
    display: none;
  }

  #sectionIndustries .home-industry-card {
    flex: 0 0 min(84vw, 320px);
    scroll-snap-align: start;
    min-height: 0;
  }

  #sectionIndustries .home-industry-card__visual {
    aspect-ratio: 16 / 11;
  }

  #sectionIndustries .home-industry-card__content {
    padding: 16px 16px 18px;
  }

  #sectionIndustries .home-industry-card h3 {
    font-size: 16px;
  }

  #sectionIndustries .home-industries__hint {
    display: block;
  }
}

@media (max-width: 640px) {

  .home-viewed__inner .row.column.padding,
  #sectionNewProduct.home-new--glass .home-new-glass__inner .row.column.padding {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .home-viewed__head.section-head {
    margin-bottom: 28px;
  }

  .home-new-glass__footer-cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* ============================
NEWSLETTER (homepage)
============================ */
.home-newsletter.newsletter {
  display: block;
}

.home-newsletter {
  --eet-green: #4ba248;
  --eet-green-dark: #3d8a3a;
  --eet-yellow: #fdce2b;
  --eet-yellow-dark: #e6b81b;
  --ink-900: #0f1a14;
  --ink-700: #34423a;
  --line: #e3e8e4;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-lg: 0 16px 40px rgba(15, 26, 20, 0.18);

  position: relative;
  float: none;
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  font-family: 'Manrope', system-ui, sans-serif;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(253, 206, 43, 0.2), transparent 55%),
    radial-gradient(ellipse 70% 55% at 100% 100%, rgba(75, 162, 72, 0.28), transparent 60%),
    linear-gradient(135deg, #0f1a14 0%, #1b3d1a 55%, #2d6b2b 100%);
}

.home-newsletter.row,
.home-newsletter.column,
.home-newsletter.expanded {
  max-width: none;
  padding: 0;
}

.home-newsletter__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
}

.home-newsletter__inner {
  position: relative;
  z-index: 1;
  max-width: 75rem;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  box-sizing: border-box;
}

.home-newsletter__panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.home-newsletter__copy .section-eyebrow {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--eet-yellow);
  margin-bottom: 14px;
}

.home-newsletter__copy h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #fff;
}

.home-newsletter__copy p {
  margin: 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.6;
  color: #c5d1c8;
}

.home-newsletter__form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  color: var(--ink-900);
  box-shadow: var(--shadow-lg);
}

.home-newsletter__form {
  margin: 0;
  max-width: none;
}

.home-newsletter__label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 10px;
}

.home-newsletter__fields {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.home-newsletter__input {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: #fff;
  box-shadow: none;
  height: auto;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-newsletter__input::placeholder {
  color: #9aae9f;
}

.home-newsletter__input:focus {
  outline: none;
  border-color: var(--eet-green);
  box-shadow: 0 0 0 4px rgba(75, 162, 72, 0.15);
}

.home-newsletter__submit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  background: var(--eet-yellow);
  color: var(--ink-900);
  box-shadow: 0 6px 16px rgba(253, 206, 43, 0.45);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-newsletter__submit:hover {
  background: var(--eet-yellow-dark);
  transform: translateY(-2px);
}

.home-newsletter__success.form-feedback {
  display: none;
  text-align: center;
  padding: 8px 0 2px;
}

.home-newsletter__success.form-feedback p {
  margin: 12px 0 0;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink-900);
}

.home-newsletter__success .checkmark__circle {
  stroke: var(--eet-green);
}

.home-newsletter .text-overlay,
.home-newsletter .background-overlayed {
  display: none !important;
}

@media (max-width: 900px) {
  .home-newsletter__panel {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .home-newsletter__inner {
    padding: 2.75rem 1rem;
  }
}

@media (max-width: 600px) {
  .home-newsletter__fields {
    flex-direction: column;
  }

  .home-newsletter__submit {
    width: 100%;
  }

  .home-newsletter__form-wrap {
    padding: 22px 18px 20px;
  }
}
