/* ===============================
   GLOBAL STYLES
=============================== */


body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  padding: 0;
  background-color: #fafafae1;
  scroll-behavior: smooth;
  /* color: white; */

}

body.fas{
  visibility: hidden;
}



p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===============================
   NAVBAR
=============================== */
nav.navbar {
  background-color: #000000;
  transform: translateZ(0); /* force GPU layer for smoother animation */
}

.navbar-brand img {
  height: 75px;
  display: block; /* avoid inline-block shifts */
}


.navbar-brand img {
  height: 75px;
  align-items: center;
  justify-content: center;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  padding: 0rem 5rem;
  font-size: 0.88em;
  text-transform: uppercase;
}
.active{
    text-decoration: underline;
    text-decoration-color: #eb9a3e;
    text-decoration-thickness: 3px;
    text-underline-offset:8px;

}

.nav-link:hover {
  color: #eb9a3e !important;
}

.btn-discount {
  background-color: #eb9a3e;
  color: white;
  border: none;
  transition: 0.3s;
  border-radius: 2em;
  font-weight: 500;
}

.btn-discount:hover {
  background-color: #eb9a3e;
  color:rgb(19, 18, 18);
}

/* ===============================
   NAVBAR MOBILE RESPONSIVE
=============================== */
@media (max-width: 991px) {
  /* Collapse menu: left align items */
  .navbar-collapse {
    text-align: left;
  }

  /* Stack nav items vertically and add spacing */
  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .navbar-nav .nav-item {
    margin-bottom: 1rem; /* fair distance between items */
    padding-left: 0; /* remove extra padding if any */
  }

  /* Adjust nav-link padding for mobile */
  .navbar-nav .nav-link {
    padding: 0.5rem 0; /* smaller vertical spacing */
  }

  /* Button alignment and spacing */
  .navbar-collapse .d-flex {
    justify-content: flex-start !important; /* move button to left */
    margin-top: 1rem; /* space from menu */
  }

  /* Optional: make button width fit content on mobile */
  .btn-discount {
    width: fit-content;
  }
}



/* ===============================
   REVIEW SECTION
=============================== */
.review-section {
  background-color: #fafafa;
  padding-top: 1rem;
  padding-bottom: 2rem;
  width: 95%;
}
/* .review-section h1,
.review-section .col-12 {
  will-change: opacity, transform;
} */

.review-section h1 {
  font-size: 4em;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 0; /* remove space below heading */
  line-height: 1.3; /* tighter spacing */
  text-transform:capitalize;
  will-change: auto;

}

.review-section .row {
  align-items: flex-start;
  margin-top: -60px; /* move reviews + image upward to touch heading */
}

/* ===============================
   REVIEW BOX STYLES
=============================== */
.review-box {
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.review-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.review-box h5 {
  font-weight: 600;
}

.google-review .bi-google {
  font-size: 1.4rem;
}

.trustpilot-review .bi-star {
  font-size: 1.4rem;
}

/* ===============================
   IMAGE STYLES
=============================== */
.center-image {
  max-width: 70%;     /* reduce image size (try 60–80% for preference) */
  height: auto;
  margin-top: -10px;  /* keeps it slightly closer to the heading */
  display: block;
  margin-left: auto;
  margin-right: auto; /* ensures it’s perfectly centered */
}


/* ===============================
   RESPONSIVE ADJUSTMENTS
=============================== */
@media (max-width: 991.98px) {
  .review-section {
    margin-top: 0;
    padding-top: 2rem;
  }

  .review-section h1 {
    margin-bottom: 1rem;
    font-size: 2.8em;
  }

  .review-section .row {
    flex-direction: column;
    margin-top: 0;
  }

  .review-box {
    margin: 10px auto;
    max-width: 400px;
  }

  .center-image {
    margin: 20px auto;
    width: 80%;
  }
}

.black-strip {
  background-color: #521111; /* black background */
  color: #fff;
  font-weight: 500;
  font-size: 1em;
 
}

.black-strip .highlight {
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.black-strip .highlight i {
  font-size: 2em;
  color: #eb9a3e; /* highlight icon color */
}


/**** Product listing  */

.meta-data{
  color: rgb(0, 0, 0);
  font-size: 0.88em;
}

.faq-arrow {
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .faq-arrow {
  transform: rotate(180deg);
}

/* Remove background & box-shadow for accordion button */
.accordion-button {
   background-color: #fafafae1; /* always transparent */
  color: #000;                   /* text color */
  box-shadow: none;              /* remove default shadow */
}

/* Keep it transparent when expanded */
.accordion-button:not(.collapsed) {
  background-color: transparent; /* remove blue when open */
  color: #000;                   /* optional: keep text color consistent */
}

/* Optional: remove border if you want fully clean look */
.accordion-item {
  border: none;
}

/**Footer**/

  .footer {
      background-color: #000;
      color: #fff;
      padding: 2rem 1rem;
      font-size: 0.85em;
    }
    .footer h5{
      margin-bottom: 1em;
      font-size: 1.25em;
    }
    .footer a {
      color: #fff;
      text-decoration: none;
    }
    .footer a:hover {
      text-decoration: underline;
    }
    .footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer li {
      margin-bottom: 1em;
    }
    .social-icons a {
      margin-right: 1rem;
      font-size: 0.85em;
    }


    /**products  page*/

    
 .card-with-ribbon:hover {
              transform: translateY(-8px);
            }

            .btn-explore {
  border: 1px solid #d3d3d3;
  background: black;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease;
  color:white;
}

/* Hover Effect */
.btn-explore:hover {
  border-color: #b5b5b5;
  background-color: #f5f5f5;
  color: #000;
}

/**Contact*/
.list-unstyled li a{

  color: grey;

}



