/* ========== JENUTS ORGANICA – ABOUT PAGE STYLES ========== */

/* Brand Palette */
:root {
  --jenuts-primary: #334a14;
  --jenuts-secondary: #a67610;
  --jenuts-gold: #c69e3b;
  --jenuts-dark: #1a1a1a;
  --jenuts-light: #f9f7f2;
  --jenuts-white: #ffffff;
  --jenuts-text: #2d2d2d;
  --jenuts-muted: #5c5c5c;
  --jenuts-radius: 16px;
  --jenuts-shadow: 0 8px 30px rgba(0,0,0,0.04);
  --jenuts-shadow-hover: 0 16px 45px rgba(0,0,0,0.08);
}

/* ---- Breadcrumb ---- */
.jenuts-breadcrumb {
  background: linear-gradient(135deg, rgba(51,74,20,0.92) 0%, rgba(10,10,10,0.9) 100%),
              url('../img/breadcrumb-about.jpg') center/cover no-repeat;
  padding: 90px 0 70px;
  color: #fff;
  text-align: center;
}
.jenuts-breadcrumb .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.jenuts-breadcrumb h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.jenuts-breadcrumb ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  opacity: 0.9;
}
.jenuts-breadcrumb ul li a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.jenuts-breadcrumb ul li a:hover { color:var(--jenuts-gold); }

/* ---- About Intro ---- */
.about-intro {
  padding: 100px 0;
  background: #fff;
}
.about-intro .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-intro .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}
.about-intro .col-lg-6 {
  flex: 1 1 500px;
}

/* Image Grid */
.about-image-grid {
  position: relative;
  display: inline-block;
  max-width: 520px;
}
.img-main img {
  width: 100%;
  border-radius: var(--jenuts-radius);
  box-shadow: var(--jenuts-shadow);
  display: block;
}
.img-float {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 60%;
  border: 5px solid #fff;
  border-radius: var(--jenuts-radius);
  box-shadow: var(--jenuts-shadow-hover);
  overflow: hidden;
}
.img-float img {
  width: 100%;
  display: block;
  border-radius: calc(var(--jenuts-radius) - 5px);
}
.experience-badge {
  position: absolute;
  top: 25px;
  right: -20px;
  background: var(--jenuts-primary);
  color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(51,74,20,0.35);
  font-weight: 700;
  z-index: 2;
}
.experience-badge .num {
  font-size: 1.8rem;
  line-height: 1;
}
.experience-badge .txt {
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
}

/* About Text */
.about-text .section-tag {
  display: inline-block;
  background: rgba(51,74,20,0.08);
  color: var(--jenuts-primary);
  padding: 6px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-text h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--jenuts-dark);
  margin-bottom: 22px;
}
.about-text .lead {
  font-size: 1.1rem;
  color: var(--jenuts-muted);
  line-height: 1.7;
  margin-bottom: 15px;
}
.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}
.btn-primary-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--jenuts-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  margin-top: 10px;
  box-shadow: 0 8px 20px rgba(51,74,20,0.25);
}
.btn-primary-download:hover {
  background: var(--jenuts-secondary);
  transform: translateY(-2px);
}

/* ---- Founder / MD Section ---- */
.md-section {
  padding: 80px 0;
  background: var(--jenuts-light);
}
.md-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}
.md-photo {
  flex: 0 0 360px;
}
.md-photo img {
  width: 100%;
  border-radius: var(--jenuts-radius);
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}
.md-message blockquote {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.8;
  color: #333;
  border-left: 5px solid var(--jenuts-primary);
  padding-left: 35px;
  margin: 0 0 25px;
  position: relative;
}
.md-message blockquote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--jenuts-primary);
  position: absolute;
  left: -25px;
  top: -35px;
  opacity: 0.12;
}
.md-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--jenuts-dark);
  margin-bottom: 5px;
}
.md-role {
  color: var(--jenuts-muted);
  font-size: 1rem;
  margin-bottom: 10px;
}
.md-signature {
  font-family: 'Brush Script MT', cursive;
  font-size: 1.8rem;
  color: var(--jenuts-secondary);
}

