/* @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Jost:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --shadow: 0px 10px 13px -10px #ddd;

  --shadow-hover: 0px 10px 20px 0px #ddd;

  --border: 1px solid #f3f3f3;

  --animate: translate(0, -2%);

  --gradient-bg: linear-gradient(
    to right,
    rgba(255, 134, 23, 0.9),
    rgba(255, 135, 23, 0.9),
    rgba(255, 194, 37, 0.9)
  );
  --gradient-single: rgba(255, 134, 23, 0.9);
  --bg-color: #cf3341;
  --text-danger: #cf3341;
  --text-white: #fff;
  --text-black: #232323;
  --primary-color: #f26d21;
  --radius: 13px;
  --lato: "Lato", sans-serif;
  --Charm: "Charm", cursive;
  --jost: "Jost", sans-serif;
}
a {
  color: var(--text-black);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  text-decoration: none;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
}
/*----------------Header Section -------------*/

.navbar {
  padding: 0;
}
.navbar-brand {
  color: var(--text-black);
  font-size: 26px;
  font-weight: 800;
  font-family: var(--ef);
}
.header-logo {
  width: 170px;
}
header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  border-bottom: 1px solid hsla(0,0%,100%,.14);
  background:#fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  transition: 0.5s;
}
header.scrolled {
  background-color: white;
  z-index: 9999;
}
header.scrolled .navbar-brand{color: var(--text-black);}

.menu-area {
  margin: 0 auto;
}

.menu-area > ul {
  margin: 11px 0;
  padding: 0;
}

.menu-area > ul > li {
  list-style: none;
  display: inline-block;
  /* background: #2fbe04; */
  padding: 5px 7px;
  border-radius: 2px;
  margin: 0px 2px;
}

.dropdown-menu1 ul li a .fa {
  margin-right: 10px;
}

.menu-area > ul > li > a {
  text-decoration: none;
  color: var(--text-black);
  padding: 0px 7px;
  display: block;
  transition: 0.5s;
  font-family: var(--jost);
  font-size: 17px;
  font-weight: 500;
}
header.scrolled .menu-area a {
  color: var(--text-black);
}

.menu-active {
  color: brown !important;
}

.dropdown-menu1 {
  position: absolute;
  background: #fff;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.4s;
  box-shadow: var(--shadow);
  border-top: var(--border);
  top: 58px;
}

.dropdown-menu1 ul {
  margin: 0;
  padding: 0;
}

.dropdown-menu1 ul li {
  list-style: none;
}

.dropdown-menu1 ul li a {
  text-decoration: none;
  color: #817e7b;
  display: block;
  padding: 3px 10px;
  transition: 0.4s;
  font-family: var(--bf);
  text-transform: capitalize;
  font-size: 16px;
}

.dropdown-menu1 ul li a:hover {
  background: #fff;
  color:var(--primary-color);
}

