/*
Theme Name: TeneX Healthcare
Theme URI: https://tenexhealthcare.com/
Author: TeneX Healthcare Team
Author URI: https://tenexhealthcare.com/
Description: A modern, responsive WordPress Theme for TeneX Healthcare featuring ACF (Advanced Custom Fields) integration, custom post types for products, dynamic hero slider, testimonials, and contact forms.
Version: 1.0.0
Text Domain: tenex-theme
Tags: healthcare, medical, dental, responsive, custom-post-types, acf-supported
*/

:root {
  /* Colors - Based on Logo */
  --color-primary: #62AC49;
  /* Logo Green */
  --color-primary-light: #8CD674;
  --color-secondary: #F7912B;
  /* Logo Orange */
  --color-accent: #C0093A;
  /* Logo Red */
  --color-text-main: #333333;
  --color-text-muted: #666666;
  --color-bg-main: #FFFFFF;
  --color-bg-alt: #fff3e7;
  --color-border: #E0E0E0;
  --color-white: #FFFFFF;

  /* Typography */
  --font-primary: 'Quicksand', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;

  /* Layout */
  --container-width: 1200px;

  /* Other */
  --border-radius: 8px;
  --transition-speed: 0.3s;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Modern Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-main);
  background-color: var(--color-bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

/* Header Layout */
.header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav {
  display: none;
}

@media (min-width: 992px) {
  .nav {
    display: block;
  }
}

/* Sections */
.section {
  padding: var(--spacing-xl) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .grid--2-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3-col {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid--4-col {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Footer Layout */
.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition-speed) ease;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* CTA Button with Cyber/Frame Style */
.btn--cta {
  position: relative;
  background-color: var(--color-secondary);
  color: var(--color-white) !important;
  border-radius: 0;
  padding: 0.8rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 10px;
  z-index: 1;
  border: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn--cta:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--cta::before {
  content: '';
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
  border: 2px solid var(--color-secondary);
  z-index: -1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black 35%, transparent 35%, transparent 65%, black 65%);
  mask-image: linear-gradient(to bottom, black 35%, transparent 35%, transparent 65%, black 65%);
  transition: border-color 0.3s ease;
}

.btn--cta:hover::before {
  border-color: var(--color-primary);
}

.btn--cta::after {
  content: '';
  position: absolute;
  bottom: -9px;
  right: -9px;
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  z-index: 2;
  pointer-events: none;
}

/* Product Cards */
.product-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card__image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--color-bg-alt);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.product-card__desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-speed) ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  font-size: 2.2rem;
  color: var(--color-white);
  background-color: var(--color-primary);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Hero Banner */
.hero {
  position: relative;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0.2) 100%), url('assets/images/herosection.jpg') center/cover no-repeat;
  padding: var(--spacing-xxl) 0;
  overflow: hidden;
}

.hero__content {
  max-width: 600px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-lg);
}

/* Nav Menu & Active Indicator Bar */
.nav__list {
  display: flex;
  gap: var(--spacing-md);
  list-style: none;
}

.nav__list a,
.nav__link {
  color: var(--color-text-main);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav__list a::after,
.nav__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--color-secondary); /* Vibrant Orange */
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav__list a:hover,
.nav__link:hover {
  color: var(--color-primary); /* Logo Green */
}

.nav__list a:hover::after,
.nav__link:hover::after {
  width: 100%;
}

/* Active Page State (Green Text & Orange Underline Bar) */
.nav__link.is-active,
.nav__list li.current-menu-item > a,
.nav__list li.current-menu-ancestor > a,
.nav__list li.current_page_item > a,
.nav__list li.current-menu-parent > a,
.current-menu-item > a,
.current_page_item > a {
  color: var(--color-primary) !important; /* Logo Green Text */
  font-weight: 700 !important;
}

.nav__link.is-active::after,
.nav__list li.current-menu-item > a::after,
.nav__list li.current-menu-ancestor > a::after,
.nav__list li.current_page_item > a::after,
.nav__list li.current-menu-parent > a::after,
.current-menu-item > a::after,
.current_page_item > a::after {
  width: 100% !important;
  background-color: var(--color-secondary) !important; /* Vibrant Orange Bar */
}

/* Bulletproof Body Class Page Match Selectors */
body.page-slug-about header nav a[href*="about"],
body.page-template-template-about header nav a[href*="about"],
body.page-id-about header nav a[href*="about"],
body.page-slug-about .nav__list a[href*="about"],
body.page-template-template-about .nav__list a[href*="about"] {
  color: var(--color-primary) !important;
  font-weight: 700 !important;
}