/* ---- Mission & Vision ---- */
.mission-section {
  padding: 90px 0;
  background: #fafafa;
}
.mission-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 55px;
}
.section-header .section-tag {
  display: inline-block;
  background: rgba(51,74,20,0.08);
  color: var(--jenuts-primary);
  padding: 6px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--jenuts-dark);
  margin-bottom: 12px;
}
.section-intro {
  color: var(--jenuts-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}
.mission-section .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.mission-section .col-md-6 {
  flex: 1 1 350px;
}
.mission-card {
  background: #fff;
  border-radius: var(--jenuts-radius);
  padding: 40px 30px;
  box-shadow: var(--jenuts-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--jenuts-shadow-hover);
}
.card-icon {
  font-size: 2.6rem;
  color: var(--jenuts-secondary);
  margin-bottom: 20px;
}
.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--jenuts-dark);
  margin-bottom: 15px;
}
.mission-card p,
.mission-card ul {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}
.mission-list {
  list-style: none;
  padding-left: 0;
}
.mission-list li {
  margin-bottom: 10px;
  padding-left: 1.5rem;
  position: relative;
}
.mission-list li::before {
  content: "✓";
  color: var(--jenuts-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ---- Product Range Grid ---- */
.product-range-section {
  padding: 90px 0;
  background: #fff;
}
.product-range-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}
.product-card {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 30px 15px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
  border: 1px solid rgba(0,0,0,0.02);
  position: relative;
}
.product-card:hover {
  background: #fff;
  transform: translateY(-5px);
  box-shadow: var(--jenuts-shadow-hover);
}
.product-card i {
  color: var(--jenuts-secondary);
  font-size: 2rem;
  margin-bottom: 12px;
}
.product-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--jenuts-dark);
}
.product-card.new::after {
  content: "NEW";
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--jenuts-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ---- Core Values Section ---- */
.values-section {
  padding: 90px 0;
  background: var(--jenuts-light);
}
.values-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}
.values-section .col-lg-5 {
  flex: 1 1 300px;
}
.values-section .col-lg-7 {
  flex: 2 1 500px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.value-item {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: var(--jenuts-shadow);
  transition: transform 0.3s;
}
.value-item:hover {
  transform: translateY(-5px);
}
.value-item .icon {
  font-size: 2rem;
  color: var(--jenuts-secondary);
  margin-bottom: 15px;
}
.value-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--jenuts-dark);
  margin-bottom: 8px;
}
.value-item p {
  color: var(--jenuts-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--jenuts-primary);
  font-weight: 600;
  text-decoration: none;
  margin-top: 25px;
  transition: gap 0.2s;
}
.btn-link i {
  transition: transform 0.2s;
}
.btn-link:hover {
  gap: 14px;
  color: var(--jenuts-secondary);
}
.btn-link:hover i {
  transform: translateX(4px);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .jenuts-breadcrumb h1 { font-size: 2rem; }
  .about-intro .row { flex-direction: column-reverse; gap: 30px; }
  .img-float { left: -15px; bottom: -15px; width: 55%; }
  .experience-badge { top: 15px; right: -10px; width: 75px; height: 75px; }
  .about-text h2 { font-size: 1.8rem; }
  .mission-section .row { flex-direction: column; }
  .values-section .container { flex-direction: column; }
  .md-section .container { flex-direction: column; }
  .md-photo { flex: 0 0 auto; max-width: 320px; }
}

/* ---- Global Organic Typography ---- */
body {
    font-family: 'Nunito', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.section-tag,
.about-text h2,
.mission-card h3,
.md-name {
    font-family: 'Lora', serif;
}

.md-signature {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

/* ---- Product Grid – 6 cards with centered last row ---- */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Default card (first 4) */
.product-card {
  flex: 0 1 220px;               /* fixed minimum width */
  background: #54aa5f;
  border-radius: 16px;
  padding: 35px 20px;
  text-align: center;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.product-card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.product-card i {
  color: var(--jenuts-secondary);   /* #a67610 */
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.product-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--jenuts-dark);         /* or #1a1a1a */
  margin: 0;
}

/* "New" badge */
.product-card.new::after {
  content: "NEW";
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--jenuts-primary);  /* #334a14 */
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Landscape cards (bottom 2) */
.product-card.landscape {
  flex: 1 1 45%;                     /* wider, but still responsive */
  min-width: 200px;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: row;
  text-align: left;
  padding: 30px 8px;
}

.product-card.landscape i {
  font-size: 2.6rem;
  margin-bottom: 0;
}

.product-card.landscape h4 {
  margin: 0;
}

/* Responsive: stack landscape cards on small screens */
@media (max-width: 768px) {
  .product-grid {
    gap: 20px;
  }
  .product-card.landscape {
    flex: 1 1 100%;
    max-width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .product-card.landscape i {
    margin-bottom: 10px;
  }
}


/* ---- BREADCRUMB WITH EARTHY IMAGE + DARK OVERLAY ---- */
.jenuts-breadcrumb {
  position: relative;
  background: url('../img/leafy.jpg ') center/cover no-repeat;
  /* Replace the URL with your chosen earthy stock image */
  padding: 90px 0 70px;
  color: #fff;
  text-align: center;
  z-index: 1;
}

/* Dark overlay */
.jenuts-breadcrumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);   /* dark enough to make white text readable */
  z-index: 0;
}

.jenuts-breadcrumb .container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.jenuts-breadcrumb h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.jenuts-breadcrumb ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.jenuts-breadcrumb ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.jenuts-breadcrumb ul li a:hover {
  color: var(--jenuts-gold);
}

/* ---- MISSION SECTION WITH LEAF TEXTURE ---- */
.mission-section {
  background-color: #f4f1ea;          /* warm, organic base */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.06"><path fill="%23334a14" d="M48.6,-58.2C59.9,-47.7,63.7,-28.7,66.3,-9.8C69,9.2,70.5,28.1,62.1,40.2C53.6,52.4,35.2,57.9,18,60.7C0.7,63.6,-15.4,63.8,-31.2,58.1C-47,52.3,-62.5,40.6,-68.8,25.1C-75.1,9.7,-72.2,-9.5,-62.5,-23.1C-52.9,-36.7,-36.5,-44.8,-20.5,-53.7C-4.5,-62.6,11.2,-72.2,27.1,-68.4C43,-64.6,37.4,-68.7,48.6,-58.2Z" transform="translate(100 100)" /></svg>');
  background-size: 300px 300px;
  padding: 90px 0;
}



/* ---- Product Card with golden outline & hover ---- */
.prod-showcase-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s, border 0.2s ease;
  border: 2px solid #c69e3b;              /* golden outline – 2px */
  box-sizing: border-box;                  /* border inside dimensions */
}

