/* ==========================================================================
   1. CSS Reset and Root Variables
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary: #ab7442;
  --light: #f5f5f5;
  --dark: #353535;
  --green: green;
  --black: #130f40;
  --light-color: #666;
  --box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.1);
  --border: 0.2rem solid rgba(0, 0, 0, 0.1);
  --outline: 0.1rem solid rgba(0, 0, 0, 0.1);
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --transition: all 0.3s ease-in-out;

  /* Glassmorphism button variables */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3); /* Reduced shadow */
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
  --glass-color: #fff;
  --glass-filter: blur(15px);
}

/* ==========================================================================
      2. General Styles and Helpers
      ========================================================================== */

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: var(--transition);
}

#spinner {
  display: none !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.empty {
  margin: 0 0 0 auto !important;
}

/* Custom Button Styles (From Provided Animation) */
.custom-btn {
  --hov: 0;
  display: inline-flex; /*Use inline-flex instead of grid*/
  grid-gap: 0.5em;
  grid-template-columns:
    calc(0.375em + var(--hov) * 1em)
    1fr; /*Corrected grid-template-columns*/
  align-items: center;
  /*place-self: center;*/ /*Remove place-self which is used for grid*/
  border: none;
  padding: 0.75em;
  border-radius: 2em;
  background: color-mix(
    in hsl,
    #b5fe83 calc(var(--hov) * 100%),
    #fefefe
  ); /*Corrected color-mix*/
  color: #0e0a0e;
  font: 700 1em/1.375 ubuntu, sans-serif; /*Reduced font-size*/
  transition: 0.3s ease-out;
  transition-delay: calc((1 - var(--hov)) * 0.5 * 0.3s), 0s;
  transition-property: grid-template-columns, background-color;
  cursor: pointer;
  text-decoration: none; /* Added to remove underline from link */
  margin-left: 0 !important;
}

.custom-btn::before {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: #0e0a0e;
  color: hsla(0, 0%, 100%, var(--hov));
  font-weight: 100;
  text-indent: calc((var(--hov) - 1) * 1em);
  clip-path: circle(closest-side);
  transition: inherit;
  transition-delay: calc(var(--hov) * 0.5 * 0.3s);
  transition-property: color, text-indent;
  content: attr(data-ico);
}

.custom-btn:is(:hover, :focus) {
  --hov: 1;
}

/* ==========================================================================
      3. Navbar Styles
      ========================================================================== */

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
  color: var(--dark);
}

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

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/* Navbar Logo Styling */
.navbar-logo {
  height: 75px;
  width: auto;
}

/* Adjust logo size for smaller screens */
@media (max-width: 768px) {
  .navbar-logo {
    height: 45px;
  }
}

@media (max-width: 400px) {
  .navbar-logo {
    max-height: 30px;
  }
}

/* Ensure navbar height is consistent */
.navbar-light .navbar-brand {
  height: auto;
  display: flex;
  align-items: center;
}

.icons {
  display: flex;
  align-items: center;
  width: auto;
  gap: 1.5rem;
}

.icons div {
  height: 2.9rem;
  width: 2.9rem;
  line-height: 2.9rem;
  border-radius: 0.75rem;
  background: #eee;
  color: var(--black);
  font-size: 1.2rem;
  margin-right: 1rem;
  text-align: center;
}

.icons div:hover {
  background: green;
  color: white;
  cursor: pointer;
}

.navbar a {
  font-size: 1.1rem !important;
  margin: 0 1rem !important;
  color: var(--black) !important;
}

.navbar a:hover {
  color: darkgreen !important;
  font-weight: 550 !important;
}

.navbar {
  width: auto !important;
}

#menu-btn {
  display: none;
}

@media (max-width: 992px) {
  .navbar-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    border-top: 1px solid #ddd;
  }

  .navbar-nav.show-menu {
    display: flex;
  }

  .icons {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-right: 1rem;
  }

  #menu-btn {
    display: inline;
    cursor: pointer;
  }
}

@media (max-width: 790px) {
  .icons div {
    height: 2.2rem;
    width: 2.2rem;
    line-height: 2.2rem;
    font-size: 1.1rem;
    margin-right: 0.85rem;
  }
}

