@charset "UTF-8";
/*
Theme Name: CMK
Author: CMK
Description: We specialize in helping small businesses thrive by providing expert guidance in business planning and growth strategy.
Version: 1.0.0
*/
/* --- Global Styles & Variables --- */
:root {
  --primary-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --base-color: #F8F5F2; /* Soft, elegant background */
  --text-color: #555;
  --heading-color: #1a1a1a;
  --accent-color: #000000;
  --accent-hover: #333333;
  --subtle-border: #EFEBE7;
  --dropdown-hover-bg: #f1ede9; /* UPDATED: No more green */
  --icon-hover-color: #1a1a1a; /* UPDATED: Dark icon on hover */
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0px 2px 8px rgba(0, 0, 0, .25);
}

body {
  font-family: var(--primary-font);
  background-color: var(--base-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 700;
}

.common-space {
  padding: 60px 0px;
}

/* --- Premium Header --- */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
.site-header .header-search-btn {
  color: #ffffff;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 10px;
  margin-right: 16px;
  line-height: 1;
  border-radius: 50%;
  background: #212529;
  transition: background-color 0.3s ease;
  border: 1px solid var(--accent-color);
}
.site-header .header-search-btn:hover {
  background-color: transparent;
  color: #000;
  border: 1px solid var(--accent-color);
}

.site-header .navbar {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--subtle-border);
  border-radius: 15px;
  padding: 0px 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.site-header.sticky .navbar {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0);
}

.navbar-brand img {
  height: 70px; /* Adjust as needed */
  width: auto;
}

.navbar-nav .nav-link {
  color: #000;
  font-weight: 500;
  padding: 10px 22px !important;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--heading-color);
}

.get-a-quote {
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

/* --- Dropdown Menu with Icons --- */
.dropdown-menu {
  border: 1px solid var(--subtle-border);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  padding: 8px;
  min-width: 260px; /* Wider for icons */
}

.dropdown-item {
  color: var(--text-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: #999;
  transition: color 0.2s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--dropdown-hover-bg);
  color: var(--heading-color);
}

.dropdown-item:hover i, .dropdown-item:focus i {
  color: var(--icon-hover-color);
}

/* --- Desktop Hover Functionality --- */
@media (min-width: 992px) {
  /* Hide dropdown by default */
  .dropdown .dropdown-menu {
    display: none;
  }
  /* Show on hover */
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .dropdown:hover > .dropdown-menu .dropdown-menu {
    overflow-y: auto;
    max-height: 423px;
  }
  .dropdown-submenu {
    position: relative;
  }
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 0px;
  }
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
  .dropdown-submenu > .dropdown-toggle:after {
    content: "›";
    border: none;
    font-size: 20px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.hero-banner {
  position: relative;
}
.hero-banner .item {
  position: relative;
  padding-top: 170px;
  padding-bottom: 6rem;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .hero-banner .item {
    text-align: center;
    min-height: 450px;
  }
  .hero-banner .item .row {
    justify-content: center;
  }
}
.hero-banner .slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-banner .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 2;
}
.hero-banner .container {
  position: relative;
  z-index: 3;
}
.hero-banner .hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--heading-color);
}
.hero-banner .hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
  color: #000;
}
.hero-banner .hero-buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 991px) {
  .hero-banner .hero-buttons {
    justify-content: center;
  }
}
.hero-banner .hero-buttons .btn {
  padding: 15px 35px;
  border-radius: 50px;
}
.hero-banner .hero-buttons .btn.btn-outline-dark {
  color: var(--heading-color);
}
.hero-banner .hero-buttons .btn.btn-outline-dark:hover {
  color: white;
}