.prod-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  border: 3px solid #334a14;              /* dark green – 3px, smooth scale */
}

/* ---- Image container – add margin so image doesn't touch edges ---- */
.prod-showcase-img {
  flex: 0 0 55%;
  max-width: 85%;
  padding: 35px;                   /* creates space on all sides */
  box-sizing: border-box;
  position: relative;
  overflow: hidden;               /* keeps border-radius contained */
  background: transparent;        /* or match card bg if needed */
}

/* Image – natural aspect ratio + 10px rounded corners */
.prod-showcase-img img {
  width: 100%;
  height: auto;                   /* no crop, original 1536×1024 ratio */
  display: block;
  border-radius: 10px;            /* soft rounded edges */
  transition: transform 0.6s;
}

/* Horizontal card – center alignment keeps it balanced */
.prod-showcase-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 126, 64, 0.05);
  transition: transform 0.3s, box-shadow 0.3s, border 0.2s ease;
  border: 2px solid #c69e3b;      /* golden outline */
  box-sizing: border-box;
}

.prod-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
  border: 3px solid #334a14;      /* dark green on hover */
}


/* ========== PRODUCT PAGE MODERN STYLES ========== */

/* ---- Intro Section ---- */
.intro-section {
  padding: 70px 0 30px;
  background: #fff;
  text-align: center;
}
.intro-section .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.intro-section .section-tag i {
  margin-right: 6px;
}
.intro-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 15px 0;
}
.intro-section p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---- Two‑Column Product Grid ---- */
.products-showcase {
  padding: 60px 0 80px;
  background: #fbfbf9;
}
.products-showcase .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.prod-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.prod-card {
  flex: 1 1 400px;
  max-width: 550px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s, border 0.2s;
  border: 2px solid #c69e3b;            /* golden outline */
  display: flex;
  flex-direction: column;
}
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  border: 3px solid #334a14;            /* dark green on hover */
}

/* ---- Image Container + Badge ---- */
.prod-img {
  position: relative;
  width: 100%;
  padding: 15px 15px 0;                /* space around image */
  box-sizing: border-box;
}
.prod-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: contain;                 /* keep full image visible */
  aspect-ratio: 3/2;
}
.prod-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: rgba(51,74,20,0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.prod-badge i {
  font-size: 0.7rem;
}

/* ---- Product Body ---- */
.prod-body {
  padding: 25px 30px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.prod-body h3 {
  font-size: 1.6rem;
  color: #113b0d;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.prod-body h3 i {
  color: #c69e3b;
  font-size: 1.4rem;
}
.prod-desc {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.prod-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prod-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.4;
}
.prod-features li i {
  color: #334a14;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Outlined CTA button */
.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #334a14;
  border: 2px solid #334a14;
  padding: 11px 24px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  align-self: flex-start;
}
.btn-primary-outline i {
  transition: transform 0.2s;
}
.btn-primary-outline:hover {
  background: #334a14;
  color: #fff;
}
.btn-primary-outline:hover i {
  transform: translateX(4px);
}

/* ---- CTA Section ---- */
.cta-section {
  padding: 70px 0;
  background: #f9f7f2;
  text-align: center;
}
.cta-section .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 20px 0 15px;
}
.cta-section p {
  color: #555;
  margin-bottom: 30px;
}
.btn-solid {
  display: inline-block;
  background: #334a14;
  color: #fff;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 8px 20px rgba(51,74,20,0.2);
}
.btn-solid:hover {
  background: #a67610;
  transform: translateY(-2px);
}

/* ---- Responsive (stack on mobile) ---- */
@media (max-width: 768px) {
  /* Stack the card vertically */
  .prod-showcase-card {
    flex-direction: column;
    height: auto;                 /* allow natural height */
    overflow: visible;            /* never clip content */
    border-radius: 20px;
  }

  
.prod-showcase-details h3 {
  font-size: 1.3rem;         /* slightly smaller to prevent wrapping */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;   /* adds '...' if still too long (unlikely) */
}
  /* Image container – keep it proportional but not too tall */
  .prod-showcase-img {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    padding: 12px;
    /* no forced height; aspect ratio from image will set size */
  }

  .prod-showcase-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    aspect-ratio: 3/2;           /* keeps your 1536×1024 ratio */
  }

  /* Details section – full width, no clipping */
  .prod-showcase-details {
    padding: 20px 25px 25px;
    width: 100%;
    overflow: visible;
  }

  /* Button – full width for easy tap */
  .btn-primary-outline {
    width: 100%;
    justify-content: center;
    align-self: stretch;          /* overrides any left alignment */
  }
}