@media (max-width: 376px) {
  .icons div {
    height: 2rem;
    width: 2rem;
    line-height: 2rem;
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}

/* ==========================================================================
      4. Language Selector Styles
      ========================================================================== */

.language-selector {
  position: fixed;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1000;
}

/* Language Button Styling - APPLY THE PROVIDED BUTTON STYLING */
.lang-btn {
  --btn-color: rgb(124 45 18);
  --btn-bg: rgb(252 211 77);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: var(--btn-bg);
  color: var(--btn-color);
  padding: 0.5rem 2rem;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  font-family: system-ui;
  border: 2px solid var(--btn-color);
  transition: 100ms ease;
  box-shadow: 5px 5px 0 0 var(--btn-color);
  text-decoration: none; /*Removes underline from links */
}

.lang-btn:hover {
  box-shadow: 2px 2px 0 0 var(--btn-color);
}

.lang-btn:active {
  transition: 50ms ease;
  box-shadow: 0 0 0 0 var(--btn-color);
}

.lang-btn:focus-visible {
  outline: 0;
  --btn-color: #002cc8;
}

.lang-btn:focus-visible::after {
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  content: "\21E7";
  animation: float 0.5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateX(-50%) translatey(0px);
  }

  50% {
    transform: translateX(-50%) translatey(-6px);
  }

  100% {
    transform: translateX(-50%) translatey(0px);
  }
}

/* Responsive adjustments for language selector */
@media (max-width: 768px) {
  .language-selector {
    right: 10px;
  }

  .lang-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
      5. Search Form Styles
      ========================================================================== */

.search-form {
  position: fixed;
  top: -110%;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  max-width: 600px;
  z-index: 1004;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-form.active {
  top: 90px;
}

.search-form-content {
  position: relative;
  display: flex;
  align-items: center;
}

.search-form #search-box {
  width: 100%;
  border: 2px solid #eee;
  padding: 0.8rem 1rem 0.8rem 3rem;
  font-size: 1rem;
  color: #333;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.search-form #search-box:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(171, 116, 66, 0.1);
}

.search-form .fa-search {
  position: absolute;
  left: 1rem;
  color: #999;
  font-size: 1.1rem;
  pointer-events: none;
}

.search-form #close-search {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.3rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.search-form #close-search:hover {
  color: #333;
  background: #f5f5f5;
}

/* Responsive adjustments for search form */
@media (max-width: 768px) {
  .search-form {
    width: 90%;
    padding: 1rem;
  }

  .search-form.active {
    top: 80px;
  }
}

@media (max-width: 480px) {
  .search-form #search-box {
    font-size: 0.9rem;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
  }

  .search-form .fa-search {
    font-size: 1rem;
  }
}

/* Product Search Results */
.productsearch {
  position: absolute;
  width: 100%;
  background: white;
  border-radius: 8px;
  margin-top: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1001;
}