.owl-nav-custom button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--subtle-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--heading-color);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.owl-nav-custom button:hover {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.owl-nav-custom .owl-prev-custom {
  left: 30px !important;
}
.owl-nav-custom .owl-next-custom {
  right: 30px !important;
}

.hero-banner .owl-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hero-banner .owl-dots .owl-dot span {
  background: rgba(0, 0, 0, 0.3);
}
.hero-banner .owl-dots .owl-dot.active span {
  background: var(--accent-color);
}

/* --- Product Categories Section --- */
.product-categories-section {
  background-color: #fff;
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.section-subtitle {
  max-width: 550px;
  margin: 1rem auto 0 auto;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* --- Ultra-Premium Product Gallery Section --- */
.product-gallery-section {
  background-color: #fff;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.product-gallery-section .section-subtitle {
  max-width: 600px;
  margin: 1rem auto 0 auto;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* --- Refined Tab Bar Styling v2 --- */
.nav-tabs-v2 {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
  gap: 2rem; /* Generous spacing for a premium feel */
}

.nav-tabs-v2 .nav-link {
  font-family: var(--primary-font);
  font-weight: 500;
  color: var(--text-color);
  padding: 0.5rem 0.25rem;
  margin: 0;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  position: relative;
}

.nav-tabs-v2 .nav-link:hover {
  color: var(--heading-color);
}

.nav-tabs-v2 .nav-link.active {
  color: var(--heading-color);
  border-bottom-color: var(--accent-color);
}

/* --- NEW Ultra-Premium Product Gallery Item Styling --- */
.product-gallery-item {
  display: block;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.2784313725);
  padding: 10px 20px;
  border-radius: 10px;
}

.product-gallery-item:hover {
  transform: translateY(-10px);
}

.product-gallery-image {
  background-color: var(--base-color);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
}

.product-gallery-image img {
  max-width: 125px;
  border-radius: 12px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-gallery-item:hover .product-gallery-image img {
  transform: scale(1.05);
}

.product-gallery-content {
  text-align: left;
}
.product-gallery-content p {
  color: #000000;
}

.product-gallery-title {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.product-gallery-item:hover .product-gallery-title {
  color: var(--accent-color);
}

.product-gallery-tag {
  display: inline-block;
  font-family: var(--primary-font);
  font-size: 0.85rem;
  color: var(--text-color);
  background-color: var(--base-color);
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 500;
}

/* --- FINAL Premium About Us Section (SCSS Version) --- */
.about-section-v2 {
  background-color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.about-section-v2 .about-content-wrapper {
  position: relative;
  z-index: 10;
  margin-left: auto;
}
.about-section-v2 .about-content-wrapper .about-pretitle {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 1rem;
  display: block;
}
.about-section-v2 .about-content-wrapper .about-heading {
  font-family: var(--heading-font);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.about-section-v2 .about-content-wrapper .about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 2.5rem;
}
.about-section-v2 .about-commitments {
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--subtle-border);
  padding-top: 2rem;
}
.about-section-v2 .about-commitments .commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-section-v2 .about-commitments .commitment-item .commitment-icon {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-top: 5px;
}
.about-section-v2 .about-commitments .commitment-item .commitment-text h5 {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}
.about-section-v2 .about-commitments .commitment-item .commitment-text p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.5;
  margin: 0;
}
.about-section-v2 .about-image-wrapper {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  height: 120%;
}
.about-section-v2 .about-image-wrapper .about-image-background {
  position: absolute;
  top: 0;
  right: 20%;
  left: auto;
  width: 80%;
  height: 100%;
  background-color: var(--base-color);
  border-radius: 12px;
}
.about-section-v2 .about-image-wrapper .about-image {
  position: absolute;
  top: 50%;
  right: 25px;
  left: auto;
  transform: translateY(-50%);
  width: 85%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .about-section-v2 {
    padding: 4rem 0;
  }
  .about-section-v2 .about-content-wrapper {
    margin: 0 auto;
    text-align: center;
  }
  .about-section-v2 .about-commitments {
    justify-content: center;
    text-align: left;
  }
}

/* --- FINAL Premium Why Choose Us Section (v2 Staggered) --- */
.why-choose-us-v2 {
  background-color: #fff;
  overflow: hidden;
  padding: 4rem 0px;
}

.feature-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.feature-image-wrapper img:hover {
  transform: scale(1.03);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-item-v2 {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  text-align: left;
}

.feature-icon-v2 {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.feature-title-v2 {
  font-family: var(--primary-font);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.feature-description-v2 {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .why-choose-us-v2 .row {
    margin-bottom: 3rem !important;
  }
  .feature-image-wrapper {
    margin-bottom: 2rem;
  }
}
/* --- FINAL Premium Testimonial / Trust Badge Section --- */
.testimonial-section-v3 {
  background-color: #fff;
  padding: 5rem 0;
}

.testimonial-slider-wrapper {
  position: relative;
}

/* --- Updated Testimonial Card with Zoom Effect --- */
.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid var(--subtle-border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* Smooth transition for the zoom effect */
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 1;
  /* The Hover Zoom Effect */
}
.testimonial-card:hover {
  transform: scale(1.05) translateY(-5px); /* Zooms in 5% and moves up slightly */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); /* Adds a deeper shadow to make it "pop" */
  border-color: #000; /* Optional: Highlights the border */
  z-index: 10; /* Ensures it sits on top of neighboring cards */
}

.author-avatar {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 1rem auto;
}

.testimonial-quote {
  font-family: var(--primary-font);
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.company-logo {
  margin-bottom: 1.5rem;
}
.company-logo img {
  max-height: 25px;
  width: auto !important;
  filter: grayscale(100%);
  opacity: 0.6;
  margin: 0 auto;
}

.star-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
  font-size: 1.1rem;
  color: #FFC107;
}

/* Custom Owl Carousel Navigation */
.testimonial-section-v3 .owl-nav {
  display: none;
}

.owl-nav-custom button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--subtle-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--heading-color);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.owl-nav-custom button:hover {
  background-color: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}
.owl-nav-custom .owl-prev-custom {
  left: -25px;
}
.owl-nav-custom .owl-next-custom {
  right: -25px;
}

@media (max-width: 1199px) {
  .owl-nav-custom {
    display: none;
  }
}
/* --- FINAL Premium Key Features Section --- */
.features-section-v2 {
  background-color: var(--base-color);
  padding: 4rem 0px;
}

.feature-card-v2 {
  background-color: #fff;
  border: 1px solid var(--subtle-border);
  border-radius: 12px;
  padding: 2.5rem;
  padding-top: 4rem;
  text-align: center;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.feature-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px S30px rgba(0, 0, 0, 0.07);
}

.feature-icon-wrapper {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--subtle-border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--heading-color);
}

.feature-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-family: var(--primary-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-button {
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 500;
  border-width: 2px;
  align-self: center;
  margin-top: auto;
}
.feature-button:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* --- FINAL Premium Footer Section --- */
.site-footer {
  position: relative;
  background-color: #0a0a0a;
  color: #a9a9a9;
  padding: 5rem 0 0 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" transform="rotate(45)" opacity="0.03" version="1.1" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><g fill="%23ffffff" fill-opacity="1"><rect x="50" y="-50" width="1" height="200"/></g></svg>');
}
.site-footer .footer-main {
  padding-bottom: 4rem;
}
.site-footer .footer-col {
  margin-bottom: 2rem;
}
.site-footer .footer-logo img {
  max-height: 70px;
  margin-bottom: 1rem;
}
.site-footer .footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}
.site-footer .footer-title {
  font-family: var(--primary-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.site-footer .footer-links, .site-footer .footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li, .site-footer .footer-contact-info li {
  margin-bottom: 0.75rem;
}
.site-footer .footer-links a, .site-footer .footer-contact-info a {
  text-decoration: none;
  color: #a9a9a9;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.site-footer .footer-links a:hover, .site-footer .footer-contact-info a:hover {
  color: #fff;
  padding-left: 5px;
}
.site-footer .footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.site-footer .footer-contact-info li i {
  margin-top: 5px;
  color: #fff;
}
.site-footer .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}
.site-footer .footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer .footer-social .social-icon:hover {
  color: #fff !important;
}
.site-footer .footer-social .social-icon.social-icon-facebook:hover {
  background-color: #1877F2;
}
.site-footer .footer-social .social-icon.social-icon-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.site-footer .footer-social .social-icon.social-icon-twitter:hover {
  background-color: #1DA1F2;
}
.site-footer .footer-social .social-icon.social-icon-linkedin:hover {
  background-color: #0A66C2;
}
.site-footer .newsletter-form {
  position: relative;
  max-width: 250px;
}
.site-footer .newsletter-form input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 50px 12px 20px;
  color: #fff;
  font-size: 0.9rem;
}
.site-footer .newsletter-form input::-moz-placeholder {
  color: #a9a9a9;
}
.site-footer .newsletter-form input::placeholder {
  color: #a9a9a9;
}
.site-footer .newsletter-form input:focus {
  outline: none;
  border-color: #fff;
}
.site-footer .newsletter-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background-color: #fff;
  color: #1a1a1a;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.site-footer .newsletter-form button:hover {
  background-color: var(--accent-hover);
  color: #fff;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-bottom .copyright-text {
  margin: 0;
  font-size: 0.9rem;
}
.site-footer .footer-bottom .policy-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #a9a9a9;
  transition: color 0.3s ease;
}
.site-footer .footer-bottom .policy-links a:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* --- FINAL Premium CTA Section --- */
.cta-section {
  position: relative;
  background-color: #1a1a1a;
  padding: 6rem 0;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('data:image/svg+xml;utf8,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="%23ffffff" stroke-width="0.5"/></pattern></defs><rect width="80" height="80" fill="url(%23grid)" /></svg>');
  opacity: 0.15;
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-subheading {
  font-size: 1.1rem;
  color: #a9a9a9;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

.cta-button {
  border-radius: 50px;
  padding: 1rem 3rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-width: 2px;
  border-color: #fff;
  background-color: #fff;
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: transparent;
  color: #fff;
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 2.5rem;
  }
}
/* --- FINAL Premium Floating Action Buttons --- */
.floating-action-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1050;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.floating-action-buttons a {
  text-decoration: none;
}

.fab-toggle {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 2;
}
.fab-toggle i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.fab-toggle:hover {
  transform: scale(1.1);
}

.fab-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.fab-option-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fab-label {
  background-color: #fff;
  color: var(--heading-color);
  padding: 5px 12px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.fab-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}
.fab-icon i {
  font-size: 1.4rem;
}
.fab-icon:hover {
  transform: scale(1.1);
}

.fab-whatsapp {
  background-color: #25D366;
}

.fab-call {
  background-color: #34B7F1;
}

.floating-action-buttons.active .fab-options {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.floating-action-buttons.active .fab-toggle i {
  transform: rotate(45deg);
}

/* --- FINAL Premium Page Header & Breadcrumb (SCSS with Background Image) --- */
.page-header {
  position: relative;
  padding: 8rem 0 1rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid #cfcfcf;
  z-index: 1;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f5f2;
  z-index: -1;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header .page-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
}
.page-header ol.breadcrumb {
  justify-content: center;
}
.page-header .breadcrumb-item {
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 500;
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgba(0, 0, 0, 0.7);
  padding: 0 0.75rem;
}
.page-header .breadcrumb-item a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-header .breadcrumb-item a i {
  margin-right: 5px;
}
.page-header .breadcrumb-item a:hover {
  color: #1a1a1a;
}
.page-header .breadcrumb-item.active {
  color: #000000;
  font-weight: 600;
}
@media (max-width: 768px) {
  .page-header {
    padding: 5rem 0;
    margin-top: 80px;
  }
  .page-header .page-title {
    font-size: 1.5rem;
  }
}

/* --- FINAL Premium & Creative About Us Section (SCSS) --- */
.about-us-final {
  background-color: #fff;
  padding-bottom: 30px;
  padding-top: 30px;
}

.about-image-final {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.about-image-final img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-final-content {
  background-color: #fff;
  border-radius: 12px;
  padding: 3rem;
  position: relative;
  z-index: 10;
  margin-left: -5rem;
}

.about-pretitle {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 1rem;
  display: block;
}

.about-heading {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  border-bottom: 1px solid var(--subtle-border);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.about-commitments-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.commitment-item-final {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.commitment-item-final .icon-wrapper {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--base-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.commitment-item-final .text-content h5 {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}
.commitment-item-final .text-content p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .about-final-content {
    margin-left: 0;
    margin-top: -3rem;
    border-radius: 0 0 12px 12px;
  }
  .about-image-final {
    border-radius: 12px 12px 0 0;
  }
}
/* --- FINAL Premium Vision & Mission Section (SCSS) --- */
.vision-mission-section {
  position: relative;
  background-color: var(--base-color);
  overflow: hidden;
}
.vision-mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><g fill="%23f8f5f2" fill-opacity="1"><path d="M0 19.5h40v1H0zM19.5 0v40h1V0z"/></g></svg>');
  opacity: 0.5;
}

.vision-mission-section .container {
  position: relative;
  z-index: 2;
}

.vm-card {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid var(--subtle-border);
  padding: 3rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.vm-icon {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.vm-title {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.vm-text {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
}

/* --- FINAL Premium Contact Us Page Section (SCSS) --- */
.contact-page-section {
  background-color: var(--base-color);
}

.contact-info-wrapper {
  padding: 3rem;
  padding-right: 5rem;
  position: relative;
  z-index: 5;
}

.contact-pretitle {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 1rem;
  display: block;
}

.contact-heading {
  font-family: var(--heading-font);
  font-size: 3rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.contact-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 2.5rem;
}

.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-details-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}
.contact-details-list li i {
  font-size: 1.2rem;
  color: var(--heading-color);
  width: 25px;
  text-align: center;
}
.contact-details-list li a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}
.contact-details-list li a:hover {
  color: var(--heading-color);
}

.contact-social {
  display: flex;
  gap: 0.75rem;
}
.contact-social .social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--subtle-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}
.contact-social .social-icon:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.contact-form-wrapper {
  background-color: #fff;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
  margin-left: -3rem;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control, .form-select {
  background-color: var(--base-color);
  border: 1px solid var(--subtle-border);
  border-radius: 8px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}
.form-control:focus, .form-select:focus {
  border-color: var(--heading-color);
  box-shadow: none;
  background-color: #fff;
}

.submit-button {
  border-radius: 50px;
  padding: 1rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .contact-info-wrapper {
    padding: 2rem 1rem;
    text-align: center;
  }
  .contact-details-list {
    align-items: center;
  }
  .contact-details-list li {
    justify-content: center;
  }
  .contact-social {
    justify-content: center;
  }
  .contact-form-wrapper {
    margin-left: 0;
    border-radius: 12px;
  }
}
/* --- FINAL Premium Blog Listing Page (SCSS) --- */
.blog-listing-section {
  background-color: var(--base-color);
}

.blog-card {
  display: block;
  text-decoration: none;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--subtle-border);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.blog-card-image {
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-category {
  display: inline-block;
  font-family: var(--primary-font);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}
.blog-card-author .author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-card-featured .blog-card-content {
  padding: 2rem;
}
.blog-card-featured .blog-card-title {
  font-size: 2.2rem;
}

.blog-pagination {
  margin-top: 4rem;
}
.blog-pagination .page-link {
  border-radius: 50px !important;
  margin: 0 5px;
  padding: 10px 18px;
  border: 1px solid var(--subtle-border);
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
}
.blog-pagination .page-link:hover {
  background-color: var(--base-color);
  border-color: var(--base-color);
}
.blog-pagination .page-link:focus {
  box-shadow: none;
}
.blog-pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}
.blog-pagination .page-item.disabled .page-link {
  background-color: transparent;
}

@media (max-width: 991px) {
  .blog-card-featured .row {
    flex-direction: column;
  }
  .blog-card-featured .blog-card-image, .blog-card-featured .blog-card-content {
    width: 100%;
  }
  .blog-card-featured .blog-card-title {
    font-size: 1.8rem;
  }
}
/* --- FINAL Definitive Blog Detail Page (SCSS) --- */
.blog-detail-final-layout {
  background-color: #fff;
  padding: 60px 0px;
}

.blog-post-wrapper .post-header {
  border-bottom: 1px solid var(--subtle-border);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.blog-post-wrapper .post-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  line-height: 1.3;
}
.blog-post-wrapper .post-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.blog-post-wrapper .article-content {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.1rem;
  line-height: 1.8;
}
.blog-post-wrapper .post-featured-image {
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
  max-height: 325px;
}
.blog-post-wrapper .post-featured-image img {
  width: 100%;
}

/* --- FINAL Definitive Blog Sidebar (SCSS) --- */
.blog-sidebar-final {
  position: sticky;
  top: 120px;
}
.blog-sidebar-final .sidebar-widget {
  background-color: var(--base-color);
  border-radius: 12px;
  padding: 1.3rem;
  margin-bottom: 2rem;
}
.blog-sidebar-final .sidebar-widget:last-child {
  margin-bottom: 0;
}
.blog-sidebar-final .widget-title {
  font-family: var(--primary-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.widget-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--subtle-border);
}
.widget-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.widget-item .widget-image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}
.widget-item .widget-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget-item .widget-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}
.widget-item .widget-item-desc {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.5;
  margin: 0;
}
.widget-item .widget-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  transition: color 0.3s ease;
}
.widget-item .widget-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.widget-item:hover .widget-item-title {
  color: var(--accent-color);
}
.widget-item:hover .widget-link {
  color: var(--accent-color);
}
.widget-item:hover .widget-link i {
  transform: translateX(4px);
}

.newsletter-widget .widget-title, .newsletter-widget p {
  color: rgb(0, 0, 0);
}
.newsletter-widget .form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--subtle-border);
  border-radius: 0;
  padding: 12px 0;
  font-weight: 500;
}
.newsletter-widget .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.newsletter-widget .form-control::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.newsletter-widget .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--heading-color);
}
.newsletter-widget .btn {
  margin-top: 1.5rem;
  border-radius: 50px;
  padding: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.related-posts-section {
  background-color: var(--base-color);
  border-top: 1px solid var(--subtle-border);
}

/* --- FINAL Premium Collection Page (SCSS) --- */
.collection-intro-banners {
  padding-top: 40px;
  background-color: #fff;
}

.intro-banner-card {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.intro-banner-card .banner-bg-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.intro-banner-card .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}
.intro-banner-card .banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--primary-font);
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  width: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px #000;
}
.intro-banner-card:hover .banner-bg-image {
  transform: scale(1.05);
}
.intro-banner-card:hover .banner-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.product-listing-section {
  background-color: #fff;
}