/* ========== CERTIFICATIONS PAGE ========== */
/* ========== CERTIFICATIONS PAGE ========== */

/* ---- Greenish leafy texture section ---- */
.certificate-section {
  background-color: #f4f1ea;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.08"><path fill="%233a5e1c" d="M43.3,-72.2C55.2,-66.4,63.3,-52.8,70.2,-38.2C77.1,-23.6,82.8,-8,80.7,6.1C78.6,20.2,68.7,32.8,58.1,44.5C47.6,56.2,36.4,66.9,22.2,73.6C8,80.3,-9.3,83,-24.3,78C-39.3,73,-52,60.3,-62.6,45.6C-73.1,30.9,-81.5,14.2,-82.5,-3.2C-83.5,-20.6,-77.2,-38.9,-65.1,-51.1C-53,-63.3,-35,-69.4,-19.5,-74.1C-4,-78.8,8.9,-82,43.3,-72.2Z" transform="translate(100 100) scale(0.8)" /></svg>');
  background-size: 350px 350px;
  padding: 80px 0;
}

.certificate-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Two-column simple grid ---- */
.certificate-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.certificate-card-simple {
  background: #fff;
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  padding: 0;
  border: 2px solid #c69e3b;            /* golden outline */
  transition: transform 0.3s, box-shadow 0.3s, border 0.2s;
  display: flex;
  flex-direction: column;
}

.certificate-card-simple:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  border: 3px solid #334a14;            /* dark green on hover */
}

.certificate-img-wrap {
  width: 100%;
  overflow: hidden;
  background: #fafaf9;
  padding: 20px;
  box-sizing: border-box;
}

.certificate-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  object-fit: contain;
  aspect-ratio: 3/2;                    /* uniform size, no crop */
}

/* Centered name only */
.certificate-card-simple h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 25px 20px 30px;
  color: #113b0d;                       /* deep green */
  text-align: center;
}

/* ---- Trust Seals (already defined previously, but ensure they stay) ---- */
.trust-seals {
  padding: 60px 0;
  background: #fff;
}

.trust-seals .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.seal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.seal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 120px;
}

.seal-item i {
  font-size: 2.5rem;
  color: #c69e3b;
  transition: color 0.3s;
}

.seal-item span {
  font-weight: 600;
  color: #2d2d2d;
  font-size: 0.9rem;
  text-align: center;
}

.seal-item:hover i {
  color: #334a14;
}

/* ---- CTA Section ---- */
.cta-section {
  padding: 80px 0;
  background: #f9f7f2;
}

.cta-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-inner {
  background: linear-gradient(105deg, #334a14 0%, #1e2e0c 100%);
  border-radius: 24px;
  padding: 50px 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cta-text h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
}

.cta-text p {
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #334a14;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-solid:hover {
  background: #c69e3b;
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .certificate-grid-two {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-inner {
    padding: 40px 25px;
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .cta-text h2 {
    font-size: 1.5rem;
  }
}


/* ========== IMAGE ZOOM LIGHTBOX (with two‑stage zoom) ========== */
.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: auto;                   /* allows scrolling when full‑size */
}

.zoom-overlay.active {
  opacity: 1;
  visibility: visible;
}

.zoom-close {
  position: fixed;                  /* fixed so it stays visible even when scrolling */
  top: 25px;
  right: 30px;
  font-size: 2.8rem;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
}

.zoom-close:hover {
  color: #c69e3b;
  transform: rotate(90deg);
}

.zoomed-image {
  max-width: 35%;
  max-height: 150vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, max-width 0.3s ease, max-height 0.3s ease;
  cursor: zoom-in;                  /* initial cursor hint */
  display: block;
}

/* Full‑size (zoomed‑in) state */
.zoom-overlay.zoomed-in .zoomed-image {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  object-fit: none;                  /* display at original pixel size */
  cursor: zoom-in;
}

/* Mobile – close button smaller */
@media (max-width: 600px) {
  .zoom-close {
    font-size: 2.2rem;
    top: 15px;
    right: 20px;
  }
}


/* ========== CAREER PAGE STYLES ========== */

/* ---- Openings Grid ---- */
.career-openings {
  background-color: #f4f1ea;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.04"><path fill="%23334a14" d="M48.6,-58.2C59.9,-47.7,63.7,-28.7,66.3,-9.8C69,9.2,70.5,28.1,62.1,40.2C53.6,52.4,35.2,57.9,18,60.7C0.7,63.6,-15.4,63.8,-31.2,58.1C-47,52.3,-62.5,40.6,-68.8,25.1C-75.1,9.7,-72.2,-9.5,-62.5,-23.1C-52.9,-36.7,-36.5,-44.8,-20.5,-53.7C-4.5,-62.6,11.2,-72.2,27.1,-68.4C43,-64.6,37.4,-68.7,48.6,-58.2Z" transform="translate(100 100)" /></svg>');
  background-size: 400px 400px;
  padding: 80px 0;
}

.career-openings .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.openings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.job-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.04);
  border: 2px solid #c69e3b;           /* golden outline */
  transition: transform 0.3s, box-shadow 0.3s, border 0.2s;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  border: 3px solid #334a14;           /* dark green on hover */
}