body.page-slug-about header nav a[href*="about"]::after,
body.page-template-template-about header nav a[href*="about"]::after,
body.page-id-about header nav a[href*="about"]::after,
body.page-slug-about .nav__list a[href*="about"]::after,
body.page-template-template-about .nav__list a[href*="about"]::after {
  width: 100% !important;
  background-color: var(--color-secondary) !important;
}

body.page-slug-products header nav a[href*="product"],
body.page-template-template-products header nav a[href*="product"],
body.post-type-archive-product header nav a[href*="product"],
body.single-product header nav a[href*="product"],
body.tax-product_category header nav a[href*="product"],
body.tax-product_brand header nav a[href*="product"] {
  color: var(--color-primary) !important;
  font-weight: 700 !important;
}

body.page-slug-products header nav a[href*="product"]::after,
body.page-template-template-products header nav a[href*="product"]::after,
body.post-type-archive-product header nav a[href*="product"]::after,
body.single-product header nav a[href*="product"]::after,
body.tax-product_category header nav a[href*="product"]::after,
body.tax-product_brand header nav a[href*="product"]::after {
  width: 100% !important;
  background-color: var(--color-secondary) !important;
}

body.blog header nav a[href*="blog"],
body.single-post header nav a[href*="blog"],
body.category header nav a[href*="blog"],
body.tag header nav a[href*="blog"] {
  color: var(--color-primary) !important;
  font-weight: 700 !important;
}

body.blog header nav a[href*="blog"]::after,
body.single-post header nav a[href*="blog"]::after,
body.category header nav a[href*="blog"]::after,
body.tag header nav a[href*="blog"]::after {
  width: 100% !important;
  background-color: var(--color-secondary) !important;
}

body.page-slug-contact header nav a[href*="contact"],
body.page-template-template-contact header nav a[href*="contact"] {
  color: var(--color-primary) !important;
  font-weight: 700 !important;
}

body.page-slug-contact header nav a[href*="contact"]::after,
body.page-template-template-contact header nav a[href*="contact"]::after {
  width: 100% !important;
  background-color: var(--color-secondary) !important;
}



/* Hamburger */
.hamburger {
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger__line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--color-primary);
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}

/* Mobile Menu State */
.nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-md);
  animation: slideDown 0.3s ease forwards;
}

.nav.is-open .nav__list {
  flex-direction: column;
  gap: var(--spacing-sm);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.hero__actions {
  display: flex;
  gap: 10px;
}

.section__title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.info-section__grid {
  align-items: center;
}

.info-section__desc {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-muted);
}

.info-section__list {
  list-style: disc;
  margin-left: var(--spacing-md);
  color: var(--color-text-muted);
}

.info-section__list-item {
  margin-bottom: var(--spacing-xs);
}

.info-section__img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

/* Swiper Hero Layout */
.hero__grid {
  align-items: center;
  gap: var(--spacing-xl);
}

.hero__slider {
  width: 100%;
  overflow: hidden;
}

.hero__slider-img-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  background: linear-gradient(135deg, rgba(98, 172, 73, 0.1) 0%, rgba(247, 145, 43, 0.1) 100%);
}

.hero__slider-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 6s ease-in-out;
  transform: scale(1);
  display: block;
}

.swiper-slide-active .hero__slider-img {
  transform: scale(1.15);
}

/* Portfolio Section */
.portfolio-section {
  background-color: var(--color-bg-alt);
  padding: var(--spacing-xxl) 0;
}

.portfolio-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.portfolio-header__title {
  color: var(--color-primary);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
}

.portfolio-header__desc {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.portfolio-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  border-top: 4px solid var(--color-primary);
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--color-secondary);
}