.product-filters-sidebar .filter-title {
  font-weight: 600;
  margin-bottom: 1rem;
}
.product-filters-sidebar .accordion-item {
  border: none;
  border-bottom: 1px solid var(--subtle-border);
}
.product-filters-sidebar .accordion-button {
  font-weight: 500;
  padding: 1rem 0;
}
.product-filters-sidebar .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: var(--heading-color);
}
.product-filters-sidebar .accordion-button:focus {
  box-shadow: none;
}
.product-filters-sidebar .accordion-body {
  padding: 1rem 0;
}
.product-filters-sidebar .form-check {
  margin-bottom: 0.5rem;
}
.product-filters-sidebar .form-check .form-check-input {
  border-color: var(--subtle-border);
}
.product-filters-sidebar .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.product-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.product-grid-header .sort-select {
  max-width: 200px;
}

.product-item a {
  text-decoration: none;
}

.product-card {
  border: 1px solid var(--subtle-border);
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.product-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.product-card .card-header .supplier-logo {
  max-height: 20px;
}
.product-card .card-header .wishlist-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-color);
}
.product-card .product-image {
  padding: 1rem;
}
.product-card .product-image img {
  width: 100%;
  height: 135px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card .card-body {
  padding: 1rem;
  flex-grow: 1;
}
.product-card .card-body .product-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.product-card .card-body .product-meta {
  font-size: 0.85rem;
  color: var(--text-color);
}
.product-card .card-body .product-meta span {
  display: block;
}
.product-card .card-body .sustainability-icons {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #82a37f;
}
.product-card .card-body .sustainability-icons i {
  margin-right: 0.5rem;
}
.product-card .card-footer {
  padding: 1rem;
  background: none;
  border: none;
  padding-top: 0;
}

.modal-content {
  border-radius: 12px;
  border: none;
}

.modal-header {
  border-bottom: 1px solid var(--subtle-border);
}
.modal-header .modal-title {
  font-weight: 600;
}

.modal-footer {
  border-top: none;
}

.product-category-slider-section {
  padding-top: 60px;
  padding-bottom: 2rem;
  background-color: #fff;
  border-bottom: 1px solid var(--subtle-border);
}
.product-category-slider-section .owl-carousel .owl-stage {
  display: flex;
  align-items: flex-start;
}

.category-item {
  display: block;
  text-decoration: none;
  text-align: center;
}
.category-item .category-circle {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.3215686275);
  background-color: var(--base-color);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: rgba(50, 50, 93, 0) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.category-item .category-circle img {
  max-height: 80%;
  max-width: 80%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 5%;
  mix-blend-mode: darken;
}
.category-item .category-label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
  color: #000;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.category-item:hover .category-circle {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.262);
}
.category-item:hover .category-label {
  color: var(--heading-color);
}

.product-hero-section {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}
.product-hero-section .hero-image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), var(--bg-image);
}
.product-hero-section .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.product-hero-section .hero-title {
  font-family: var(--heading-font);
  font-size: 4rem;
  font-weight: 700;
}
.product-hero-section .hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

:root {
  --accent-sage-green: #000000;
  --accent-sage-green-dark: #000000;
}

.product-detail-classic {
  background-color: #fff;
  padding-top: 60px;
  padding-top: 35px;
}