.job-icon {
  font-size: 2.2rem;
  color: #c69e3b;
  margin-bottom: 20px;
}

.job-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #113b0d;
  margin-bottom: 10px;
}

.job-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.job-meta i {
  color: #334a14;
}

.job-card p {
  color: #555;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

/* Outlined button (same as product pages) */
.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #334a14;
  border: 2px solid #334a14;
  padding: 11px 24px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  align-self: flex-start;
}

.btn-primary-outline i {
  transition: transform 0.2s;
}

.btn-primary-outline:hover {
  background: #334a14;
  color: #fff;
}

.btn-primary-outline:hover i {
  transform: translateX(4px);
}

/* ---- Why Work With Us ---- */
.why-us {
  padding: 80px 0;
  background: #fff;
}

.why-us .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.benefit-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid #e5e2d7;
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.06);
}

.benefit-card i {
  font-size: 2.4rem;
  color: #c69e3b;
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #113b0d;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #555;
  line-height: 1.7;
}

/* ---- Apply Form Section ---- */
.apply-section {
  padding: 80px 0;
  background-color: #f9f7f2;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.03"><path fill="%23334a14" d="...same leaf shape..."/></svg>');
}

.apply-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.apply-form-wrapper {
  margin-top: 40px;
}

.apply-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  flex: 1 1 220px;
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: 'Public Sans', sans-serif;
}

.apply-form textarea {
  width: 100%;
  margin-bottom: 20px;
  resize: vertical;
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px dashed #334a14;
  border-radius: 12px;
  padding: 15px 20px;
  cursor: pointer;
  color: #555;
  background: #fff;
  margin-bottom: 30px;
}

.file-upload input {
  display: none;
}

.file-upload i {
  font-size: 1.5rem;
  color: #334a14;
}

.file-upload:hover {
  background: #f4f1ea;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #334a14;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
}

.btn-solid:hover {
  background: #a67610;
  transform: translateY(-2px);
}