.portfolio-card__img-wrap {
  height: 120px;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.portfolio-card__logo {
  max-width: 70%;
  max-height: 80px;
  object-fit: contain;
}

.portfolio-card__info {
  padding: 1rem;
  text-align: center;
  background-color: var(--color-white);
  flex-grow: 1;
}

.portfolio-card__category {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.portfolio-card__brand {
  color: var(--color-text-main);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
}

/* Shop Category Section */
.shop-category {
  text-align: center;
}

.shop-category__subtitle {
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  color: var(--color-text-muted);
  font-weight: 500;
}

.shop-category__tabs {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.shop-category__tab {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-main);
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.shop-category__tab:hover,
.shop-category__tab.is-active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.shop-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-speed) ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.shop-card__image-wrapper {
  background-color: var(--color-white);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.shop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.shop-card:hover .shop-card__img {
  transform: scale(1.05);
}

.shop-card__content {
  padding: var(--spacing-md);
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: var(--spacing-xs);
}

.shop-card__brand {
  font-size: 0.8rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-xs);
}

/* Testimonials */
.testimonials-section {
  background-color: var(--color-bg-alt);
  padding: 6rem 0;
  overflow: hidden;
}

.testimonials-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .testimonials-container {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.testimonials-title {
  font-size: 3.5rem;
  color: var(--color-text-main);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.testimonial-card__quote-mark {
  font-family: serif;
  font-size: 4rem;
  color: var(--color-primary);
  line-height: 1;
}

.testimonial-card__author {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.testimonial-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-card__avatar img {
  width: 85%;
  height: 85%;
  object-fit: cover;
  border-radius: 50%;
}

.bg-pastel-yellow { background-color: #fcf1d8; }
.bg-pastel-red { background-color: #fcd8d8; }
.bg-pastel-green { background-color: #d8e6df; }
.bg-pastel-purple { background-color: #e5daea; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.4);
  background-color: #20ba56;
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

/* Forms & Contact */
.contact-form-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

/* About Founder */
.about-founder-card {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-founder-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--color-primary);
}

.about-founder-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Footer bottom */
.footer__logo-img {
  filter: brightness(0) invert(1);
  height: 40px;
}

.footer__socials-wrap {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social-link {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

.footer__social-link:hover {
  color: var(--color-primary);
}

.footer__bottom-wrap {
  background-color: #f8f9fa;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  color: var(--color-text-main);
  font-weight: 500;
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

/* ==========================================================================
   Product Detail Page & Gallery Styles
   ========================================================================== */

.product-detail {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-white);
}

/* Product Gallery */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.product-gallery__main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.product-gallery__thumbs {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  align-items: center;
}

.product-gallery__thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--color-border);
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.product-gallery__thumbs img:hover,
.product-gallery__thumbs img.active-thumb {
  opacity: 1;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Product Info Right Column */
.product-info {
  display: flex;
  flex-direction: column;
}

.product-info__brand {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--spacing-xs);
  display: block;
}

.product-info__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
  line-height: 1.2;
}

.product-info__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: var(--spacing-md);
}

.product-info__desc {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.product-info__features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
  padding: 0;
}

.product-info__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
  font-weight: 500;
}

.product-info__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.product-info__actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-top: auto;
}

/* Breadcrumbs */
.breadcrumb {
  padding: 1rem 0;
  background-color: var(--color-bg-alt);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb a {
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

/* Product Tabs Section */
.product-tabs-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.product-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: var(--spacing-lg);
}

.product-tab {
  padding: 0.75rem 1.75rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: -2px;
}

.product-tab:hover {
  color: var(--color-primary);
}

.product-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  background-color: var(--color-white);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-tab-content {
  display: none;
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.product-tab-content.active {
  display: block;
}

.product-tab-content h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  font-size: 1.4rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--color-border);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.specs-table td.spec-name {
  font-weight: 700;
  color: var(--color-text-main);
  width: 35%;
  background-color: #fafafa;
}

.specs-table td.spec-val {
  color: var(--color-text-muted);
}

/* ==========================================================================
   Footer Links & Text Visibility Fixes
   ========================================================================== */

.footer {
  background-color: var(--color-primary);
  color: #FFFFFF !important;
  padding: var(--spacing-xl) 0 0;
}

.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, .footer__title {
  color: #FFFFFF !important;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.footer p, .footer span, .footer div, .footer li, .footer__desc, .footer__contact-item, .footer__contact-text {
  color: rgba(255, 255, 255, 0.9) !important;
}

.footer a,
.footer__link,
.footer__link-list a,
.footer ul li a,
.footer .menu-item a,
.footer .text-link {
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 0.2rem 0;
}

.footer a:hover,
.footer__link:hover,
.footer__link-list a:hover,
.footer ul li a:hover,
.footer .menu-item a:hover,
.footer .text-link:hover {
  color: var(--color-secondary) !important;
  transform: translateX(4px);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer__bottom-wrap {
  background-color: rgba(0, 0, 0, 0.15) !important;
  padding: 1.25rem 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__copyright {
  color: #FFFFFF !important;
  font-weight: 500;
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer__legal-link:hover {
  color: var(--color-secondary) !important;
}

/* ==========================================================================
   Product Catalog Grid & Uniform Image Alignment
   ========================================================================== */

.shop-card {
  background: #FFFFFF;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}

.shop-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.shop-card__image-wrapper {
  width: 100%;
  height: 220px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem;
  box-sizing: border-box;
}

.shop-card__img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

.shop-card:hover .shop-card__img {
  transform: scale(1.06);
}

.shop-card__content {
  padding: 1.25rem 1rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shop-card__brand {
  font-size: 0.8rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.shop-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.35;
}

/* ==========================================================================
   Testimonials Swiper Height Fix & White Footer Links Override
   ========================================================================== */

.testimonials-slider {
  width: 100%;
  height: 540px !important;
  overflow: hidden;
  padding: 10px 0;
}

@media (max-width: 767px) {
  .testimonials-slider {
    height: auto !important;
  }
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--border-radius);
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid var(--color-border);
  height: 100%;
  box-sizing: border-box;
}

/* Force All Footer Links to Pure White */
footer,
.footer,
.footer div,
.footer section,
.footer p,
.footer span,
.footer li,
.footer .widget {
  color: #FFFFFF !important;
}

footer a,
footer a:visited,
footer a:link,
.footer a,
.footer a:visited,
.footer a:link,
.footer .menu-item a,
.footer .footer__link,
.footer .footer__link-list a,
.footer .footer__legal-link,
.footer .text-link,
.footer ul li a,
.footer .widget a {
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  opacity: 0.95;
  transition: all 0.25s ease-in-out;
}

footer a:hover,
.footer a:hover,
.footer a:focus,
.footer .menu-item a:hover,
.footer .footer__link:hover,
.footer .footer__link-list a:hover,
.footer .footer__legal-link:hover,
.footer .text-link:hover,
.footer ul li a:hover {
  color: #F7912B !important;
  opacity: 1 !important;
}

/* ==========================================================================
   Products Catalog & Sidebar Layout (Exact Screenshot Match)
   ========================================================================== */

.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 991px) {
  .listing-layout {
    grid-template-columns: 1fr;
  }
}

/* Sidebar Box matching soft warm beige #FFF8F0 */
.sidebar__widget {
  background-color: #FFF8F0 !important;
  padding: 2rem 1.5rem !important;
  border-radius: 14px !important;
  margin-bottom: 1.5rem !important;
  border: 1px solid #F5EAE0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.sidebar__title {
  color: #62AC49 !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.25rem !important;
  padding-bottom: 0.6rem !important;
  border-bottom: 2px solid #EAE0D5 !important;
  letter-spacing: -0.3px;
}

.sidebar__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sidebar__list li {
  margin-bottom: 0.85rem !important;
  color: #666666 !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
}

.sidebar__list label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sidebar__list input[type="checkbox"] {
  accent-color: #62AC49;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Listing Top Bar */
.listing-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.listing-results-count {
  color: #888888;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.listing-sort-select {
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  color: #444444;
  font-size: 0.9rem;
  font-family: inherit;
  background-color: #FFFFFF;
  cursor: pointer;
  outline: none;
}

.listing-sort-select:focus {
  border-color: #62AC49;
}

/* Product Shop Cards Grid */
.shop-card {
  background: #FFFFFF !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
  overflow: hidden !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  border: 1px solid #F0F0F0 !important;
}

.shop-card > a {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  text-decoration: none !important;
  color: inherit !important;
}

.shop-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  border-color: #E0E0E0 !important;
}

.shop-card__image-wrapper {
  width: 100% !important;
  height: 210px !important;
  background-color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  border-bottom: 1px solid #F4F4F4 !important;
  padding: 1rem !important;
  box-sizing: border-box !important;
  position: relative !important;
}

.shop-card__img {
  max-width: 90% !important;
  max-height: 90% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transition: transform 0.4s ease !important;
  display: block !important;
  margin: 0 auto !important;
}

.shop-card:hover .shop-card__img {
  transform: scale(1.06) !important;
}

.shop-card__content {
  padding: 1.5rem 1rem !important;
  text-align: center !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.shop-card__brand {
  font-size: 0.8rem !important;
  color: #F7912B !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  margin-bottom: 0.4rem !important;
  font-weight: 700 !important;
}

.shop-card__title {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #222222 !important;
  margin: 0 0 0.3rem 0 !important;
  line-height: 1.35 !important;
  transition: color 0.2s ease !important;
}

.shop-card:hover .shop-card__title {
  color: #62AC49 !important;
}

.shop-card__status {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #62AC49 !important;
  margin-top: 0.3rem !important;
  display: inline-block !important;
}

/* ==========================================================================
   Inside Page Banner Styles (Exact Screenshot Match)
   ========================================================================== */

.page-banner {
  position: relative !important;
  background: linear-gradient(90deg, rgba(98, 172, 73, 0.88) 0%, rgba(35, 45, 35, 0.85) 100%), url('assets/images/herosection.jpg') center/cover no-repeat;
  color: #FFFFFF !important;
  padding: 4.5rem 1rem !important;
  text-align: center !important;
  box-shadow: inset 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.page-banner__title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin-bottom: 0.75rem !important;
  letter-spacing: -0.5px !important;
  line-height: 1.2 !important;
  font-family: 'Quicksand', sans-serif !important;
}

.page-banner__desc {
  font-size: 1.15rem !important;
  color: rgba(255, 255, 255, 0.95) !important;
  max-width: 800px !important;
  margin: 0 auto !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  font-family: 'Quicksand', sans-serif !important;
}

/* ==========================================================================
   Hero Banner Brand Label & Title Heading Styles (Exact Screenshot Match)
   ========================================================================== */

.hero__brand-label {
  display: block !important;
  color: #F7912B !important; /* Logo Orange */
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  margin-bottom: 0.6rem !important;
  font-family: 'Quicksand', sans-serif !important;
}

.hero__title {
  color: #62AC49 !important; /* Logo Green */
  font-size: clamp(2.5rem, 5vw, 4.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  margin-bottom: 1rem !important;
  letter-spacing: -0.5px !important;
  font-family: 'Quicksand', sans-serif !important;
}

.hero__subtitle {
  color: #666666 !important;
  font-size: 1.2rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1.75rem !important;
  font-family: 'Quicksand', sans-serif !important;
}

/* ==========================================================================
   Latest Industry News Section (Exact Screenshot Match)
   ========================================================================== */

.news-section {
  padding: 5rem 0 !important;
  background-color: #FFFFFF !important;
}

.news-section__title {
  text-align: center !important;
  color: #62AC49 !important;
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  font-weight: 800 !important;
  margin-bottom: 3rem !important;
  letter-spacing: -0.5px !important;
  font-family: 'Quicksand', sans-serif !important;
}

.news-card {
  background: #FFFFFF !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid #F0F0F0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.news-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09) !important;
  border-color: #E0E0E0 !important;
}

.news-card__image-wrapper {
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
  background-color: #FAFAFA !important;
  position: relative !important;
}

.news-card__image-wrapper a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.news-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.news-card:hover .news-card__img {
  transform: scale(1.05) !important;
}

.news-card__content {
  padding: 1.5rem 1.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  text-align: left !important;
}

.news-card__category {
  display: block !important;
  color: #F7912B !important; /* Brand Orange */
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  letter-spacing: 0.5px !important;
  font-family: 'Quicksand', sans-serif !important;
}

.news-card__title {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  margin: 0 0 0.75rem 0 !important;
  line-height: 1.3 !important;
  font-family: 'Quicksand', sans-serif !important;
}

.news-card__title a {
  color: #62AC49 !important; /* Brand Green */
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.news-card__title a:hover {
  color: #F7912B !important;
}

.news-card__desc {
  color: #666666 !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  margin-bottom: 1.25rem !important;
  flex-grow: 1 !important;
  font-family: 'Quicksand', sans-serif !important;
}

.news-card__link {
  color: #62AC49 !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  margin-top: auto !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
  font-family: 'Quicksand', sans-serif !important;
}

.news-card__link:hover {
  color: #F7912B !important;
  transform: translateX(4px) !important;
}

/* ==========================================================================
   Blog Details Page (2-Col, Sidebar, Post Nav, Related Products)
   ========================================================================== */

.blog-detail-container {
  display: grid !important;
  grid-template-columns: 1fr 320px !important;
  gap: 2.5rem !important;
  align-items: start !important;
}

@media (max-width: 991px) {
  .blog-detail-container {
    grid-template-columns: 1fr !important;
  }
}

.blog-detail-meta__category {
  color: #62AC49 !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
}

.blog-detail-meta__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
  font-weight: 800 !important;
  color: #222222 !important;
  margin-bottom: 1.25rem !important;
  line-height: 1.2 !important;
}

.blog-detail-meta__author-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  margin-bottom: 2rem !important;
}

.blog-detail-meta__avatar {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
}

.blog-detail-meta__author-name {
  font-weight: 700 !important;
  color: #222222 !important;
  display: block !important;
  font-size: 1.05rem !important;
}

.blog-detail-meta__date {
  color: #777777 !important;
  font-size: 0.9rem !important;
}

/* Post Navigation Buttons */
.post-navigation {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-top: 3rem !important;
  padding-top: 2rem !important;
  border-top: 1px solid #EAEAEA !important;
  gap: 1rem !important;
}

.post-nav-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  border: 2px solid #62AC49 !important;
  color: #62AC49 !important;
  background-color: transparent !important;
  padding: 0.65rem 1.4rem !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.post-nav-btn:hover {
  background-color: #62AC49 !important;
  color: #FFFFFF !important;
}

.post-navigation a {
  text-decoration: none !important;
}

.post-navigation a .post-nav-btn {
  display: inline-flex !important;
}

/* Related Products Section */
.related-products-section {
  background-color: #FFF8F0 !important;
  padding: 4.5rem 0 !important;
  border-top: 1px solid #F5EAE0 !important;
  margin-top: 3rem !important;
}

.related-products__title {
  text-align: center !important;
  color: #62AC49 !important;
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  font-weight: 800 !important;
  margin-bottom: 2.5rem !important;
  letter-spacing: -0.5px !important;
}

.btn--quote-outline {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  border: 2px solid #62AC49 !important;
  color: #62AC49 !important;
  background: transparent !important;
  padding: 0.65rem 1rem !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.btn--quote-outline:hover {
  background-color: #62AC49 !important;
  color: #FFFFFF !important;
}

/* ==========================================================================
   Product Details & ACF Rich Text Editor Styling (Clean 2-Col Layout)
   ========================================================================== */

.product-detail {
  padding: 4rem 0 !important;
  background-color: #FFFFFF !important;
}

.product-info__brand {
  display: block !important;
  color: #F7912B !important; /* Brand Orange */
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  margin-bottom: 0.5rem !important;
  font-family: 'Quicksand', sans-serif !important;
}

.product-info__title {
  color: #62AC49 !important; /* Brand Green */
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin-bottom: 0.75rem !important;
  font-family: 'Quicksand', sans-serif !important;
}

.product-info__price {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #2E2E2E !important;
  margin-bottom: 1.25rem !important;
  font-family: 'Quicksand', sans-serif !important;
}

.product-info__desc {
  color: #555555 !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1.5rem !important;
  font-family: 'Quicksand', sans-serif !important;
}

.product-info__actions {
  display: flex !important;
  gap: 1rem !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  margin-top: 2rem !important;
}

.product-tabs-section {
  background-color: #FFF8F0 !important; /* Warm light beige matching screenshot */
  padding: 4rem 0 5rem 0 !important;
  border-top: 1px solid #F3E5D8 !important;
}

.product-tabs {
  display: flex !important;
  gap: 1rem !important;
  border-bottom: 2px solid #E6D7C9 !important;
  margin-bottom: 0 !important;
}

.product-tab {
  background: transparent !important;
  border: none !important;
  border-bottom: 3px solid transparent !important;
  padding: 0.85rem 1.8rem !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #666666 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  font-family: 'Quicksand', sans-serif !important;
  margin-bottom: -2px !important;
  border-radius: 8px 8px 0 0 !important;
}

.product-tab:hover {
  color: #62AC49 !important;
}

.product-tab.active {
  color: #62AC49 !important;
  background-color: #FFFFFF !important;
  border-bottom: 3px solid #62AC49 !important;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.03) !important;
}

.product-tab-content {
  display: none;
  background: #FFFFFF !important;
  border-radius: 12px !important;
  padding: 2.5rem 3rem !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important;
  border: 1px solid #F0E5DA !important;
  margin-top: 1.5rem !important;
}

.product-tab-content.active {
  display: block !important;
}

.product-tab-content__title {
  color: #62AC49 !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  margin-bottom: 1.5rem !important;
  font-family: 'Quicksand', sans-serif !important;
}

/* Rich Text Content Formatting */
.product-rich-text {
  color: #444444 !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  font-family: 'Quicksand', sans-serif !important;
}

.product-rich-text p {
  margin-bottom: 1.25rem !important;
}

.product-rich-text h2,
.product-rich-text h3,
.product-rich-text h4 {
  color: #222222 !important;
  font-weight: 800 !important;
  margin-top: 1.75rem !important;
  margin-bottom: 0.85rem !important;
}

.product-rich-text h2 { font-size: 1.5rem !important; color: #62AC49 !important; }
.product-rich-text h3 { font-size: 1.3rem !important; }
.product-rich-text h4 { font-size: 1.15rem !important; }

.product-rich-text ul,
.product-rich-text ol {
  margin-bottom: 1.5rem !important;
  padding-left: 1.75rem !important;
}

.product-rich-text li {
  margin-bottom: 0.6rem !important;
  line-height: 1.6 !important;
}

.product-rich-text table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 1.5rem 0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  border: 1px solid #EBE0D6 !important;
}

.product-rich-text th,
.product-rich-text td {
  padding: 0.9rem 1.25rem !important;
  border: 1px solid #EBE0D6 !important;
  text-align: left !important;
  font-size: 1rem !important;
}

.product-rich-text th {
  background-color: #FFF8F0 !important;
  color: #62AC49 !important;
  font-weight: 700 !important;
}

.product-rich-text td.spec-name {
  font-weight: 700 !important;
  color: #2E2E2E !important;
  width: 35% !important;
  background-color: #FAFAFA !important;
}

/* ==========================================================================
   Bullet Point Styling for Specifications & Features (Green Bullets)
   ========================================================================== */

.specs-list,
.product-info__features,
.product-rich-text ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-top: 1rem !important;
  margin-bottom: 1.5rem !important;
}

.specs-list li,
.product-info__features li,
.product-rich-text ul li {
  position: relative !important;
  padding-left: 1.8rem !important;
  margin-bottom: 0.85rem !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
  color: #444444 !important;
  font-family: 'Quicksand', sans-serif !important;
}

.specs-list li::before,
.product-info__features li::before,
.product-rich-text ul li::before {
  content: "•" !important;
  position: absolute !important;
  left: 0.2rem !important;
  top: -2px !important;
  color: #62AC49 !important; /* Brand Green */
  font-size: 1.6rem !important;
  font-weight: bold !important;
  line-height: 1 !important;
}

.specs-list li strong,
.specs-list li b {
  color: #2E2E2E !important;
  font-weight: 700 !important;
  margin-right: 0.35rem !important;
}

/* ==========================================================================
   Header Quote Button & Mobile Sticky Quote Bar Styling
   ========================================================================== */

/* Reduce Header Button Padding */
.header-quote-btn {
  padding: 0.5rem 0.8rem !important;
  font-size: 0.9rem !important;
}

/* Mobile Sticky Quote Bar */
.mobile-sticky-quote-bar {
  display: none;
}

/* Hamburger X Close Animation */
.hamburger.is-active .hamburger__line:nth-child(2),
.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0 !important;
}

.hamburger.is-active .hamburger__line:nth-child(1),
.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg) !important;
  background-color: #62AC49 !important;
}

.hamburger.is-active .hamburger__line:nth-child(3),
.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg) !important;
  background-color: #62AC49 !important;
}

@media (max-width: 991px) {
  /* Hide Header Quote Button on Mobile & Tablets */
  .header-quote-btn {
    display: none !important;
  }

  /* Show Sticky Footer Bar on Mobile & Tablets */
  .mobile-sticky-quote-bar {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #FFFFFF !important;
    padding: 0.75rem 1rem !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15) !important;
    z-index: 999999 !important;
  }

  .mobile-sticky-quote-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    background-color: #62AC49 !important; /* Brand Green */
    color: #FFFFFF !important;
    padding: 0.85rem 1rem !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(98, 172, 73, 0.3) !important;
    transition: background-color 0.25s ease !important;
    font-family: 'Quicksand', sans-serif !important;
  }

  .mobile-sticky-quote-btn:hover {
    background-color: #F7912B !important; /* Brand Orange */
    color: #FFFFFF !important;
  }

  /* Adjust WhatsApp Floating Icon on Mobile to stack cleanly above sticky footer bar */
  .whatsapp-float {
    bottom: 75px !important;
    right: 15px !important;
    z-index: 999998 !important;
  }
}