.productsearch-item {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.productsearch-item:last-child {
  border-bottom: none;
}

.search-result-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.search-result-link img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.productsearch-info .name {
  font-weight: 500;
  color: #333;
}

.productsearch-info .category {
  font-size: 0.875rem;
  color: #666;
}

/* ==========================================================================
      6. Header Carousel Styles
      ========================================================================== */

.header-carousel .owl-carousel-item {
  position: relative;
  height: 100vh;
}

.header-carousel .owl-carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-carousel .owl-carousel-item .position-absolute {
  background: rgba(53, 53, 53, 0.7);
  width: 100%;
  height: 100%;
}

/* Fix carousel on medium screens */
@media (min-width: 769px) and (max-width: 1480px) {
  .header-carousel .owl-carousel-item {
    min-height: 600px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .header-carousel .owl-carousel-item .position-absolute {
    height: 100%;
  }
}

/* Maintain mobile responsiveness */
@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  width: 200px;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.header-carousel .owl-dots {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #ffffff;
  transition: 0.5s;
}

.header-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: transparent;
  border: 1px solid #ffffff;
}

.header-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/* Carousel Text Styles */
.qualityseed {
  font-size: 2.05rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #ffcc00 !important;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8) !important;
  margin-bottom: 1rem !important;
  font-family: "Poppins", sans-serif !important;
  margin-top: -0rem;
}

.trusted {
  font-size: 1rem !important;
  font-weight: 400 !important;
  margin-bottom: 2rem !important;
}

/* Default styles (for large screens) */
.qualityseed {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
}

.trusted {
  font-size: 1.25rem !important;
  font-weight: 400 !important;
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
  .qualityseed {
    font-size: 2.25rem !important;
  }

  .trusted {
    font-size: 1rem !important;
  }
}

/* Small screens (phones) */
@media (max-width: 768px) {
  .qualityseed {
    font-size: 2rem !important;
  }

  .trusted {
    font-size: 1.1rem !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .qualityseed {
    font-size: 1.5rem !important;
  }

  .trusted {
    font-size: 1rem !important;
  }
}

/* ==========================================================================
      7. About Us Section Styles
      ========================================================================== */

.section-title h1 {
  position: relative;
  display: inline-block;
  padding: 0 60px;
}

.section-title.text-start h1 {
  padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 5px;
  bottom: 0;
  background: var(--dark);
}

.section-title h1::before {
  left: 0;
}

.section-title h1::after {
  right: 0;
}

.section-title.text-start h1::before {
  display: none;
}

.about-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-height: 400px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  transition: transform 0.5s ease-in-out, filter 0.5s;
  border-radius: 12px;
}

.about-img:hover img {
  transform: scale(1.05);
  filter: brightness(80%);
}

/* Icon Box */
.icon-box {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

.icon-box img {
  width: 45px;
  height: 45px;
  margin-right: 14px;
}

.icon-box h6 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.icon-box:hover {
  background: #e0f3e0;
  transform: translateY(-3px);
}

/* ==========================================================================
      8. Category Section Styles
      ========================================================================== */

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 200px;
  text-align: center;
}

.card i {
  font-size: 3rem;
  color: green;
  margin-bottom: 10px;
}

/*** Service ***/
.service-item img {
  transition: 0.5s;
}

.service-item:hover img {
  transform: scale(1.1);
}

.service-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.service-item .overflow-hidden {
  height: 250px;
  border-radius: 8px 8px 0 0;
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover img {
  transform: scale(1.1);
}

.category-btn {
  display: inline-block;
  padding: 8px 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
}

.service-item h4 {
  color: var(--dark);
  font-weight: 600;
}

/* ==========================================================================
      9. Why Choose Us Section Styles
      ========================================================================== */

.feature-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.feature-box h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 1rem;
  color: #666;
}

/* Responsive for Why Choose Us */
@media (max-width: 768px) {
  .feature-box {
    padding: 15px;
  }

  .feature-icon {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
      10. Fixed Buttons Styling
      ========================================================================== */
.fixed-buttons {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}

.back-to-top,
.whatsapp-btn {
  width: 45px;
  height: 45px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 4px;
}

/* Existing WhatsApp button styles remain */

/* Back-to-top specific styling */
.back-to-top {
  background: transparent;
  border: none;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top i,
.whatsapp-btn i {
  font-size: 1.2rem;
}

/* Fixed Buttons Container */
.fixed-buttons {
  position: fixed;
  right: 15px;
  bottom: 85px !important;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 99;
}

/* Back to Top Button */
.btn-lg-square {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ab7442 !important;
  color: black !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-lg-square:hover {
  transform: translateY(-3px);
  background: var(--dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Inquire Now Button */
.fixed-inquire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: linear-gradient(45deg, #32cd32, #228b22);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-inquire-btn:hover {
  background: linear-gradient(45deg, #228b22, #006400);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
  display: none; /* Hidden by default */
  width: 40px;
  height: 40px;
  background: #25d366 !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease !important;
}

.whatsapp-btn:hover {
  background-color: #128c7e !important;
  border-color: #128c7e !important;
  transform: translateY(-3px) !important;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: none; /* Hidden by default */
  width: 45px;
  height: 45px;
  background: #25d366 !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease !important;
}

/* Mobile/Tablet Responsive */
@media (max-width: 991px) {
  .whatsapp-btn {
    display: flex; /* Show only on mobile/tablet */
  }
}

.inquireatag {
  position: fixed;
  right: 10px;
  bottom: 0px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

/* Mobile/Tablet Responsive */
@media (max-width: 991px) {
  .fixed-buttons {
    bottom: 25px; /* Adjusted for mobile */
  }

  .whatsapp-btn {
    display: flex; /* Show WhatsApp button */
  }

  .whatsapp-inquiry {
    display: flex; /* Show WhatsApp inquiry in product cards */
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .btn-lg-square {
    width: 35px; /* Smaller on mobile */
    height: 35px;
  }

  .whatsapp-btn {
    width: 35px; /* Smaller on mobile */
    height: 35px;
  }
}

/* Small screens */
@media (max-width: 576px) {
  .fixed-buttons {
    right: 10px;
    bottom: 20px;
  }
  .btn-lg-square,
  .whatsapp-btn {
    width: 32px; /* Even smaller on very small screens */
    height: 32px;
    font-size: 0.9rem;
  }

  .whatsapp-inquiry {
    padding: 0px 0px;
    font-size: 0.7rem;
  }
}

@media (max-width: 426px) {
  .fixed-buttons {
    right: 10px;
    bottom: 20px;
  }

  .whatsapp-inquiry {
    font-size: 0.5rem;
  }
}
/* Product Card Buttons and Labels */
@media (max-width: 576px) {
  /* Category Label */
  .category-label {
    font-size: 0.6rem !important;
    padding: 3px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
  }

  /* Inquire Now Button */
  .inquiry-btn {
    padding: 6px 12px;
    font-size: 0.65rem !important;
    width: 100%;
  }

  /* WhatsApp Inquiry Button */
  .whatsapp-inquiry {
    /* padding: 6px 12px; */
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    white-space: nowrap; /* Keeps text on one line */
  }

  /* Product Title */
  .product-item h5.mb-3 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem !important;
  }

  /* Button Container Spacing */
  .text-center.p-4 {
    padding: 0.75rem !important;
  }
}

/* Even smaller screens */
@media (max-width: 375px) {
  .whatsapp-inquiry {
    font-size: 0.5rem !important;
  }

  .inquiry-btn {
    font-size: 0.55rem !important;
  }
}

/* Hide WhatsApp on Desktop */
@media (min-width: 992px) {
  .whatsapp-inquiry {
    display: none;
  }
}

/* Touch Device Optimizations */
@media (hover: none) {
  .category-filter {
    -webkit-overflow-scrolling: touch;
  }

  .btn:active {
    transform: scale(0.95);
  }
}

/* ==========================================================================
      Contact Section Styles
      ========================================================================== */

.contact-section {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  padding: 80px 0;
  color: white;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.contact-card i {
  color: #ffcc00;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.contact-card h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
      Modern WhatsApp Chat Button Styles
      ========================================================================== */

.whatsapp-chat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white !important;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
  min-width: 180px;
}

.whatsapp-chat-btn:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white !important;
  text-decoration: none;
}

.whatsapp-chat-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-chat-btn i {
  font-size: 20px;
  animation: pulse 2s infinite;
}

.whatsapp-chat-btn span {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}

.whatsapp-chat-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.whatsapp-chat-btn:hover::before {
  left: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-chat-btn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 160px;
  }

  .whatsapp-chat-btn i {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .whatsapp-chat-btn {
    padding: 8px 16px;
    font-size: 13px;
    min-width: 140px;
  }

  .whatsapp-chat-btn i {
    font-size: 16px;
  }
}

/* ==========================================================================
      11. Footer Styles
      ========================================================================== */

.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  background-size: cover;
  color: #ffffff;
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Footer Links */
.footer .btn.btn-link {
  display: block;
  margin-bottom: 8px;
  padding: 5px 0;
  text-align: left;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.footer .btn.btn-link::before {
  content: "\f105"; /* FontAwesome arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: #28a745;
  letter-spacing: 1px;
}

/* Copyright */
.footer .border-top {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer p a {
  color: #28a745;
  text-decoration: none;
  font-weight: 500;
}

.footer p a:hover {
  text-decoration: underline;
}

/* ==========================================================================
      12. Attribution Styling
      ========================================================================== */

.attributions {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  margin-top: 1rem;
}

.attributions a {
  color: #999;
  text-decoration: none;
  margin: 0 0.5rem;
}

.attributions a:hover {
  text-decoration: underline;
}

/* ==========================================================================
      13. Animations and Miscellaneous Styles (Keep at the end)
      ========================================================================== */

/* chat */

/* Fade-in effect */
.wow {
  animation-duration: 1s;
}