.product-gallery-classic {
  position: sticky;
  top: 120px;
}
.product-gallery-classic .main-image {
  background-color: var(--base-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.product-gallery-classic .main-image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-gallery-classic .thumbnail-images {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.product-gallery-classic .thumbnail-images .thumb-item {
  width: 80px;
  height: 80px;
  border: 2px solid var(--subtle-border);
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.product-gallery-classic .thumbnail-images .thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery-classic .thumbnail-images .thumb-item.active, .product-gallery-classic .thumbnail-images .thumb-item:hover {
  border-color: var(--accent-sage-green);
  opacity: 1;
}

.product-info-classic .product-category-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-sage-green);
  margin-bottom: 1rem;
}
.product-info-classic .product-title {
  font-family: var(--heading-font);
  font-size: 3rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}
.product-info-classic .product-short-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--subtle-border);
}

.variant-selector {
  margin-bottom: 2rem;
}
.variant-selector .variant-label {
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}
.variant-selector .variant-options {
  display: flex;
  gap: 10px;
}
.variant-selector .variant-btn {
  background-color: var(--base-color);
  border: 1px solid var(--subtle-border);
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.variant-selector .variant-btn.active, .variant-selector .variant-btn:hover {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: #fff;
}

.main-buttons {
  display: flex;
  gap: 20px;
}

.enquiry-button-main {
  background-color: #000;
  border-color: #000;
  color: #fff;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.enquiry-button-main:hover {
  background-color: #161616;
  border-color: var(--accent-sage-green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.key-features-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.key-features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.key-features-list .feature-item i {
  color: var(--accent-sage-green);
  width: 20px;
}

.product-details-accordion-classic {
  margin-top: 5rem;
}

@media (max-width: 991px) {
  .product-gallery-classic {
    position: static;
  }
  .product-info-classic .product-title {
    font-size: 2.2rem;
  }
}
.related-products-section {
  background-color: var(--base-color);
  border-top: 1px solid var(--subtle-border);
}
.related-products-section .product-card {
  background: white;
}

.related-posts-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--heading-color);
}

.product-card-v2 {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card-v2 .product-image-link {
  display: block;
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--subtle-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card-v2 .product-image-link .product-image img {
  width: 100%;
  height: 135px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card-v2 .product-image-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}
.product-card-v2 .product-image-link:hover .product-image img {
  transform: scale(1.05);
}
.product-card-v2 .card-body {
  padding: 1.5rem 0 0 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-card-v2 .card-body .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.product-card-v2 .card-body .product-title a {
  text-decoration: none;
  color: var(--heading-color);
}
.product-card-v2 .card-body .product-title a:hover {
  color: var(--accent-color);
}
.product-card-v2 .card-body .product-meta {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}
.product-card-v2 .card-body .btn {
  border-radius: 50px;
  padding: 12px 25px;
  margin-top: auto;
}

.scrolling-text-strip {
  background-color: #1a1a1a;
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  cursor: default;
}

.scrolling-text-content {
  display: flex;
  animation: scroll-left-to-right 30s linear infinite;
}

.scrolling-text-strip:hover .scrolling-text-content {
  animation-play-state: paused;
}

.scrolling-text-item {
  display: flex;
  align-items: center;
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.scrolling-text-item .separator {
  color: white;
  font-size: 1.5rem;
  margin: 0 1.5rem;
}

@keyframes scroll-left-to-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .scrolling-text-item {
    font-size: 0.9rem;
  }
}
/* --- FINAL Premium "Global Challenge" Section (Editorial Version SCSS) --- */
.global-challenge-v2 {
  background-color: #000000;
}

.challenge-image-wrapper {
  overflow: hidden;
}
.challenge-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.challenge-image-wrapper img:hover {
  transform: scale(1.03);
}

.challenge-content-v2 {
  padding: 2rem 0;
}
.challenge-content-v2 .pretitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.challenge-content-v2 .headline {
  font-family: var(--heading-font);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  color: #ffffff;
}
.challenge-content-v2 .headline span {
  color: #656565;
}

.key-points-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-top: 1px solid var(--subtle-border);
  padding-top: 2.5rem;
}

.key-point-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.key-point-item .icon-wrapper {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--base-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.key-point-item .text-content h5 {
  font-family: var(--primary-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.key-point-item .text-content p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .global-challenge-v2 {
    text-align: center;
  }
  .challenge-image-wrapper {
    margin-bottom: 2rem;
  }
  .key-points-list {
    text-align: left;
  }
}
/* --- FINAL Premium "Related Blogs" Slider (Arrows Only SCSS) --- */
.related-posts-section {
  background-color: var(--base-color);
  border-top: 1px solid var(--subtle-border);
  padding: 5rem 0;
}

#related-posts-header {
  flex-wrap: wrap;
}

.related-posts-title {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  color: var(--heading-color);
  margin: 0;
  margin-bottom: 15px;
}

.owl-nav-custom-related {
  display: flex;
  gap: 10px;
}
.owl-nav-custom-related button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--subtle-border);
  color: var(--heading-color);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.owl-nav-custom-related button:hover {
  background-color: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.related-posts-section .owl-carousel .owl-nav {
  display: none;
}

.related-posts-section .owl-carousel .owl-dots {
  display: none;
}

@media (max-width: 768px) {
  #related-posts-header {
    justify-content: center !important;
    gap: 1.5rem;
  }
  .related-posts-title {
    width: 100%;
    text-align: center;
  }
}
/* --- FINAL Premium & Creative FAQ Section (SCSS) --- */
.faq-section-v2 {
  background-color: var(--base-color);
  padding: 4rem 0;
}

.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid var(--subtle-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-family: var(--primary-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  padding: 1.5rem;
  position: relative;
  background-color: transparent !important;
  border-radius: 12px;
}
.accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease, color 0.3s ease;
}
.accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #000;
}
.accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--accent-sage-green);
}
.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
}
.accordion-body p {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
  margin: 0;
}

.faq-support-card {
  background-color: #fff;
  border: 1px solid var(--subtle-border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  position: sticky;
  top: 120px;
}
.faq-support-card .support-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--base-color);
  color: var(--accent-sage-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.8rem;
}
.faq-support-card h5 {
  font-family: var(--primary-font);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.faq-support-card p {
  color: var(--text-color);
  margin-bottom: 2rem;
}
.faq-support-card .btn {
  border-radius: 50px;
  padding: 12px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .faq-support-card {
    position: static;
    margin-top: 2rem;
  }
}
.product-category-slider-section {
  padding-top: 40px;
  padding-bottom: 2rem;
  background-color: #fff;
  border-bottom: 1px solid var(--subtle-border);
}
.product-category-slider-section .owl-nav {
  display: none;
}

.owl-nav-custom-cat button {
  position: absolute;
  top: 37%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid var(--subtle-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--heading-color);
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  transition: all 0.3s ease;
}
.owl-nav-custom-cat button:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.owl-nav-custom-cat .owl-prev-custom {
  left: 10px;
}
.owl-nav-custom-cat .owl-next-custom {
  right: 10px;
}

.product-filters-sidebar {
  position: sticky;
  top: 120px;
}
.product-filters-sidebar .sidebar-widget {
  background-color: var(--base-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.product-filters-sidebar .widget-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.product-filters-sidebar .form-check {
  margin-bottom: 0.75rem;
}

.other-collections-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.other-collections-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  text-decoration: none;
  font-weight: 500;
  color: var(--text-color);
  border-bottom: 1px solid var(--subtle-border);
  transition: color 0.3s ease;
}
.other-collections-list li a i {
  transition: transform 0.3s ease;
}
.other-collections-list li a:hover {
  color: var(--heading-color);
}
.other-collections-list li a:hover i {
  transform: translateX(5px);
}
.other-collections-list li:last-child a {
  border: none;
}

.product-card .card-body .product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-sage-green);
  margin-bottom: 0rem;
}

/* --- FINAL Premium Sub-Category Page (SCSS) --- */
.sub-category-page-wrapper {
  background-color: #fff;
  padding-top: 2rem;
}
.sub-category-page-wrapper a {
  text-decoration: none;
}

.sub-category-sidebar {
  position: sticky;
  top: 120px;
}
.sub-category-sidebar .sidebar-widget {
  background-color: var(--base-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.sub-category-sidebar .widget-title {
  font-family: var(--primary-font);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.navigation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation-list li a {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--subtle-border);
  transition: color 0.3s ease;
}
.navigation-list li a:hover {
  color: var(--heading-color);
}
.navigation-list li:last-child a {
  border-bottom: none;
}
.navigation-list .back-link {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1.1rem;
}
.navigation-list .back-link i {
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.navigation-list .back-link:hover i {
  transform: translateX(-5px);
}

.product-detail-classic {
  background-color: #fff;
  padding-top: 35px;
}

.product-gallery-classic {
  position: sticky;
  top: 0px;
}

.product-info-spec-sheet .product-title-block {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--subtle-border);
}
.product-info-spec-sheet .product-title-block .product-title {
  font-family: var(--primary-font);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}
.product-info-spec-sheet .product-title-block .supplier-link {
  text-decoration: none;
  font-weight: 500;
  color: var(--accent-sage-green);
}
.product-info-spec-sheet .product-title-block .supplier-link:hover {
  text-decoration: underline;
}

.spec-table {
  margin-bottom: 1.5rem;
}
.spec-table .spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--subtle-border);
}
.spec-table .spec-row .spec-label {
  font-weight: 500;
  color: var(--heading-color);
}
.spec-table .spec-row .spec-value {
  font-weight: 500;
  color: var(--text-color);
  text-align: right;
}
.spec-table .spec-row .spec-value.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
}

