:root {
  --green: #2d6a4f;
  --green-light: #52b788;
  --green-pale: #d8f3dc;
  --gold: #e9c46a;
  --dark: #1a1f1c;
  --mid: #2e3830;
  --light: #f8faf9;
  --text: #1a1f1c;
  --muted: #5a6662;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--light);
  color: var(--text);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 13px;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: var(--green-light);
  text-decoration: none;
}

.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar-badge {
  background: var(--green);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
}

/* ── HEADER ── */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--green);
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.logo-leaf {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 50% 0 50% 50%;
  transform: rotate(-45deg);
  display: inline-block;
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover {
  background: var(--green-pale);
  color: var(--green);
}

.nav-link .arrow {
  font-size: 10px;
  opacity: .6;
}

/* dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 10px;
  z-index: 200;
  border: 1px solid #e8ede9;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 13.5px;
  border-radius: 8px;
  transition: background .15s;
}

.dropdown a:hover {
  background: var(--green-pale);
  color: var(--green);
}

.dropdown-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* mega dropdown */
.mega-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: -100px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 680px;
  padding: 20px;
  z-index: 200;
  border: 1px solid #e8ede9;
}

.nav-item:hover .mega-dropdown {
  display: block;
}

.mega-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.mega-dropdown a {
  display: block;
  padding: 7px 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  border-radius: 6px;
  transition: background .15s;
}

.mega-dropdown a:hover {
  background: var(--green-pale);
  color: var(--green);
}

.mega-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--muted);
  text-transform: uppercase;
  padding: 0 12px 8px;
  border-bottom: 1px solid #e8ede9;
  margin-bottom: 8px;
  grid-column: 1/-1;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: #1e5138;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(45, 106, 79, .35);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}

.btn-gold:hover {
  background: #d4a843;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(233, 196, 106, .4);
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(82, 183, 136, .15) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(45, 106, 79, .2) 0%, transparent 50%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 183, 136, .15);
  border: 1px solid rgba(82, 183, 136, .3);
  color: var(--green-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .3px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-title span {
  color: var(--green-light);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .5px;
  margin-top: 2px;
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: transform .3s, background .3s;
  cursor: pointer;
  text-align: center;
}

.hero-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-3px);
}

.hero-card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.hero-card-count {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-top: 3px;
}

.hero-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(82, 183, 136, .2), rgba(45, 106, 79, .3));
  border-color: rgba(82, 183, 136, .4);
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.featured-badge {
  background: var(--green-light);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* ── TICKER ── */
.ticker {
  background: var(--green);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
  gap: 0;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, .5);
  border-radius: 50%;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── TRUST BADGES ── */
.trust {
  background: var(--white);
  padding: 28px 40px;
  border-bottom: 1px solid #e8ede9;
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.trust-text span {
  font-size: 12px;
  color: var(--muted);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: #e8ede9;
}

/* ── SECTION ── */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: .5px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e8ede9;
  transition: box-shadow .3s, transform .3s;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  display: block;
}

.product-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  transform: translateY(-3px);
}

.product-img {
  aspect-ratio: 1;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, .06));
}

.product-info {
  padding: 14px;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-cta {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-cta::after {
  content: '→';
}

/* ── WHY CHOOSE US ── */
.why-section {
  background: var(--dark);
  padding: 80px 0;
}

.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-label {
  color: var(--green-light);
}

.why-section .section-sub {
  color: rgba(255, 255, 255, .55);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 28px;
  transition: background .3s, transform .3s;
}

.why-card:hover {
  background: rgba(82, 183, 136, .1);
  border-color: rgba(82, 183, 136, .3);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(82, 183, 136, .15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

.why-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
}

/* ── FINISHES ── */
.finishes-section {
  background: var(--light);
  padding: 80px 0;
}

.finishes-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.finishes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.finish-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid #e8ede9;
  transition: border-color .3s, box-shadow .3s;
  cursor: pointer;
}

.finish-card:hover {
  border-color: var(--green-light);
  box-shadow: 0 4px 20px rgba(82, 183, 136, .2);
}

.finish-swatch {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 14px;
}

.finish-name {
  font-size: 13px;
  font-weight: 600;
}

/* ── QUOTE FORM ── */
.quote-section {
  background: linear-gradient(135deg, var(--green) 0%, #1e5138 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, .06) 0%, transparent 60%);
}

.quote-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.quote-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4vw, 56px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.quote-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.quote-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
}

.check {
  color: var(--green-light);
  font-size: 16px;
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .3px;
  text-align: left;
}

.form-input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #e0e7e3;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  background: var(--light);
  width: 100%;
}

.form-input:focus {
  border-color: var(--green-light);
  background: var(--white);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6662' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border-radius: 50px;
  margin-top: 6px;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #e8ede9;
  position: relative;
}

.stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
}

.author-biz {
  font-size: 12px;
  color: var(--muted);
}

.quote-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 60px;
  color: var(--green-pale);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ── BLOG ── */
.blog-section {
  padding: 80px 0;
}

.blog-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e8ede9;
  transition: box-shadow .3s, transform .3s;
  text-decoration: none;
  color: var(--text);
  display: block;
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.blog-img {
  aspect-ratio: 16/9;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.blog-body {
  padding: 20px;
}

.blog-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  text-align: left;
}

.blog-excerpt {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  text-align: left;
}

.blog-footer {
  padding: 14px 20px;
  border-top: 1px solid #e8ede9;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .55);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  color: var(--green-light);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: left;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s;
  cursor: pointer;
  color: var(--white);
}

.social-btn:hover {
  background: var(--green);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: left;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
  text-align: left;
}

.footer-col a:hover {
  color: var(--green-light);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  margin-bottom: 12px;
  text-align: left;
}

.footer-contact-icon {
  color: var(--green-light);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--green-light);
}

/* ── NEWSLETTER ── */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.newsletter-input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50px;
  color: var(--white);
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, .35);
}

.newsletter-input:focus {
  border-color: var(--green-light);
}

.newsletter-btn {
  padding: 10px 20px;
  background: var(--green-light);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s;
  font-family: 'Outfit', sans-serif;
}

.newsletter-btn:hover {
  background: #3da573;
}

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .65);
}

/* animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp .6s ease both;
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .2s;
}

.delay-3 {
  animation-delay: .3s;
}

.delay-4 {
  animation-delay: .4s;
}

/* ── EXTRA UI COMPONENT FOR DETAILS ── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.product-image-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e8ede9;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.2;
}

.product-image-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}

.product-gallery img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1.5px solid #e8ede9;
  cursor: pointer;
  transition: border-color .2s;
}

.product-gallery img:hover {
  border-color: var(--green);
}

.product-info-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e8ede9;
  padding: 30px;
}

.product-info-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-price {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}

.badge-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.status-visible {
  background: var(--green-pale);
  color: var(--green);
}

.status-hidden {
  background: #fbe9e7;
  color: #d84315;
}

.info-box {
  background: var(--white);
  border: 1px solid #e8ede9;
  border-radius: var(--radius);
  padding: 24px;
}

.info-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── PAGINATION ── */
.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 8px;
  justify-content: center;
}

.page-item .page-link {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid #e8ede9;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: all .2s;
  background: var(--white);
}

.page-item.active .page-link,
.page-item .page-link:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ── HOMEPAGE PRODUCTS SECTION ── */
.home-products-section {
  padding: 80px 0;
  background: var(--bg);
}

.homepage-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.dimentions_row {
  display: flex;
}