.job-card .btn-primary-outline {
  align-self: center;
}
/* Form feedback */
.form-success {
  color: #2d6a4f;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}

.form-error {
  color: #c92a2a;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}

/* ---- CTA at bottom ---- */
.btn-outline-white {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.btn-outline-white:hover {
  background: #fff;
  color: #334a14;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .apply-form .form-row {
    flex-direction: column;
  }
  .job-card {
    padding: 25px 20px;
  }
}

/* ========== CONTACT PAGE STYLES ========== */

/* ---- Contact Section ---- */
.contact-section {
  padding: 90px 0;
  background-color: #f4f1ea;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.04"><path fill="%23334a14" d="M48.6,-58.2C59.9,-47.7,63.7,-28.7,66.3,-9.8C69,9.2,70.5,28.1,62.1,40.2C53.6,52.4,35.2,57.9,18,60.7C0.7,63.6,-15.4,63.8,-31.2,58.1C-47,52.3,-62.5,40.6,-68.8,25.1C-75.1,9.7,-72.2,-9.5,-62.5,-23.1C-52.9,-36.7,-36.5,-44.8,-20.5,-53.7C-4.5,-62.6,11.2,-72.2,27.1,-68.4C43,-64.6,37.4,-68.7,48.6,-58.2Z" transform="translate(100 100)" /></svg>');
  background-size: 400px 400px;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info .section-tag {
  display: inline-block;
  background: rgba(51,74,20,0.08);
  color: #334a14;
  padding: 6px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-info .section-tag i {
  margin-right: 6px;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.contact-intro {
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 25px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.02);
  border-left: 4px solid #c69e3b;       /* golden left accent */
  transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  border-left-color: #334a14;
}

.info-icon {
  font-size: 1.4rem;
  color: #334a14;
  background: rgba(51,74,20,0.06);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #113b0d;
  margin-bottom: 6px;
}

.info-card p,
.info-card a {
  color: #555;
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
}

.info-card a:hover {
  color: #334a14;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #334a14;
  border: 1px solid #c69e3b;
  transition: all 0.3s;
  font-size: 1rem;
}

.social-links a:hover {
  background: #334a14;
  color: #fff;
  border-color: #334a14;
}

/* ---- Contact Form Wrapper ---- */
.contact-form-wrapper {
  flex: 1 1 500px;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
  border: 2px solid #c69e3b;
}

.contact-form-wrapper h3 {
  font-size: 1.6rem;
  color: #113b0d;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  flex: 1 1 220px;
  padding: 13px 16px;
  border: 1px solid #e0dcd2;
  border-radius: 12px;
  font-family: 'Public Sans', sans-serif;
  background: #fafaf7;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #334a14;
  box-shadow: 0 0 0 3px rgba(51,74,20,0.1);
}

.contact-form textarea {
  width: 100%;
  margin-bottom: 20px;
  resize: vertical;
}

/* Submit button (full width, solid) */
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #334a14;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  transition: background 0.3s, transform 0.2s;
  font-family: 'Public Sans', sans-serif;
}

.btn-solid:hover {
  background: #a67610;
  transform: translateY(-2px);
}

/* Form feedback */
.form-success {
  color: #2d6a4f;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
}

.form-error {
  color: #c92a2a;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
}

/* ---- Map Section ---- */
.map-section {
  padding: 0 0 80px;
  background: #fff;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- CTA bottom (same as previous pages) ---- */
.btn-outline-white {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 36px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.btn-outline-white:hover {
  background: #fff;
  color: #334a14;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
  .contact-form-wrapper {
    padding: 25px;
  }
  .contact-form .form-row {
    flex-direction: column;
  }
}



/* ---- Centered Contact Header ---- */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header .section-tag {
  display: inline-block;
  background: rgba(51,74,20,0.08);
  color: #334a14;
  padding: 6px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-header .section-tag i {
  margin-right: 6px;
}

.contact-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.contact-intro {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Two-column grid – top aligned, no stretch */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;       /* ← no more giant white space */
}

.contact-info {
  flex: 1 1 400px;
}

.contact-form-wrapper {
  flex: 1 1 500px;
}

/* ---- Two-column grid (already top-aligned) ---- */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

/* Left column unchanged */
.contact-info {
  flex: 1 1 380px;
}

/* Right column – slightly bigger */
.contact-form-wrapper {
  flex: 1 1 550px;         /* was 500px, now a bit wider */
  padding: 45px 45px;      /* more breathing room inside */
}

.contact-form-wrapper {
  flex: 1 1 550px;           /* width as before */
  padding: 98px 50px;        /* taller (was 45px, now 55px top/bottom) */
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
  border: 2px solid #c69e3b;
}



@media (max-width: 768px) {
  /* ===== OVERRIDE ALL CONTACT LAYOUT ISSUES ===== */

  /* Two‑column stack */
  .contact-grid {
    flex-direction: column !important;
    gap: 25px !important;
    align-items: stretch !important;
  }

  /* Let info cards take natural height */
  .contact-info {
    flex: 1 1 auto !important;
    width: 100% !important;
  }

  /* Form wrapper – no forced height, no extra space */
  .contact-form-wrapper {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 25px 20px !important;
    min-height: 0 !important;
    height: auto !important;
    align-self: flex-start !important;
    margin: 0 !important;
    border-radius: 20px !important;
  }

  /* Form rows & inputs: stack & stretch full width */
  .contact-form .form-row {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    flex: 1 1 auto !important;
    display: block !important;   /* prevents inline‑flex weirdness */
    padding: 13px 16px !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
    border: 1px solid #ddd !important;
    background: #fff !important;
    margin: 0 !important;
  }

  /* Button full width */
  .btn-solid {
    width: 100% !important;
    display: block !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
  }

  /* Fix social links if needed */
  .social-links {
    justify-content: center;
  }
}


/* ========== HOMEPAGE STYLES ========== */

/* ---- Hero ---- */
.jenuts-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/hero-organic.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 6px 22px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  border: 1px solid rgba(255,255,255,0.3);
}
.jenuts-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: 'Exo', sans-serif;
}
.jenuts-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 35px;
}
.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover {
  background: #fff;
  color: #334a14;
}

/* Floating leaves */
.leaves-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.leaf {
  position: absolute;
  font-size: 2rem;
  color: #c69e3b;
  opacity: 0.25;
  animation: floatLeaf 6s infinite ease-in-out;
}
.leaf:nth-child(2) { animation-delay: 1.5s; color: #a67610; }
.leaf:nth-child(3) { animation-delay: 3s; color: #334a14; }
.leaf:nth-child(4) { animation-delay: 4.5s; }
@keyframes floatLeaf {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ---- Trust Strip (Primary Background) ---- */
.trust-strip {
  background: #334a14;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 1.05rem;
}
.trust-badges i {
  margin-right: 8px;
  color: #c69e3b;
}

/* ---- About Snippet ---- */
.section-about {
  padding: 80px 0;
}
.about-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-img {
  flex: 1 1 400px;
}
.about-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.about-text {
  flex: 1 1 400px;
}
.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ---- Section Headers (reuse) ---- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  background: rgba(51,74,20,0.08);
  color: #334a14;
  padding: 6px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.section-intro {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---- Current Products ---- */
.section-products {
  padding: 80px 0;
  background: #fff;
}
.product-grid.two-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
.product-card {
  flex: 1 1 280px;
  max-width: 400px;
  background: #fafaf7;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid #e6e0d2;
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}
.product-card h4 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.product-card p {
  color: #555;
  margin-bottom: 20px;
}
.btn-primary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid #334a14;
  color: #334a14;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn-primary-outline:hover {
  background: #334a14;
  color: #fff;
}

/* ---- Upcoming Products (Primary Background) ---- */
.section-upcoming {
  background: #334a14;
  padding: 80px 0;
  color: #fff;
}
.section-upcoming .section-tag.light-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.section-upcoming h2 {
  color: #fff;
}
.section-upcoming .section-intro.light-intro {
  color: rgba(255,255,255,0.8);
}
.upcoming-card {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.upcoming-card h4,
.upcoming-card p {
  color: #fff;
}
.btn-primary-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn-primary-outline-white:hover {
  background: #fff;
  color: #334a14;
}

/* ---- Testimonials ---- */
.section-testimonials {
  padding: 80px 0;
  background: #f9f7f2;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.testimonial-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  position: relative;
  border-left: 4px solid #c69e3b;
}
.testimonial-card:hover {
  border-left-color: #334a14;
}
.quote-mark {
  font-size: 3.5rem;
  color: #c69e3b;
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-card p {
  font-style: italic;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 10px;
}
.client h5 {
  color: #1a1a1a;
  margin-bottom: 4px;
}
.client span {
  color: #777;
  font-size: 0.85rem;
}

/* ---- Our Clients Logos ---- */
.section-clients {
  padding: 80px 0;
  background: #fff;
}
.client-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 15px 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s;
}
.client-logo img {
  height: 60px;
  width: auto;
  filter: grayscale(30%);
}
.client-logo:hover {
  transform: translateY(-3px);
  filter: grayscale(0%);
}

/* ---- Compact Contact Form ---- */
.section-contact-home {
  padding: 80px 0;
  background: #f4f1ea;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.03"><path fill="%23334a14" d="M43.3,-72.2C55.2,-66.4,63.3,-52.8,70.2,-38.2C77.1,-23.6,82.8,-8,80.7,6.1C78.6,20.2,68.7,32.8,58.1,44.5C47.6,56.2,36.4,66.9,22.2,73.6C8,80.3,-9.3,83,-24.3,78C-39.3,73,-52,60.3,-62.6,45.6C-73.1,30.9,-81.5,14.2,-82.5,-3.2C-83.5,-20.6,-77.2,-38.9,-65.1,-51.1C-53,-63.3,-35,-69.4,-19.5,-74.1C-4,-78.8,8.9,-82,43.3,-72.2Z" transform="translate(100 100) scale(0.8)"/></svg>');
  background-size: 350px;
}
.contact-form-compact {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  border: 2px solid #c69e3b;
}
.contact-form-compact .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form-compact input,
.contact-form-compact select,
.contact-form-compact textarea {
  flex: 1 1 220px;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: 'Public Sans', sans-serif;
  background: #fafaf7;
}
.contact-form-compact textarea {
  width: 100%;
  margin-bottom: 20px;
  resize: vertical;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---- CTA Strip (Primary Background) ---- */
.cta-strip {
  background: #334a14;
  padding: 60px 0;
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 0 20px;
  gap: 25px;
  text-align: center;
}
.cta-inner h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.cta-inner p {
  opacity: 0.9;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .jenuts-hero h1 {
    font-size: 2.2rem;
  }
  .about-row {
    flex-direction: column;
  }
  .product-grid.two-col {
    flex-direction: column;
    align-items: center;
  }
  .cta-inner {
    flex-direction: column;
  }
  .contact-form-compact .form-row {
    flex-direction: column;
  }
}

/* ========== HERO SLIDER ========== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.hero-slide .hero-content {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  max-width: 800px;
  width: 90%;
  z-index: 3;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  padding: 6px 22px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero-slide h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: 'Exo', sans-serif;
}
.hero-slide p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 35px;
}
.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: background 0.3s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.4); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }
/* Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.hero-dot.active { background: #c69e3b; }

/* ========== PRODUCT CARDS WITH OVERLAY ========== */
.product-card-overlay {
  position: relative;
  flex: 1 1 280px;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  background: #000; /* fallback */
}
.product-card-overlay:hover {
  transform: translateY(-5px);
}
.product-card-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 350px; /* ensures a consistent card height */
}
.product-card-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 80%);
  color: #fff;
  padding: 30px 20px 20px;
  text-align: center;
}
.product-card-overlay-content h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #fff;
}
.product-card-overlay-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 15px;
}
.btn-primary-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.btn-primary-outline-white:hover {
  background: #fff;
  color: #334a14;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-slide h1 { font-size: 2rem; }
  .hero-slider { height: 80vh; min-height: 500px; }
  .product-card-overlay img { min-height: 280px; }
}

.product-card-overlay {
  position: relative;
  flex: 1 1 280px;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  background: #f4f1ea;               /* subtle fallback */
}

.product-card-overlay img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;                /* no cropping */
  background: #f4f1ea;                /* matches card background */
}



/* ========== PRODUCT DETAIL PAGE ========== */
.pdp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.pdp-breadcrumb {
  margin-bottom: 40px;
  color: #666;
  font-size: 0.9rem;
  font-family: 'Public Sans', sans-serif;
}
.pdp-breadcrumb a {
  color: #334a14;
  text-decoration: none;
  font-weight: 500;
}
.pdp-breadcrumb a:hover {
  text-decoration: underline;
}

.pdp-main {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

/* Gallery */
.pdp-gallery {
  flex: 1 1 450px;
  max-width: 500px;
}
.pdp-main-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: #f4f1ea;
  margin-bottom: 20px;
  border: 2px solid #c69e3b;
}
.pdp-main-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.pdp-thumb-strip {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.pdp-thumb-strip button {
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.3s;
  width: 70px;
  height: 70px;
}
.pdp-thumb-strip button.active {
  border-color: #334a14;
}
.pdp-thumb-strip button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Details */
.pdp-details {
  flex: 1 1 400px;
}
.pdp-badge {
  display: inline-block;
  background: rgba(51,74,20,0.08);
  color: #334a14;
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: 'Public Sans', sans-serif;
}
.pdp-details h1 {
  font-family: 'Exo', sans-serif;
  font-size: 2.2rem;
  color: #2d2d2d;
  margin-bottom: 15px;
}
.pdp-subtitle {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  font-family: 'Public Sans', sans-serif;
}
.pdp-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.pdp-highlight {
  background: #f9f7f2;
  border-radius: 12px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2d2d2d;
  font-family: 'Public Sans', sans-serif;
}
.pdp-hl-icon {
  color: #334a14;
  font-size: 1.1rem;
}
.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.btn-primary {
  background: #334a14;
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Public Sans', sans-serif;
}
.btn-primary:hover {
  background: #a67610;
}

/* Tabs */
.pdp-tabs-nav {
  display: flex;
  gap: 10px;
  margin-top: 60px;
  border-bottom: 2px solid #eee;
  padding-bottom: 0;
}
.pdp-tabs-nav button {
  background: none;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
  font-family: 'Exo', sans-serif;
}
.pdp-tabs-nav button.active {
  color: #334a14;
  border-bottom-color: #334a14;
}
.pdp-tab-panel {
  display: none;
  padding: 30px 0;
  animation: fadeIn 0.3s;
}
.pdp-tab-panel.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pdp-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.pdp-spec-card {
  background: #f9f7f2;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid #c69e3b;
}
.pdp-spec-card h4 {
  font-size: 0.9rem;
  color: #334a14;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: 'Exo', sans-serif;
}
.pdp-spec-card p {
  color: #2d2d2d;
  font-size: 1rem;
  line-height: 1.5;
  font-family: 'Public Sans', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .pdp-main {
    flex-direction: column;
  }
  .pdp-details h1 {
    font-size: 1.8rem;
  }
}

/* ========== FOOTER (Jenuts Organica) – Aligned & Responsive ========== */
.wi-footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  padding-top: 4rem;
  font-family: 'Public Sans', sans-serif;
}

.wi-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Top grid – 4 equal columns, centered */
.wi-footer-top {
  padding-bottom: 2rem;
}

.wi-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  /* Ensure all columns start from the same top position */
  align-items: start;
}

/* Column styling */
.wi-footer-col {
  min-width: 0;            /* prevent overflow */
}

/* Heading */
.wi-footer-heading {
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.wi-footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #334a14;
  border-radius: 2px;
}

/* About column text */
.wi-footer-text {
  line-height: 1.7;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.wi-footer-tagline {
  font-weight: 600;
  color: #c69e3b;
  margin-bottom: 1.2rem;
}

/* Social icons */
.wi-footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.wi-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.wi-footer-social a:hover {
  background: #334a14;
  transform: translateY(-3px);
}

/* Link lists */
.wi-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wi-footer-links li {
  margin-bottom: 0.6rem;
}

.wi-footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.wi-footer-links a:hover {
  color: #c69e3b;
  padding-left: 5px;
}

/* Contact items */
.wi-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wi-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wi-footer-contact-item i {
  color: #c69e3b;
  font-size: 1rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.wi-footer-contact-item span,
.wi-footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.5;
}

.wi-footer-contact-item a:hover {
  color: #c69e3b;
}

/* Bottom bar */
.wi-footer-bottom {
  background: #080808;
  padding: 1.2rem 0;
  font-size: 0.85rem;
}

.wi-footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.wi-copyright {
  margin: 0;
  color: #aaa;
}

.wi-footer-credit {
  margin: 0;
  color: #aaa;
}

.wi-footer-credit a {
  color: #c69e3b;
  text-decoration: none;
}

/* Scroll to top button (consistent with brand) */
.wi-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: #334a14;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(51, 74, 20, 0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wi-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.wi-scroll-top:hover {
  background: #a67610;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .wi-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .wi-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .wi-footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .wi-footer-social {
    justify-content: center;
  }
}

/* Left-align hero content on all screens */
.hero-slide .hero-content {
  text-align: left;
  left: 5%;
  transform: translateX(0);
  max-width: 700px;
}

/* Left-align the button group */
.hero-btns {
  justify-content: flex-start;
}

/* Keep it centered on very small screens if you prefer, else remove this */
@media (max-width: 600px) {
  .hero-slide .hero-content {
    left: 5%;
    transform: translateX(0);
  }
}

/* About section image border */
.about-img img {
  border: 2px solid #334a14;
  border-radius: 20px;        /* keeps the existing rounded corners consistent */
}