.main-buttons {
  display: flex;
  gap: 1rem;
}
.main-buttons .enquiry-button-main {
  border-radius: 50px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.main-buttons .enquiry-button-main:not(.btn-outline-dark) {
  background-color: var(--accent-sage-green);
  border-color: var(--accent-sage-green);
  color: #fff;
}
.main-buttons .enquiry-button-main:not(.btn-outline-dark):hover {
  background-color: var(--accent-sage-green-dark);
  border-color: var(--accent-sage-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.main-buttons .enquiry-button-main.btn-outline-dark {
  background-color: transparent;
  color: var(--heading-color);
  border-color: var(--subtle-border);
}
.main-buttons .enquiry-button-main.btn-outline-dark:hover {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: #fff;
}

.product-details-accordion-classic {
  margin-top: 5rem;
}

.commitment-v3 {
  background-color: var(--base-color);
  padding: 6rem 0;
  overflow: hidden;
}

.process-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--subtle-border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}
.process-card .card-icon {
  font-size: 2.5rem;
  color: var(--accent-sage-green);
  margin-bottom: 1.5rem;
}
.process-card .card-title {
  font-family: var(--primary-font);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.process-card .card-description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
}

.commitment-v4 {
  background-color: var(--base-color);
  padding: 4rem 0;
  overflow: hidden;
}

.process-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--subtle-border);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}
.process-card .card-icon {
  font-size: 2.5rem;
  color: var(--accent-sage-green);
  margin-bottom: 1.5rem;
}
.process-card .card-title {
  font-family: var(--primary-font);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.process-card .card-description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.7;
}

@media (min-width: 992px) {
  .row .col-lg-4:nth-child(1) .process-card::after,
  .row .col-lg-4:nth-child(2) .process-card::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    width: calc(3rem + 2px);
    height: 2px;
    background-image: linear-gradient(to right, #1a1a1a 70%, transparent 70%);
    background-size: 8px 2px;
  }
  .row .col-lg-4:nth-child(1) .process-card::after::before,
  .row .col-lg-4:nth-child(2) .process-card::after::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #1a1a1a;
  }
}
.process-connector {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 150px;
  z-index: 1;
  left: 33.33%;
  transform: translate(-50%, -50%);
}
.process-connector svg {
  width: 100%;
  height: 100%;
}
.process-connector svg path {
  fill: none;
  stroke: #1a1a1a;
  stroke-width: 2;
  stroke-dasharray: 4;
  transition: stroke-dashoffset 0.4s ease;
}

.col-lg-4:hover + .process-connector svg path,
.process-connector:hover svg path {
  stroke-dashoffset: 20;
}

.blog-listing-with-sidebar {
  background-color: #fff;
  padding-top: 60px;
}

.blog-card {
  display: block;
  text-decoration: none;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--subtle-border);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}
.blog-card .blog-card-image {
  overflow: hidden;
}
.blog-card .blog-card-image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card .blog-card-image:hover img {
  transform: scale(1.05);
}
.blog-card .blog-card-content {
  padding: 1.5rem;
}
.blog-card .blog-card-category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 0.75rem;
}
.blog-card .blog-card-title {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}
.blog-card .blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.7;
}

.blog-pagination {
  margin-top: 4rem;
}

.blog-sidebar-final {
  position: sticky;
  top: 120px;
}
.blog-sidebar-final .sidebar-widget {
  background-color: var(--base-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.blog-sidebar-final .sidebar-widget:last-child {
  margin-bottom: 0;
}
.blog-sidebar-final .widget-title {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
}

.collections-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.collections-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  text-decoration: none;
  font-weight: 600;
  color: var(--text-color);
  border-bottom: 1px solid var(--subtle-border);
  transition: color 0.3s ease;
}
.collections-list li a i {
  transition: transform 0.3s ease;
}
.collections-list li a:hover {
  color: var(--heading-color);
}
.collections-list li a:hover i {
  transform: translateX(5px);
}
.collections-list li:last-child a {
  border-bottom: none;
}

.newsletter-widget {
  background-color: var(--accent-sage-green);
  color: #000000;
}
.newsletter-widget .widget-title {
  color: #000000;
}
.newsletter-widget p {
  color: rgba(0, 0, 0, 0.9);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.newsletter-widget .form-control {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid transparent;
  color: #fff;
}
.newsletter-widget .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.newsletter-widget .form-control::placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.newsletter-widget .form-control:focus {
  background-color: rgba(255, 255, 255, 0);
  color: var(--heading-color);
}
.newsletter-widget .btn {
  margin-top: 1rem;
}

@media (max-width: 991px) {
  .blog-sidebar-final {
    position: static;
    margin-top: 4rem;
  }
}
/* --- FINAL Definitive Interactive Product Gallery Section (6-Column CSS Grid SCSS) --- */
.product-gallery-section-v2 {
  background-color: #fff;
}

.product-grid-6-col {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
@media (max-width: 1200px) {
  .product-grid-6-col {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid-6-col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .product-grid-6-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
  border-radius: 10px;
}
.gallery-card:hover {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}
.gallery-card:hover img {
  opacity: 1;
}
.gallery-card:last-child {
  border: none;
}

.card-image-wrapper {
  position: relative;
  border-radius: 12px;
  width: 111px;
  height: 94px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card-image-wrapper img {
  width: 75%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 5%;
  mix-blend-mode: darken;
  opacity: 0.6;
}
.card-image-wrapper .overlay {
  display: none;
}
.card-image-wrapper .view-collection-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(10px);
  background-color: #fff;
  color: var(--heading-color);
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: none;
}

.card-content {
  padding: 0.5rem 0.5rem;
  text-align: center;
}
.card-content .card-title {
  font-family: var(--heading-font);
  font-size: 14px;
  color: var(--heading-color);
  margin: 0;
  transition: color 0.3s ease;
  font-weight: 500;
}

.gallery-card:hover .card-image-wrapper img {
  transform: scale(1.05);
}
.gallery-card:hover .card-image-wrapper .overlay {
  opacity: 1;
}
.gallery-card:hover .card-image-wrapper .view-collection-btn {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}
.gallery-card:hover .card-content .card-title {
  color: var(--accent-sage-green);
}

.nav-tabs-v2 { /* ... your existing nav tab styles ... */ }

/* =========================================
   NEW EXPANDING SEARCH STYLES
   ========================================= */
.expandable-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* The Search Form Container */
.expandable-search .search-form {
  position: absolute;
  right: 40px; /* Pushes it to the left of the magnifying glass */
  top: 50%;
  transform: translateY(-50%);
  width: 0; /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth easing */
  background: #fff;
  z-index: 100;
}

/* The Input Field */
.expandable-search .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #333; /* Professional underline style */
  border-radius: 0;
  padding: 5px 10px;
  font-size: 1rem;
  width: 100%;
  box-shadow: none !important;
}

/* The Trigger Button (Magnifying Glass) */
.expandable-search .search-trigger {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #333; /* Change to your text color */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 101;
}

/* Icon Toggling logic */
.expandable-search .close-icon {
  display: none;
}

/* =========================================
   ACTIVE STATE (When Clicked)
   ========================================= */
/* Expand the form */
.expandable-search.active .search-form {
  width: 140px;
  opacity: 1;
  visibility: visible;
}

/* Switch Icons */
.expandable-search.active .open-icon {
  display: none;
}

/* =========================================
   DEFAULT PAGE TYPOGRAPHY (.page.php)
   ========================================= */
/* Wrapper to prevent styles leaking to other parts of site */
.typography-styled {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.8;
}

/* Headings inside page content */
.typography-styled h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.typography-styled h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Paragraphs */
.typography-styled p {
  margin-bottom: 1.5rem;
}

/* Lists (Bullets & Numbers) */
.typography-styled ul,
.typography-styled ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.typography-styled li {
  margin-bottom: 0.5rem;
}

/* Links inside text */
.typography-styled a {
  color: var(--heading-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.typography-styled a:hover {
  color: var(--accent-color); /* Your Green/Brand color */
}

/* Blockquotes */
.typography-styled blockquote {
  border-left: 4px solid var(--heading-color);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #555;
  background: #f9f9f9;
  padding: 20px;
}

/* Images inside content */
.typography-styled img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* --- WordPress Pagination Styling Fix --- */
.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4rem;
}

.blog-pagination .page-numbers {
  display: inline-block;
  border-radius: 50px;
  padding: 10px 20px;
  border: 1px solid var(--subtle-border);
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}

.blog-pagination .page-numbers:hover {
  background-color: var(--base-color);
}

.blog-pagination .page-numbers.current {
  background-color: var(--accent-color); /* Black */
  border-color: var(--accent-color);
  color: #fff;
}

.blog-pagination .prev,
.blog-pagination .next {
  font-weight: 600;
}

/* Typography for Blog Content */
.entry-content-typography {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.entry-content-typography h2 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.entry-content-typography blockquote {
  border-left: 4px solid var(--accent-color); /* Black or Brand Color */
  padding: 20px 30px;
  background: #f9f9f9;
  font-style: italic;
  font-size: 1.2rem;
  color: #333;
  margin: 30px 0;
  border-radius: 0 12px 12px 0;
}

.entry-content-typography img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
}

@media (min-width: 992px) {
  .offcanvas {
    visibility: visible;
    position: static;
    background: transparent;
    border: none;
    justify-content: flex-end;
    flex-grow: 1;
    transition: none;
    width: auto;
    height: auto;
    transform: none;
  }
  .offcanvas-header {
    display: none; /* Hide the "Menu" title and close button on desktop */
  }
  .offcanvas-body {
    padding: 0;
    overflow: visible;
    display: flex;
    flex-grow: 1;
    align-items: center;
  }
  .product-info-spec-sheet .product-title-block .product-title {
    font-size: 1.2rem;
  }
}
/* 2. Mobile Specific Styles (Under 992px) */
@media (max-width: 991.98px) {
  .offcanvas {
    background-color: var(--base-color); /* Matches your site background */
  }
  .offcanvas-header {
    border-bottom: 1px solid var(--subtle-border);
  }
  .offcanvas-body {
    /* This makes the whole container scrollable */
    overflow-y: auto;
    padding: 20px;
  }
  /* --- THE KEY FIX: Force all dropdowns to be expanded --- */
  #offcanvasNavbar .dropdown-menu {
    display: block !important; /* Force open */
    position: static !important; /* Remove floating positioning */
    border: none;
    box-shadow: none;
    background: transparent;
    padding-left: 15px; /* Indent child items */
    margin-top: 0;
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
    border-left: 1px solid #ddd; /* Optional: Add a line to guide the eye */
  }
  /* Style the parent items to look more like headings */
  #offcanvasNavbar .nav-item.dropdown > .nav-link {
    font-weight: 700;
    color: var(--heading-color);
    border-bottom: none;
    padding-bottom: 5px;
  }
  /* Hide the dropdown arrow since it's always open */
  #offcanvasNavbar .dropdown-toggle::after {
    display: none;
  }
  /* Style the child items */
  #offcanvasNavbar .dropdown-item {
    padding: 8px 15px;
    color: var(--text-color);
    white-space: normal; /* Allow text to wrap on mobile */
  }
  /* Adjust spacing for the Search/Quote buttons at bottom */
  .offcanvas-body .d-flex {
    flex-direction: column; /* Stack buttons vertically on mobile */
    align-items: flex-start !important;
    margin-top: 2rem !important;
    border-top: 1px solid var(--subtle-border);
    padding-top: 1.5rem;
    width: 100%;
  }
  .header-search-btn {
    color: #000 !important; /* Make search icon dark on mobile background */
    margin-bottom: 1rem;
    background: transparent;
    border: 1px solid #000;
  }
}
.site-header.sticky {
  background-color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  top: 0;
}