.dd-btn1:hover .dropdown-menu1 {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.dropdown-menu2 {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.4s;
}

.dd-btn2 {
  position: relative;
}

.dd-btn2:hover .dropdown-menu2 {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.dd-btn3 {
  position: relative;
}
.dropdown-menu3 {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.4s;
}
.dd-btn3:hover .dropdown-menu3 {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

/*toggler css*/

.menu-icon {
  display: none;
}

.menu-icon {
  float: right;
}

.menu-icon {
  color: var(--tn);
  font-size: 30px;
  cursor: pointer;
}

/*on scrolled css*/

/*mobile menu styles*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: #fdfdfd;
  transition: 0.3s;
  z-index: 9999;
  border-right: 1px solid #ddd;
  overflow: scroll;
}

.mobile-menu-active {
  left: 0;
}

.mm-logo {
  border-bottom: 1px solid #ddd;
}

.mm-logo .logo {
  width: 130px;
  padding: 10px 15px;
}

.menu-link a {
  display: block;
  padding: 10px 15px;
  color: var(--tm);
  border-bottom: 1px solid #ddd;
  transition: 0.3s;
  font-family: var(--bf);
  text-decoration: none;
}

.mobile-menu a .fa {
  color: var(--tn);
}

.menu-link a .fa-plus {
  float: right;
  margin-top: 5px;
}

.menu-link a .fa-minus {
  float: right;
  margin-top: 5px;
}

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

.menu-body ul li {
  border-bottom: 1px solid #ddd;
}

.menu-body .card-body {
  padding: 0;
  background: #fafafa;
}

.menu-body ul li a {
  padding: 10px 10px;
  display: block;
  color: var(--tm);
  text-decoration: none;
  font-family: var(--fl);
}

.mm-logo {
  position: relative;
}

.mm-cross-icon {
  position: absolute;
  right: 10px;
  top: 10px;
}

.mm-cross-icon .fa {
  font-size: 20px;
  color: var(--ttm);
}

.mm-ci {
  cursor: pointer;
}
/*----Benefit Section--------*/
.benefit-section {
  background-color: var(--light-color);
  padding: 50px 0;
}

.benefit-box {
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.benefit-box:hover {
  box-shadow: var(--shadow-hover);
}
/*---------Product section-----*/
.product-card {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* .discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f0729f;
  color: white;
  font-size: 0.8rem;
  padding: 3px 6px;
  border-radius: 4px;
  z-index: 1;
} */

.product-title h4 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price {
  font-size: 1.1rem;
  margin: 8px 0;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 6px;
  font-size: 20px;
}

.new-price {
  color: #e91e63;
  font-weight: 600;
  font-size: 20px;
}

.stars {
  color: #f8b84e;
  margin: 8px 0 15px;
}

.product-img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.add-to-cart-btn {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  width: calc(100% - 20px);
  max-width: 200px;
}

.product-card:hover .add-to-cart-btn {
  bottom: 15px;
  opacity: 1;
}

.add-to-cart-btn:hover {
  background-color: #c2185b;
}
/*-----Category secton----*/
.trending-categories {
  padding: 40px 0;
  text-align: center;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-box {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.category-image {
  height: 200px;
  overflow: hidden;
}

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

.category-box:hover .category-image img {
  transform: scale(1.1);
}

.category-title {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/*-----------recent-drops-section------------*/
.recent-drops-section {
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e91e63;
}

.drop-card {
  background: white;
  border-radius: 10px;
  padding: 5px 5px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}
.drop-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.drop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* .discount-badge {
  display: inline-block;
  background-color: #f8b84e;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 15px;
  font-size: 0.9rem;
} */

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .drop-card {
    padding: 20px;
  }

  .brand-logo {
    font-size: 1.5rem;
  }

  .product-name {
    font-size: 1rem;
  }
}
.or-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
/*-------Brand Section--------*/
.brand-card {
  border-radius: 10px;
  padding: 5px 5px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}
.brand-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
/*------------ingredient-card----------*/
.ingredient-card {
  background-color: #c6e3c3;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}
.ingredient-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
/*--------------------Product Tab Section-------------------------*/
.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  border: none;
  color: #333;
  font-weight: 500;
  padding: 12px 20px;
  margin-right: 5px;
}

.nav-tabs .nav-link.active {
  color: #000;
  background-color: #f8f9fa;
  border-bottom: 3px solid #000;
}

.nav-tabs .nav-link:hover {
  border-bottom: 3px solid #ddd;
}

.sold-out-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f8f9fa;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff6b6b;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
}

.category-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.subcategory-container {
  margin-bottom: 30px;
}
/*-----------------Test monial Section-----------------*/
.testimonial-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #333;
  position: relative;
}

.section-title:after {
  content: "*****";
  display: block;
  color: #ff6b6b;
  letter-spacing: 5px;
  margin-top: 15px;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.client-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
}

.divider {
  color: #ff6b6b;
  font-size: 24px;
  margin: 20px 0;
  text-align: center;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: #ff6b6b;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 50px 0;
  }

  .carousel-control-prev {
    left: 0;
  }

  .carousel-control-next {
    right: 0;
  }
}
/*---------Footer Section---------*/
.footer {
  background: linear-gradient(
    263deg,
    #e3a379 -10.95%,
    #df7e85 33.97%,
    #dd6189 98.23%
  );
  padding: 40px 0 20px;
  border-top: 1px solid #e9ecef;
}
.footer-links h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.footer-links ul {
  list-style: none;
  padding-left: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #000;
}
.contact-info {
  margin-bottom: 20px;
}
.contact-info p {
  margin-bottom: 5px;
  color: #ffffff;
}
.payment-methods img {
  width: 100%;
  height: auto;
  margin-right: 10px;
  margin-bottom: 10px;
}
.copyright {
  padding-top: 20px;
  margin-top: 30px;
  color: #ffffff;
}