/* --- FIX: Navbar Glass Effect --- */
.site-header .navbar {
  /* Remove styles that trap the fixed menu */
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  /* Layout basics */
  position: relative;
  padding: 0px 10px;
  z-index: 1001;
  /* Create the glass background on a separate layer */
}
.site-header .navbar::before {
  content: "";
  position: absolute;
  inset: 0; /* fills the navbar area */
  z-index: -1; /* sits behind the text */
  /* The styling moves here: */
  background-color: rgb(255, 255, 255);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--subtle-border);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Update Sticky State to target the pseudo-element */
.site-header.sticky .navbar::before {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.05);
  border: 0px solid var(--subtle-border);
}

/* Product Slider Wrapper */
.main-slider-wrapper {
  overflow: hidden; /* Keeps arrows inside bounds */
  border-radius: 12px;
  border: 1px solid var(--subtle-border, #eee);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/* Custom Navigation Arrows */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #000;
}

.slider-nav-btn:hover {
  background-color: #000;
  color: #fff;
}

.slider-nav-btn.prev-btn {
  left: 15px;
}

.slider-nav-btn.next-btn {
  right: 15px;
}

/* Thumbnails */
.thumbnail-images {
  display: flex;
  gap: 10px;
  overflow-x: auto; /* Allow scrolling if many thumbs */
  padding-bottom: 5px;
}

.thumb-item {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumb-item.active, .thumb-item:hover {
  border-color: #000; /* Or your accent color */
  opacity: 1;
}

/* --- FINAL Premium Graphical Commitment Section (Responsive Connectors) --- */
.commitment-graphical-dark {
  background-color: #0f0f0f;
  padding: 4rem 0;
  position: relative;
}
.commitment-graphical-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
}
.commitment-graphical-dark .container {
  position: relative;
  z-index: 2;
}
.commitment-graphical-dark .process-tag {
  display: inline-block;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 50px;
}

.process-card-dark {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 1.5rem 1rem;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  z-index: 2;
}
.process-card-dark:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.process-card-dark:hover .card-icon-wrapper {
  background-color: var(--accent-color);
  color: #fff;
}
.process-card-dark:hover .step-number {
  opacity: 0.5;
}
.process-card-dark .step-number {
  position: absolute;
  top: 28px;
  right: 15px;
  font-family: var(--heading-font);
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  opacity: 0.1;
  line-height: 1;
  transition: all 0.4s ease;
}
.process-card-dark .card-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.4s ease;
}
.process-card-dark .card-title {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.process-card-dark .card-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin: 0;
}

/* =========================================
   CONNECTORS (ARROWS)
   ========================================= */
/* --- SHARED STYLES (Arrow Head & Line) --- */
.process-card-dark::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.process-card-dark::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: 14px;
  z-index: 1;
}

/* --- Product Filter Sidebar Styling --- */
.sub-category-sidebar {
  position: sticky;
  top: 120px; /* Keeps sidebar visible while scrolling */
  z-index: 90;
}
.sub-category-sidebar .sidebar-widget {
  background-color: var(--base-color);
  border: 1px solid var(--subtle-border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
.sub-category-sidebar .sidebar-widget:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border-color: #e0e0e0;
}
.sub-category-sidebar .widget-title {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 10px;
}
.sub-category-sidebar .filter-options {
  max-height: 220px; /* Limits height for long lists */
  overflow-y: auto; /* Adds scrollbar if needed */
  padding-right: 5px;
  /* Custom "Premium" Scrollbar */
}
.sub-category-sidebar .filter-options::-webkit-scrollbar {
  width: 4px;
}
.sub-category-sidebar .filter-options::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.sub-category-sidebar .filter-options::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}
.sub-category-sidebar .filter-options:hover::-webkit-scrollbar-thumb {
  background-color: var(--accent-color); /* Darkens on hover */
}
.sub-category-sidebar .form-check {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  padding-left: 0;
}
.sub-category-sidebar .form-check .form-check-input {
  float: none;
  margin-left: 0;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sub-category-sidebar .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.sub-category-sidebar .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}
.sub-category-sidebar .form-check .form-check-label {
  font-size: 0.95rem;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.2s ease;
  font-weight: 500;
}
.sub-category-sidebar .form-check:hover .form-check-input {
  border-color: var(--heading-color);
}
.sub-category-sidebar .form-check:hover .form-check-label {
  color: var(--heading-color);
}
.sub-category-sidebar .navigation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sub-category-sidebar .navigation-list li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.sub-category-sidebar .navigation-list li a i {
  margin-right: 8px;
  font-size: 0.9rem;
}
.sub-category-sidebar .navigation-list li a:hover {
  transform: translateX(5px);
  color: var(--accent-color);
}
.sub-category-sidebar .filter-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sub-category-sidebar .filter-actions .btn {
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sub-category-sidebar .filter-actions .btn-dark {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
}
.sub-category-sidebar .filter-actions .btn-dark:hover {
  background-color: var(--accent-hover);
}

@media (max-width: 991px) {
  .sub-category-sidebar {
    position: static;
    margin-bottom: 3rem;
    z-index: 1;
  }
}
/* --- MOBILE CONNECTORS (Waterfall Flow: All Down) --- */
@media (max-width: 991px) {
  .col-lg-4 {
    margin-bottom: 3rem;
  }
  .row:last-child .col-lg-4:last-child {
    margin-bottom: 0;
  }
  .process-card-dark::after {
    width: 2px;
    height: 50px;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
  }
  .process-card-dark::before {
    content: "\f078";
    left: 50%;
    bottom: -65px;
    transform: translateX(-50%);
  }
  .process-card-dark[data-step="6"]::after,
  .process-card-dark[data-step="6"]::before {
    display: none;
  }
}
/* --- DESKTOP CONNECTORS (Snake Flow) --- */
@media (min-width: 992px) {
  .process-row-reverse {
    flex-direction: row-reverse;
    margin-top: 15px;
  }
  .process-card-dark::after {
    bottom: auto;
    height: 2px;
    width: 40px;
    top: 50%;
    left: auto;
    transform: none;
  }
  .process-card-dark::before {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .process-card-dark[data-step="1"]::after,
  .process-card-dark[data-step="2"]::after {
    right: -30px;
  }
  .process-card-dark[data-step="1"]::before,
  .process-card-dark[data-step="2"]::before {
    content: "\f054";
    right: -35px;
  }
  .process-card-dark[data-step="3"]::after {
    width: 2px;
    height: 80px;
    top: 100%;
    right: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  }
  .process-card-dark[data-step="3"]::before {
    content: "\f078";
    top: auto;
    bottom: -90px;
    right: 50%;
    transform: translateX(50%);
  }
  .process-card-dark[data-step="4"]::after,
  .process-card-dark[data-step="5"]::after {
    left: -30px;
    right: auto;
  }
  .process-card-dark[data-step="4"]::before,
  .process-card-dark[data-step="5"]::before {
    content: "\f053";
    left: -35px;
    right: auto;
  }
  .process-card-dark[data-step="6"]::after,
  .process-card-dark[data-step="6"]::before {
    display: none;
  }
}
/* --- Variant Options (Size & Closure) --- */
.variant-options {
  margin-bottom: 1.5rem;
}

.variant-pill {
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid var(--subtle-border);
  color: var(--text-color);
  background-color: #fff;
}
.variant-pill:hover {
  background-color: var(--heading-color);
  color: #fff;
  border-color: var(--heading-color);
  transform: translateY(-2px);
}
.variant-pill.active {
  background-color: var(--heading-color);
  color: #fff;
  border-color: var(--heading-color);
}

/* ==========================================================
   NEW ABOUT US PAGE (Staggered Layout + Grid)
   ========================================================== */
/* --- Staggered Top Section --- */
.about-staggered-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.staggered-text-block .staggered-pretitle {
  display: block;
  font-family: var(--primary-font);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 1rem;
}
.staggered-text-block .staggered-heading {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  font-weight: 400; /* Lighter font weight for that premium, modern feel */
  color: var(--heading-color);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.staggered-full-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
}

/* --- Features Grid Section --- */
.about-features-grid .bg-light {
  background-color: #f7f7f7 !important; /* Soft gray wrapper */
  border-radius: 20px;
}

.feature-grid-card {
  padding: 3.5rem 2.5rem;
  border-radius: 16px;
  height: 100%;
  transition: transform 0.3s ease;
}
.feature-grid-card:hover {
  transform: translateY(-5px);
}
.feature-grid-card {
  /* Alternating Background Colors */
}
.feature-grid-card.bg-soft-pink {
  background-color: #F8EFEA; /* Matches the soft beige/pink in screenshot */
}
.feature-grid-card.bg-white-card {
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.feature-grid-card .card-icon {
  font-size: 2.2rem;
  color: #E67E5A; /* The coral/orange color from the screenshot icons */
  margin-bottom: 1.5rem;
}
.feature-grid-card .card-title {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
}
.feature-grid-card .card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color);
  margin: 0;
}

/* --- Dropdown Menu Image Styling --- */
.dropdown-item,
.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dropdown-item .menu-cat-img,
.nav-link .menu-cat-img {
  width: 35px;
  height: 35px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--subtle-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dropdown-item:hover .menu-cat-img,
.nav-link:hover .menu-cat-img {
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.dropdown-item .menu-text,
.nav-link .menu-text {
  font-weight: 500;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .staggered-text-block .staggered-heading {
    font-size: 2.2rem;
  }
  .staggered-image-block {
    margin-top: 2rem !important;
    margin-bottom: 3rem !important;
  }
  .staggered-full-text p {
    text-align: left; /* Better readability on mobile */
  }
  .feature-grid-card {
    padding: 2.5rem 1.5rem;
  }
}
/* --- Mobile Offcanvas Styles --- */
@media (max-width: 991.98px) {
  .offcanvas {
    /* Ensure it has a solid background so you don't see the page behind it */
    background-color: var(--base-color) !important;
    height: 100vh; /* Force full height */
  }
  .offcanvas-header {
    border-bottom: 1px solid var(--subtle-border);
    padding: 1rem 1.5rem;
  }
  .offcanvas-body {
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 80px; /* Extra space at bottom for scrolling */
  }
  /* Let Bootstrap handle opening/closing */
  #offcanvasNavbar .dropdown-menu {
    display: none; /* Changed from block to none */
    position: static !important;
    border: none;
    box-shadow: none;
    background: transparent;
    padding-left: 15px;
    margin-bottom: 0px;
    border-left: 2px solid rgba(0, 0, 0, 0.05);
  }
  /* When clicked, Bootstrap adds the .show class to display it */
  #offcanvasNavbar .dropdown-menu.show {
    display: block;
    margin-bottom: 15px;
    margin-top: 10px;
  }
  #offcanvasNavbar .nav-item.dropdown > .nav-link {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* Restore the arrows and animate them when opened */
  #offcanvasNavbar .dropdown-toggle::after {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  #offcanvasNavbar .dropdown-toggle.show::after {
    transform: rotate(-180deg); /* Flips the arrow upside down when open */
  }
  /* Styling for the bottom buttons on mobile */
  .offcanvas-body .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    margin-top: 2rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid var(--subtle-border);
    width: 100%;
  }
  .header-search-btn {
    color: var(--heading-color) !important;
    margin-bottom: 1rem;
    border: 1px solid var(--subtle-border);
    width: 100%;
    text-align: center;
    border-radius: 50px;
  }
  .get-a-quote {
    width: 100%;
    text-align: center;
  }
  .page-header {
    padding: 2rem 0 1rem 0rem;
    margin-top: 76px;
  }
  .page-header .page-title {
    margin-bottom: 5px;
  }
  .blog-sidebar-final {
    position: static;
    margin-top: -45px;
  }
  .collection-intro-banners .row div {
    margin-top: 15px;
  }
  .collection-intro-banners .row div.banner-overlay {
    margin-top: 0;
  }
  .product-grid-header {
    margin-top: 22px;
  }
  .product-grid-header a {
    text-decoration: none;
  }
  .collection-intro-banners {
    padding-top: 10px;
    background-color: #fff;
  }
  .product-listing-section {
    padding: 40px 0px;
  }
  .product-category-slider-section .owl-nav {
    display: none;
  }
  .site-header {
    background: white;
  }
  .site-header .navbar::before {
    border: 0px solid var(--subtle-border);
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 768px) {
  .site-header {
    top: 0;
  }
  .site-header .navbar {
    border-radius: 0;
  }
  .site-header .navbar::before {
    border-radius: 0;
  }
  .site-header .header-search-btn {
    width: auto;
    color: white !important;
  }
  .offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
    --bs-offcanvas-width: 348px;
  }
  .hero-banner .hero-subtitle {
    max-width: 100%;
  }
  .hero-banner .hero-title br {
    display: none;
  }
  .scrolling-text-item .separator {
    color: #ffffff;
  }
  .card-image-wrapper {
    width: 102px;
    height: 102px;
  }
  .card-content .card-title {
    font-size: 12px;
  }
  .card-content {
    margin-top: 0;
    padding-top: 0;
  }
  .vm-card {
    padding: 1.5rem;
  }
  .vm-icon {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 0rem;
  }
  .vm-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .contact-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .contact-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0px 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .product-info-spec-sheet .product-title-block .product-title {
    font-family: var(--primary-font);
    font-size: 1.2rem;
    margin-top: 33px;
  }
}
.hero-banner .desktop-banner {
  display: block !important;
}

.hero-banner .mobile-banner {
  display: none !important;
}

@media (max-width: 456px) {
  .hero-banner .item {
    height: 80vh;
  }
  .hero-banner .desktop-banner {
    display: none !important;
  }
  .hero-banner .mobile-banner {
    display: block !important;
  }
  .hero-banner .hero-title {
    font-size: 1.5rem;
  }
  .hero-banner .hero-buttons .btn {
    padding: 15px 23px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
  }
  .about-section-v2 .about-content-wrapper .about-heading {
    font-size: 1.2rem;
  }
  .nav-tabs-v2 {
    gap: 1rem;
  }
  .about-section-v2 .about-commitments {
    flex-direction: column;
  }
  .challenge-content-v2 .headline {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .cta-heading {
    font-size: 1.8rem;
  }
  .page-header ol.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
  }
  .about-heading {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
  .vm-text {
    font-size: 0.9rem;
    margin: 0;
  }
  .about-heading {
    font-size: 1.5rem;
  }
  .about-final-content {
    padding: 1rem;
  }
  .contact-details-list li:last-child {
    flex-wrap: wrap;
  }
  .contact-form-wrapper {
    padding: 1rem;
  }
  .spec-table {
    margin-bottom: 0.5rem;
    font-size: 14px;
  }
  .related-posts-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .scrolling-text-content {
    display: flex;
    animation: scroll-left-to-right 9s linear infinite;
  }
  .main-buttons {
    flex-direction: column;
  }
  .main-buttons .enquiry-button-main {
    font-size: 14px;
  }
  .product-detail-classic .product-title {
    font-size: 1rem !important;
    margin-top: 21px;
  }
  .related-products-section .product-item {
    margin-bottom: 15px;
  }
  @keyframes scroll-left-to-right {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-150%);
    }
  }
  .search-overlay.active .search-content {
    padding-top: 65px;
  }
  .search-overlay input.form-control {
    padding: 15px 0;
  }
  .search-overlay .btn {
    font-size: 14px;
  }
  .close-search-btn {
    font-size: 1.5rem;
  }
  .hero-banner .hero-subtitle {
    max-width: 100%;
    margin-bottom: 1.5rem;
    max-width: 550px;
  }
}
footer .tnp-field label {
  display: none;
}
footer .tnp.tnp-subscription form {
  display: flex;
  align-items: center;
}
footer .tnp.tnp-subscription form input#tnp-1 {
  background: rgba(81, 81, 81, 0.2509803922);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  /* display: flex; */
  /* align-items: center; */
}
footer .tnp.tnp-subscription form .tnp-field input[type=submit] {
  position: inherit;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  order: 1px solid #444;
  transition: 0.3s;
}
footer .tnp.tnp-subscription form .tnp-field input[type=submit]:hover {
  background-color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.7254901961);
}

.newsletter-widget .tnp-field label {
  display: none;
}
.newsletter-widget .tnp.tnp-subscription form {
  display: flex;
  align-items: center;
}
.newsletter-widget .tnp.tnp-subscription form input#tnp-1 {
  background: #ffffff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  /* display: flex; */
  /* align-items: center; */
}
.newsletter-widget .tnp.tnp-subscription form .tnp-field input[type=submit] {
  position: inherit;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  order: 1px solid #444;
  transition: 0.3s;
}
.newsletter-widget .tnp.tnp-subscription form .tnp-field input[type=submit]:hover {
  background-color: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.7254901961);
}

.product-detail-classic .product-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* ==========================================================
   MOBILE FILTER OFFCANVAS & BUTTON STYLES
   ========================================================== */
/* The Green Mobile Button */
.btn-mobile-filter {
  background-color: #6fc268;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(111, 194, 104, 0.2);
}
.btn-mobile-filter:hover, .btn-mobile-filter:active, .btn-mobile-filter:focus {
  background-color: #5da857;
  color: #fff;
}

/* Offcanvas overrides specifically for mobile */
@media (max-width: 991px) {
  /* Set background to white */
  #filterSidebar.offcanvas-lg {
    background-color: #fff;
  }
  #filterSidebar .offcanvas-body {
    padding: 1.5rem;
  }
  /* Remove sticky property on mobile so it flows normally inside the offcanvas */
  .sub-category-sidebar {
    position: static !important;
    top: auto !important;
    margin-bottom: 0 !important;
  }
  /* Clean up the widget boxes inside the mobile offcanvas for a cleaner list look */
  #filterSidebar .sidebar-widget {
    background-color: transparent !important;
    padding: 0 0 1rem 0 !important;
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--subtle-border) !important;
  }
  /* Remove bottom border from the last widget */
  #filterSidebar .sidebar-widget:last-child {
    border-bottom: none !important;
  }
}
/* ==========================================================
   MOBILE FILTER OFFCANVAS & BUTTON STYLES
   ========================================================== */
/* The Mobile Button - Now matched to your Theme Dark Color */
.btn-mobile-filter {
  background-color: var(--heading-color); /* Theme's dark black */
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn-mobile-filter:hover, .btn-mobile-filter:active, .btn-mobile-filter:focus {
  background-color: var(--accent-hover);
  color: #fff;
}

/* Fix for the Sort Dropdown Arrow Gap on Mobile */
.mobile-sort-select {
  border-radius: 8px;
  font-size: 0.95rem;
  border-color: #ddd;
  /* Adds extra padding on the right to separate text from the arrow */
  padding: 8px 35px 8px 15px !important;
  font-weight: 500;
  color: var(--heading-color);
  /* Nudges the dropdown arrow slightly inward */
  background-position: right 12px center;
}

/* Offcanvas overrides specifically for mobile */
@media (max-width: 991px) {
  #filterSidebar.offcanvas-lg {
    background-color: #fff;
  }
  #filterSidebar .offcanvas-body {
    padding: 1.5rem;
  }
  .sub-category-sidebar {
    position: static !important;
    top: auto !important;
    margin-bottom: 0 !important;
  }
  #filterSidebar .sidebar-widget {
    background-color: transparent !important;
    padding: 0 0 1rem 0 !important;
    border: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--subtle-border) !important;
  }
  #filterSidebar .sidebar-widget:last-child {
    border-bottom: none !important;
  }
}
/* ==========================================================
   MOBILE MENU FIX (FORCE COLLAPSED DEFAULT)
   ========================================================== */
@media (max-width: 991.98px) {
  /* 1. Force all dropdowns CLOSED by default */
  #offcanvasNavbar .dropdown-menu {
    display: none !important;
    position: static !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding-left: 15px !important;
    margin-bottom: 0px !important;
    border-left: 2px solid rgba(0, 0, 0, 0.05) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  /* 2. Show only when the .show class is added by clicking */
  #offcanvasNavbar .dropdown-menu.show {
    display: block !important;
    margin-bottom: 15px !important;
    margin-top: 10px !important;
  }
  /* 3. Style the parent items (Un-bolded and Left-Aligned) */
  #offcanvasNavbar .nav-item.dropdown > .nav-link,
  #offcanvasNavbar .dropdown-submenu > .dropdown-item.dropdown-toggle {
    font-weight: 500 !important; /* FIX 1: Normal font weight */
    color: var(--heading-color) !important;
    font-size: 1.1rem !important;
    display: flex !important;
    justify-content: flex-start !important; /* FIX 2: Align text to the left */
    align-items: center !important;
    width: 100% !important;
    text-align: left !important;
    gap: 12px !important;
  }
  /* 4. Ensure arrows are visible, animate, and stay on the right */
  #offcanvasNavbar .dropdown-toggle::after {
    display: inline-block !important;
    transition: transform 0.3s ease !important;
    content: "\f078" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    border: none !important;
    font-size: 0.9rem !important;
    margin-left: auto !important; /* FIX 2: Pushes ONLY the arrow to the far right */
  }
  /* Flip arrow when open */
  #offcanvasNavbar .dropdown-toggle.show::after {
    transform: rotate(-180deg) !important;
  }
}
@media (max-width: 456px) {
  .testimonial-section-v3 {
    padding: 3rem 0;
  }
  .cta-section {
    padding: 4rem 0;
  }
  .common-space {
    padding: 40px 0px;
  }
}
.home-video-strip {
  padding: 60px 0 60px;
}

@media (max-width: 768px) {
  .video-strip-card {
    height: 100%;
    border-radius: 22px;
  }
}
@media (max-width: 456px) {
  .hero-banner .container {
    position: relative;
    z-index: 3;
    margin-bottom: 146px;
  }
  .site-footer .footer-main {
    padding-bottom: 0rem;
  }
  section.about-section-v2.common-space {
    padding-top: 0;
  }
  .about-section-v2 .about-content-wrapper .about-text {
    margin-bottom: 0rem;
    padding-bottom: 5px;
  }
  section.why-choose-us-v2.common-space {
    padding-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */