:root {
  --whitecolor: #fff;
  --orangecolor: #ed4a23;
  --blackcolor: #000;
  --graycolor: #f5f5f5;
  --orangelight: #faefeb;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

.container-main {
  max-width: 1610px;
  margin: 0 auto;
  padding: 0px 20px;
}

body {
  font-family: sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* top-bar start */

.top-bar-main {
  /* padding: 2px 80px; */
  width: 100%;
  z-index: 10;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--whitecolor);
}
.main-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
}
.top-bar-logo {
  max-width: 230px;
}
.top-bar-search {
  /* flex: 1; */
  /* padding: 0 100px; */
}

.top-bar-search .form-field {
  position: relative;
  display: flex;
  align-items: center;
  width: 350px;
}

.top-bar-search input {
  width: 100%;
  padding: 11px 35px 11px 15px;
  font-size: 16px;
  border: 1px solid var(--orangecolor);
  border-radius: 15px;
}
.top-bar-search input:hover {
  border: 1px solid var(--orangecolor);
}
.top-bar-search .form-field a {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.top-bar-search .form-field a {
  background-color: var(--orangecolor);
  padding: 19px;
  border-radius: 10px;
}

.top-bar-search .form-field a img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

.track-order {
  padding-left: 10px;
}

.track-order a {
  display: flex;
  align-items: center;
  color: var(--whitecolor);
  font-weight: 500;
  text-decoration: none;
  gap: 10px;
  transition: color 0.3s ease;
  background-color: var(--orangecolor);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 16px;
}

.track-order a img {
  width: 26px;
  height: 26px;
  /* object-fit: contain; */
  filter: invert(1);
}

.top-bar-number {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.top-bar-call-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orangecolor);
}

.top-bar-call-logo img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}
.top-bar-call-number p {
  font-weight: 500;
  font-size: 16px;
  color: var(--blackcolor);
}
.top-bar-call-number p a {
  text-decoration: none;
  color: var(--blackcolor);
}
.top-bar-call-number p a:hover {
  color: var(--orangecolor);
}

/* Menu bar  */

.menu-bar-main {
  padding: 0px 0px;
  padding-top: 3px;
  width: 100%;
  background-color: var(--orangecolor);
}

.main-menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
}
.main-menu-bar .category-btn {
  width: 266px;
  height: 60px;
}
.main-category-bar {
  background: var(--orangecolor);
  width: 100%;
  height: 60px;
  color: var(--whitecolor);
  padding: 0px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px 12px 0px 0;
}

.main-category-bar p {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
  color: var(--whitecolor);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main-category-bar span {
  display: block;
  width: 17px;
  height: auto;
  overflow: hidden;
  margin-right: 10px;
  position: relative;
  top: -1px;
}
.main-category-bar i {
  font-size: 12px;
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.main-menu > li {
  position: relative;
  font-size: 14px;
  /* color: var(--whitecolor); */
}

.main-menu > li > a {
  color: var(--whitecolor);
  text-decoration: none;
  padding: 15px 0;
  display: inline-block;
  transition: 0.3s ease;
  cursor: pointer;
}

/* .main-menu > li > a:hover {
  color: #000;
} */

/* Dropdown Arrow */
.arrow-icon {
  margin-left: 6px;
  font-size: 12px;
  vertical-align: middle;
}

.drop-down {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--whitecolor);
  padding: 15px 0;
  min-width: 180px;
  display: none;
  z-index: 999;
}

.drop-down ul {
  list-style: none;
  margin: 0;
}

.drop-down ul li {
  position: relative;
  background-color: white;
  padding: 10px 20px;
  cursor: pointer;
}

.drop-down ul li a {
  display: block;
  color: var(--blackcolor);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}



.has-submenu > .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 180px;
  background-color: var(--whitecolor);
  display: none;
  padding: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  z-index: 999;
  border-radius: 10px;
}
.has-submenu > a .arrow-down {
  transform: rotate(270deg);
}

.has-submenu:hover > .sub-menu {
  display: block;
}

.has-dropdown:hover > .drop-down {
  display: block;
}

.wrap-up-div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.main-menu-wishlist {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-with-badge {
  position: relative;
}

.icon-with-badge a img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  color: var(--orangecolor);
  background-color: var(--whitecolor);
  font-size: 12px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.main-menu-account {
  display: flex;
  align-items: center;
  gap: 10px;
}
.account-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orangecolor);
  background-color: var(--whitecolor);
}

.account-img img {
  width: 20px;
  height: 20px;
}

.user-name p {
  color: var(--whitecolor);
  font-size: 15px;
  margin: 0;
}

.user-name p a {
  color: var(--whitecolor);
  text-decoration: none;
}
  .mob-header {
    display: none;
  }


/* Home banner main */

.home-banner-main,
.home-banner-slider {
  position: relative;
}

.home-banner-bg {
  height: 650px;
  position: relative;
  overflow: hidden;
}

.home-banner-bg::before {
  position: absolute;
  content: "";
  background-color: #484747;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  top: 0;
  left: 0;
}

.home-banner-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-banner-info .container-main {
  height: 100%;
}

.home-banner-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 690px;
  margin-left: 100px;
}

.home-banner-content h1 {
  font-size: 55px;
  line-height: 62px;
  font-weight: 700;
  color: var(--orangecolor);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.home-banner-content p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: var(--blackcolor);
  margin-bottom: 30px;
}

.btn-flex {
  display: flex;
  gap: 10px;
}
.btn-flex a {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--orangecolor);
  background: linear-gradient(135deg, var(--whitecolor));
  border: none;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  border: 2px solid var(--orangecolor);
}

.btn-flex a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--orangecolor);
  z-index: -1;
  transition: all 0.4s ease;
  color: var(--whitecolor);
}

.btn-flex a:hover::before {
  left: 0;
}

.btn-flex a:hover {
  color: var(--whitecolor);
}

.home-btn-flex {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
  padding: 0px 40px;
}

.home-btn-flex button {
  height: 45px;
  width: 45px;
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1;
  border-radius: 30px;
  border: unset;
}

.home-btn-flex button:hover {
  background: var(--orangecolor) !important;
}

.home-btn-flex img {
  width: 18px !important;
  height: 18px !important;
  filter: invert(1);
}

/* product slider */

.product-slider-main {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.category-slider-heading {
  text-align: center;
  margin-bottom: 40px;
}

.category-slider-heading h1,
.top-deals-heading h1,
.top-rated-products-heading h1,
.trending-products-heading h1,
.top-brands-heading h1,
.why-young-nutrition-heading h1,
.offers-banner-heading h1,
.product-description-heading h1,
.product-page-heading h1,
.contact-us-page-text h1,
.blog-page-heading h1,
.about-page-heading h1,
.deals-coupons-heading h1,
.happy-customers-heading h1,
.authenticity-heading h1,
.international-brands-heading h1,
.certificate-with-brands-heading h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--blackcolor);
  margin-bottom: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}

.category-slider-heading h1::after,
.top-deals-heading h1::after,
.top-rated-products-heading h1::after,
.trending-products-heading h1::after,
.top-brands-heading h1::after,
.why-young-nutrition-heading h1::after,
.offers-banner-heading h1::after,
.product-description-heading h1::after,
.product-page-heading h1::after,
.contact-us-page-text h1::after,
.blog-page-heading h1::after,
.about-page-heading h1::after,
.deals-coupons-heading h1::after,
.happy-customers-heading h1::after,
.authenticity-heading h1::after,
.international-brands-heading h1::after,
.certificate-with-brands-heading h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orangecolor);
  margin: 10px auto 0;
  border-radius: 2px;
}

.product-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 0 20px;
}

.product-slider {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  padding: 10px 0;
}
.product-slider-wrapper.owl-carousel .owl-stage-outer {
  padding-top: 75px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slider-block {
  flex: 0 0 auto;
  text-align: center;
  width: 150px;
}

.product-slider-block:hover {
  transform: translateY(-6px);
  cursor: pointer;
}
.product-slider-inner {
  border: 1px solid rgba(0, 0, 0, 0.085);
  background: #f5f5f5;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
}

.product-img {
  width: 150px;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-title {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
  /* margin-top: 5px; */
  /* background-color: #f5f5f5; */
  /* padding: 50px; */
  /* border-radius: 50%; */
}

.product-title h3 {
  font-size: 16px;
  color: var(--orangecolor);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
.product-slider-btn {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  transform: translateY(-50%);
}

.prev-btn-slider,
.next-btn-slider {
  width: 36px;
  height: 36px;
  border: none;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.prev-btn-slider img,
.next-btn-slider img {
  width: 14px;
  height: auto;
}

.prev-btn-slider.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.prev-btn-slider:hover,
.next-btn-slider:hover {
  background-color: var(--orangecolor);
}

.prev-btn-slider:hover img,
.next-btn-slider:hover img {
  filter: invert(1);
}

/* Top deals*/

.top-deals-main {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f5f5f5;
}

.top-deals-heading {
  text-align: center;
  margin-bottom: 40px;
}

.top-deals-flex {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.top-deals-block {
  background: var(--graycolor);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid #ebe8e8;
}

.top-deals-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.top-deals-bg {
  height: 270px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #fff;
}

.top-deals-bg a img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.top-deals-content {
  padding: 15px;
  background: var(--whitecolor);
}
.top-deals-description {
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 10px;
}

.top-deals-description p {
  font-size: 14px;
}

.limited-offer {
  background-color: var(--orangecolor);
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
}

.limited-offer h3 {
  font-size: 16px;
  color: var(--whitecolor);
  text-align: center;
  text-transform: uppercase;
}

.price-limited-offer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--blackcolor);
  justify-content: center;
}

.cut-price {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
  font-weight: 400;
}

.real-price {
  color: var(--orangecolor);
  font-size: 22px;
  font-weight: 700;
}

/* top-rated-products */

.top-rated-products-main {
  padding-top: 50px;
  padding-bottom: 50px;
}

.top-rated-products-heading {
  text-align: center;
  margin-bottom: 40px;
}
.top-rated-categories {
  padding: 15px 0;
  text-align: center;
}

.top-rated-nav {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.top-rated-nav li {
  padding: 8px 20px;
  border-radius: 30px;
  background-color: #e0e0e0;
  color: var(--blackcolor);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.top-rated-nav li:hover,
.top-rated-nav li.active {
  background-color: var(--orangecolor);
  color: #fff;
}

/* Product Card */
.top-rated-item-block-inner {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  text-align: center;
  border: 1px solid #bebaba;
}

.top-rated-slider .owl-carousel .owl-stage-outer {
  padding-top: 20px;
}

.top-rated-item-block-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.top-rated-item-img img {
  width: 100%;
  /* height: auto; */
  border-radius: 10px;
}

.top-rated-description p {
  font-size: 14px;
  color: var(--blackcolor);
  margin: 12px 0 8px;
  min-height: 40px;
}

.top-rated-price {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.top-rated-price .real-price {
  color: var(--orangecolor);
  font-weight: 700;
}

.top-rated-price .cut-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}
.top-rated-item-block.filtered-out {
  display: none;
}
.no-products-msg {
  text-align: center;
  padding: 40px 20px;
  font-size: 18px;
  font-weight: 500;
  color: #555;
}

/* trending products */

.trending-products-main {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #f5f5f5;
}
.trending-products-heading {
  margin-bottom: 40px;
  text-align: center;
}

.trending-product-block {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 15px;
  text-align: center;
  transition: 0.3s ease;
}

.trending-product-block:hover {
  transform: translateY(-5px);
}

.trending-product-bg img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.trending-product-description p {
  font-size: 14px;
  color: var(--blackcolor);
  margin: 12px 0 8px;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trending-product-price {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.trending-product-price .real-price {
  color: var(--orangecolor);
  font-weight: 700;
}

.trending-product-price .cut-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

/* top-brands */
.top-brands-main {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f5f5f5;
}

.top-brands-heading {
  text-align: center;
  margin-bottom: 40px;
}

.top-brand-slider {
  padding: 0 10px;
}

.top-brand-block {
  background-color: #fff;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.top-brand-block:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.top-brand-block img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.top-brand-block:hover img {
  filter: grayscale(0%);
}

/* why-young-nutrition- */
.why-young-nutrition-main {
  padding-top: 50px;
  padding-bottom: 50px;
}
.why-young-nutrition-heading {
  margin-bottom: 40px;
  text-align: center;
}
.why-young-nutrition-heading p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #555555;
  text-align: center;
  padding-bottom: 7px;
}
.why-young-nutrition-box-flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.why-young-nutrition-box {
  width: 33.33%;
  padding: 15px;
}
.why-young-nutrition-inner {
  padding: 30px;
  border: 1px solid var(--whitecolor);
  border-radius: 10px;
  transition: 0.3s;
  background-color: var(--orangecolor);
}
.why-young-nutrition-box img {
  width: 70px;
  height: 70px;
  display: flex;
  margin: 0 auto;
  filter: invert(1);
}
.why-young-nutrition-box h4 {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
  padding-top: 15px;
  text-align: center;
  color: #fff;
}
.why-young-nutrition-box p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--whitecolor);
  text-align: center;
  padding-bottom: 7px;
}
.why-young-nutrition-box:hover .why-young-nutrition-inner {
  background-color: var(--blackcolor);
}

.why-young-nutrition-box:nth-child(even) .why-young-nutrition-inner {
  background-color: var(--blackcolor);
}

.why-young-nutrition-box:nth-child(even):hover .why-young-nutrition-inner {
  background-color: var(--orangecolor);
}

/* home-about us */

/* .home-about-us-main{
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--orangecolor);
}
.home-about-us-flex{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home-about-us-left,.home-about-us-right{
  width: 50%;
}
.home-about-us-left{
  height: 450px;
}
.home-about-us-left img {
    border-radius: 10px;
}
.home-about-us-right {
    padding-left: 60px;
}
.home-about-us-right h1{
  font-size: 36px;
    font-weight: 600;
    line-height: 1.5;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}
.home-about-us-right h1::after{
  position: absolute;
   content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--blackcolor);
  margin: 5px auto 0;
  border-radius: 2px;
}
.home-about-us-right p{
  font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--whitecolor);
    padding-bottom: 7px;
} */

/* footer */
.footer-main {
  padding-top: 70px;
  background: var(--graycolor);
  position: relative;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-block p {
  font-size: 14px;
  line-height: 26px;
  color: var(--orangecolor);
  margin-top: 15px;
  max-width: 350px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.social-icons i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  line-height: 50px;
  background-color: var(--orangecolor);
  font-size: 16px;
  color: var(--whitecolor);
  border-radius: 50%;
}

.footer-block h6 {
  font-weight: 600;
  font-size: 18px;
  color: var(--orangecolor);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-block ul li {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--orangecolor);
  transition: all 0.35s;
  padding-top: 17px;
  position: relative;
  width: max-content;
}

.footer-block.add ul li:first-child {
  align-items: flex-start;
}

.footer-block.add ul li {
  display: flex;
  align-items: center;
  padding-left: 0;
}

.footer-block ul li span {
  font-weight: 700;
  font-size: 16px;
  color: var(--orangecolor);
  text-transform: uppercase;
  margin-right: 7px;
}

.footer-block ul li a {
  color: var(--orangecolor);
  position: relative;
}
.footer-block ul li a:hover {
  color: var(--blackcolor);
}

.footer-block.add ul li i {
  margin-right: 10px;
  color: var(--orangecolor);
}

.footer-copyright-main {
  padding: 25px 0;
  border-top: 1px solid #e7e7e75c;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--whitecolor);
  text-align: center;
}

.footer-copyright p a {
  color: #222;
}

.payment-options-main {
  background-color: var(--blackcolor);
  padding: 30px 0;
  border-top: 1px solid #e7e7e75c;
  color: #fff;
}

.payment-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright p {
  font-size: 16px;
}

.footer-copyright a {
  color: #fff;
  text-decoration: underline;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.payment-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-label {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.payment-icons {
  display: flex;
  gap: 10px;
}

.payment-icons img {
  height: 30px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.payment-icons img:hover {
  transform: scale(1.05);
}

/* promotional banner */

.promotional-banner-main {
  padding-top: 20px;
  padding-bottom: 20px;
}

.promotional-banner-img img {
  width: 100%;
  max-height: 400px;
  height: auto;
  object-fit: contain; 
  display: block;
}


/* offer-banner */

.offers-banner-main {
  padding-top: 50px;
  padding-bottom: 50px;
}
.offers-banner-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.offers-banner-left,
.offers-banner-right {
  width: calc(50% - 10px);
}
.offers-banner-left img,
.offers-banner-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.offers-banner-heading h1 {
  margin-bottom: 50px;
}

/* Product detail page */
.product-detail-main {
  padding-top: 50px;
  padding-bottom: 50px;
}

.product-detail-flex {
  display: flex;
  flex-wrap: wrap;
}

.product-detail-left,
.product-detail-right {
  width: 50%;
}

.product-detail-slider {
  position: relative;
  overflow: hidden;
}

.product-details-slider .item {
  margin-bottom: 20px;
}

.image-container {
  background-color: #f5f5f5;
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container img:hover {
  transform: scale(1.05);
}

.product-details-thumb .thumb {
  /* margin-right: 15px; */
  height: 100px;
  width: 100px;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border 0.3s;
  background-color: #f5f5f5;
}

.product-details-thumb .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-details-thumb .thumb:hover,
.product-details-thumb .thumb.active {
  border: 2px solid #000;
}

.product-details-thumb .thumb img:hover {
  transform: scale(1.05);
}

.product-detail-right {
  padding-left: 50px;
}
.product-detail-heading h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--blackcolor);
  max-width: 600px;
}

.ingrediants-details ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 20px;
}

.ingrediants-details li {
  font-size: 16px;
  color: #444;
  margin-bottom: 4px;
}

.product-price-detail {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 10px;
}

.original-product-price h4 {
  font-size: 28px;
  font-weight: 600;
  color: var(--orangecolor);
}
.cut-product-price h4 {
  text-decoration: line-through;
  color: #888;
  font-size: 20px;
}

.product-flavour ul {
  list-style: none;
  padding-left: 0;
  font-size: 15px;
  margin-bottom: 20px;
}

.small-description-flex {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border: 1px solid #333;
  padding: 10px;
  border-radius: 3px;
}

.small-description-block {
  font-size: 14px;
  color: #555;
  position: relative;
  padding: 0 15px;
}

.small-description-block:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-left: 1px solid #555;
}

.cart-options {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 14px;
  margin-bottom: 30px;
}

.items-scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: fit-content;
  background-color: #fff;
  margin-right: 25px;
}

.qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  font-size: 14px;
  transition: color 0.3s;
}

.qty-btn:hover {
  color: #000;
}

.qty-value {
  font-size: 18px;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.add-to-cart-product a {
  background: var(--orangecolor);
  color: white;
  padding: 14px 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  margin-right: 20px;
  border: 2px solid var(--orangecolor);
}

.add-to-cart-product img {
  width: 18px;
}
.add-to-cart-product a:hover {
  background-color: var(--orangelight);
  color: var(--orangecolor);
  border: 2px solid var(--orangecolor);
}

.like-button {
  cursor: pointer;
  font-size: 20px;
  border-radius: 5px;
  border: 1px solid #888;
  padding: 8px 15px;
}
.like-button:hover {
  color: var(--white-color);
  background-color: var(--orangecolor);
  animation: bounce 0.4s;
  border: none;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.buy-it-now {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: flex-start; 
  align-items: center;
  margin-bottom: 30px;
}

.buy-it-now img {
  max-width: 120px; 
  height: auto;
  transition: transform 0.3s ease;
}

.buy-it-now a:hover img {
  transform: scale(1.05);
}


.accordion-button {
  font-weight: 600;
  font-size: 16px;
  color: #3b1e54;
  background-color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button {
  font-weight: bold;
  font-size: 20px;
}

.custom-accordion {
  margin-top: 20px;
}

.accordion-header {
  background-color: #fff;
  cursor: pointer;
}

.accordion-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 7px;
  border-bottom: 2px solid #dad9db;
}

.accordion-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.accordion-row .arrow-icon {
  width: 16px;
  height: auto;
  transition: transform 0.3s ease;
  filter: invert(1);
}

.accordion-header.active .arrow-icon {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 15px 10px;
  background-color: #fff;
}
.accordion-body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
}

.accordion-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--orangecolor);
  font-size: 20px;
  line-height: 0.5;
}

.product-description-main {
  background-color: #f5f5f5;
  padding-top: 50px;
  padding-bottom: 50px;
}

.product-description-heading .subheading {
  font-size: 18px;
  color: #777;
}

.product-description h3 {
  margin-top: 30px;
  color: var(--orangecolor);
  font-size: 22px;
  margin-bottom: 20px;
}

.product-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-description ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.product-description ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.product-description ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--orangecolor);
  font-size: 16px;
  font-weight: bold;
}

/* Product-page */

.product-page-main {
  padding-top: 50px;
  padding-bottom: 50px;
}
.product-page-flex {
  display: flex;
  flex-wrap: wrap;
}
.product-page-left {
  width: 30%;
}

.product-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 30px;
}

#loadMoreBtn {
  padding: 10px 25px;
  background-color: var(--orangecolor);
  color: white;
  border: 2px solid var(--orangecolor);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

#loadMoreBtn:hover {
  background-color: transparent;
  border: 2px solid var(--orangecolor);
  color: var(--orangecolor);
}

.product-page-right {
  padding-left: 50px;
  width: 70%;
  min-height: 100vh;
}
.product-filters {
  width: 100%;
  position: sticky;
  top: 20px;
  background: #fff;
  z-index: 10;
}

.category-body ul li::before {
  display: none;
}

.custom-accordion {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}
.product-page-accordion {
  margin-top: 0px;
}

.accordion-header {
  background: #f8f8f8;
  cursor: pointer;
  padding: 12px 15px;
  /* border-bottom: 1px solid #ddd; */
}

.accordion-title {
  font-weight: bold;
}

.arrow-icon {
  width: 14px;
  transition: transform 0.3s ease;
}

.accordion-header.active .arrow-icon {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
}

.category-body {
  max-height: 200px;
  overflow-y: auto;
}

.category-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.category-list li {
  padding: 6px 0;
  border-bottom: 1px dashed #ccc;
}
.category-list li a {
  color: #666;
}

.custom-wrapper {
  max-width: 600px;
  margin: auto;
  padding: 25px 25px 40px;
  border-radius: 12px;
}

.header h2 {
  text-align: center;
  color: #492f6b;
  margin-bottom: 30px;
  font-size: 26px;
}

.price-input-container {
  width: 100%;
}

.price-input {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.price-field {
  flex: 1;
}

.price-field span {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.price-field input {
  width: 100%;
  height: 38px;
  font-size: 15px;
  border-radius: 8px;
  text-align: center;
  border: none;
  background: #e4e4e4;
  font-family: inherit;
}

.slider {
  height: 6px;
  position: relative;
  background: #e4e4e4;
  border-radius: 5px;
}
.slider .price-slider {
  height: 100%;
  left: 25%;
  right: 15%;
  position: absolute;
  border-radius: 5px;
  background: var(--orangecolor);
}

.range-input {
  position: relative;
  height: 0;
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 6px;
  background: none;
  top: -6px;
  pointer-events: none;
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #555;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

/* Contact us Page */

.contact-us-page-main {
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact-us-page-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-us-page-left {
  width: 45%;
  padding-right: 60px;
}

.contact-us-page-right {
  width: 50%;
}

.contact-us-page-text {
  margin-bottom: 30px;
  margin-top: 70px;
}

.contact-us-page-text h1 {
  text-align: unset;
}
.contact-us-page-text h1::after {
  position: absolute;
  content: "";
  width: 100px;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--orangecolor);
  border-radius: 2px;
}

.contact-us-page-text h3 {
  font-size: 18px;
  color: var(--orangecolor);
  margin-bottom: 10px;
}
.contact-us-page-info-information p {
  font-size: 16px;
  color: #333;
  /* margin-bottom: 10px; */
}
.contact-us-page-info-information a {
 color: #333;
}

/* .contact-us-page-text p {
  font-size: 16px;
  color: #555;
  line-height: 24px;
} */

/* Info Blocks */
.contact-us-page-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-us-page-info-img {
  background: var(--orangecolor);
  margin-bottom: 13px;
  border-radius: 50%;
  padding: 10px;
  display: inline-block;
  margin-right: 20px;
}

.contact-us-page-info-img img {
  height: 30px;
  width: 30px;
  filter: invert(1);
}

.contact-us-page-info-information h2 {
  font-size: 20px;
  color: var(--orangecolor);
  margin-bottom: 5px;
  font-weight: 600;
}

/* Form */
.right-form-inner {
  background: var(--orangecolor);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.05);
}

.form-heading h3 {
  font-size: 36px;
  color: var(--orangelight);
  margin-bottom: 20px;
  font-weight: 600;
}

.form-flex {
  display: flex;
  flex-wrap: wrap;
  margin-top: 17px;
}

.form-flex .form-field {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.form-flex .form-field input,
.form-flex .form-field textarea {
  border: unset;
  background-color: var(--orangelight);
  border-radius: 0;
  height: 50px;
  width: 100%;
  padding: 0 20px;
  outline: none;
  border-radius: 7px;
}

.form-flex .form-field textarea {
  padding: 20px;
  height: 150px;
}

.form-flex .submit-button {
  margin-top: 20px;
}

.submit-button input[type="submit"] {
  background: var(--orangelight);
  color: var(--orangecolor);
  border: 2px solid var(--orangecolor);
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* width: 100%; */
}

.submit-button input[type="submit"]:hover {
  background: transparent;
  color: var(--orangelight);
  border: 2px solid var(--orangelight);
}

/* Blog Page */

.blogs-page-main {
  padding-top: 50px;
  padding-bottom: 50px;
}
.blog-page-heading h1::after{
  width: 50px;
}
.home-blog-flex {
  display: flex;
  flex-wrap: wrap;
}
.our-blog-block {
  width: 33.33%;
  padding: 15px;
}
.blog-bg {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.date-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #e8630c;
  color: #fff;
  text-align: center;
  /* border-radius: 4px; */
  width: 70px;
  padding: 16px 0;
}

.date-badge .day {
  font-size: 20px;
  font-weight: bold;
  display: block;
  line-height: 1.2;
  color: #12304c;
}

.date-badge .month {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  line-height: 1.2;
  color: #12304c;
}
.blog-bg img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.blog-content {
  background-color: #f3f3f5;
  padding: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog-content ul {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.blog-content ul li,
.read-more-btn a {
  font-size: 16px;
  font-weight: 500;
  color: #575a7b;
}

.blog-content ul li:last-child {
  color: var(--orangecolor);
  position: relative;
}

.blog-content h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--blackcolor);
  margin-bottom: 15px;
  /* padding-bottom: 15px; */
}

.blog-content h4 a {
  color:var(--blackcolor);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.read-more-btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: var(--orangecolor);
}

/* Blog detail */

.blog-detail-main {
  padding-top: 50px;
  padding-bottom: 50px;
}

.blog-detail-page {
  background: #fff;
  padding: 30px;
}

.blog-detail-page-flex {
  display: flex;
  flex-wrap: wrap;
}

.blog-detail-left {
  width: 70%;
  padding-right: 40px;
}

.blog-detail-right {
  width: 30%;
}

.blog-main-image {
  margin-bottom: 10px;
}

.blog-main-image img {
  height: 500px;
  width: 100%;
  border-radius: 8px;
}

.blog-date h4 {
  font-size: 18px;
  font-weight: 600;
  /* margin-top: -5px; */
  margin-bottom: 10px;
  color: var(--orangecolor);
}

.blog-heading {
  margin-bottom: 20px;
}

.blog-heading h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--blackcolor);
  margin: 0 auto;
}

.blog-detail-content p {
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
}

.blog-tips-section {
  margin-top: 25px;
}

.tips-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--orangecolor);
}

.tips-list {
  padding-left: 20px;
  color: #333;
  line-height: 1.8;
}

.tips-list li {
  list-style-type: disc;
  margin-bottom: 10px;
}

.blog-detail-right-heading h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--blackcolor);
  margin-bottom: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
  position: relative;
}
.blog-detail-right-heading h2::before {
  position: absolute;
  content: "";
  height: 4px;
  width: 50px;
  background-color: var(--orangecolor);
  bottom: 0;
  /* left: 50%;
    transform: translateX(-50%); */
  z-index: 1;
}

.latest-blog-block {
  padding: 15px;
  margin-top: 10px;
}

.latest-blog-flex {
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
}

.latest-blog-left {
  width: 40%;
  padding-right: 20px;
}

.latest-blog-left img {
  width: 100%;
  max-width: 200px;
}

.latest-blog-right {
  width: 60%;
}

.latest-blog-date i {
  color: var(--orangecolor);
}

.latest-blog-heading {
  margin-bottom: 5px;
}

.latest-blog-heading a h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-transform: capitalize;
  margin-top: -5px;
  margin-bottom: 5px;
  color: #222;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-btn {
  padding: 10px 16px;
  font-size: 16px;
  color: var(--orangecolor);
  border: 1px solid var(--orangecolor);
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
}

.page-btn img {
  height: 19px;
  width: 16px;
  object-fit: contain;
}

.page-btn:hover {
  background-color: var(--orangecolor);
  color: var(--orangelight);
}

.page-btn:hover img {
  filter: invert(1);
}

.page-btn.active {
  background-color: var(--orangecolor);
  color: var(--orangelight);
  font-weight: bold;
}

/* About Us page */

.about-page-main{
  padding-top: 50px;
  padding-bottom: 50px;
}
.about-page-flex{
  display: flex;
  flex-wrap: wrap;
}
.about-page-left,.about-page-right{
  width: 50%;
}
.about-page-left{
  height: 500px;
}

.about-page-heading h1{
  text-align: left;
}
.about-page-right{
  padding-left: 40px;
}

.about-page-heading h1::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 50px;
  background-color: var(--orangecolor);
  bottom: 0;
  /* left: 50%;
    transform: translateX(-50%); */
  z-index: 1;
}

.about-page-content {
  /* border-radius: 12px; */
  line-height: 1.6;
  font-size: 16px;
  color: #333;
}

.about-page-content p {
  margin-bottom: 10px;
}

.about-page-content p strong {
  color: var(--orangecolor); 
  font-weight: 600;
}

.mission-vision-main {
  padding-top: 50px;
  padding-bottom: 50px;
}

.mission-vision-flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.mission-vision-box {
  width: 33.33%;
  padding: 15px;
}
.mission-vision-inner {
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s;
  background-color: var(--graycolor);
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
}
.mission-vision-box img {
  width: 50px;
  height: 50px;
  display: flex;
  margin: 0 auto;
  /* filter: invert(1); */
}
.mission-vision-box h4 {
  font-size: 26px;
  font-weight: 500;
  padding-bottom: 10px;
  padding-top: 15px;
  text-align: center;
  color: var(--orangecolor);
}
.mission-vision-box p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #333;
  text-align: center;
  padding-bottom: 7px;
}
.mission-vision-box:nth-child(2) .mission-vision-inner {
  background-color: var(--orangecolor);
}
.mission-vision-box:nth-child(2) .mission-vision-inner img{
  filter: invert(1);
}
.mission-vision-box:nth-child(2) .mission-vision-inner p{
  color: var(--whitecolor);
}
.mission-vision-box:nth-child(2) .mission-vision-inner h4{
  color: var(--whitecolor);
}
.mission-vision-box .mission-vision-inner {
  transition: background-color 0.3s ease;
}

.mission-vision-box .mission-vision-inner img,
.mission-vision-box .mission-vision-inner p,
.mission-vision-box .mission-vision-inner h4 {
  transition: all 0.3s ease;
}

.mission-vision-box .mission-vision-inner:hover {
  background-color: var(--orangecolor);
}

.mission-vision-box .mission-vision-inner:hover img {
  filter: invert(1);
}

.mission-vision-box .mission-vision-inner:hover p {
  color: var(--whitecolor);
}

.mission-vision-box .mission-vision-inner:hover h4 {
  color: var(--whitecolor);
}

/* Deals coupons */
.deals-coupons-main{
  padding-top: 50px;
  padding-bottom: 50px;
}
.deals-coupons-flex{
  display: flex;
  flex-wrap: wrap;
}
.deals-coupons-left{
  width:30%;
}
.deals-coupons-right{
  width: 70%;
  padding-left: 50px;
    
}
.deals-coupons-filters {
  width: 100%;
  position: sticky;
  top: 20px;
  background: #fff;
  z-index: 10;
}

.deals-coupons-body .category-list li {
  list-style: none;
  margin-bottom: 10px;
}

.deals-coupons-body .category-list label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.deals-coupons-body .category-list input[type="checkbox"] {
  accent-color: var(--orangecolor); 
}

.deals-coupons-body .category-list input[type="checkbox"]:checked + a {
  color: var(--orangecolor);
  font-weight: 600;
}

.deals-coupons-right-flex{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.deals-coupons-bg{
  height: 290px;
  padding:25px
}

.product-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-count {
  font-size: 16px;
  color: #333;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #555;
}
.sort-options a{
  color: #555;
}

.sort-link {
  color: #555;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 4px;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.sort-link:hover {
  background-color: #eee;
}

.sort-link.active {
  background-color: var(--orangecolor);
  color: #fff;
  border-color: var(--orangecolor);
}

/* Happy customers */

.happy-customers-main{
  padding-top: 50px;
  padding-bottom: 50px;
}
.happy-customers-heading{
  margin-bottom: 50px;
}

/* Whats app sticky */
.whats-app-sticky img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 20;
}

/* Authenticity Page */

.authenticity-main{
  padding-top: 50px;
  padding-bottom: 50px;
}
.authenticity-content{
  margin-top: 20px;
  margin-bottom: 40px;
}
.authenticity-content h3{
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
}
.authenticity-content p{
  font-size: 16px;
  text-align: center;
}
.authenticity-inner h4{
  font-size: 22px;
}

.international-brands-main{
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #f5f5f5;
}
.international-brands-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 30px;
  gap: 20px;
}
.international-brands-block{
  background-color: #fff;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}
.international-brands:hover {
  cursor: pointer;
}

.international-brands img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* .international-brands img {
  filter: grayscale(0%);
} */

.certificate-with-brands-main{
  padding-top: 50px;
  padding-bottom: 50px;
}

.certificate-with-brands-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.certificate-with-brands-content h2 {
  margin-bottom: 20px;
  color: #333;
}

.custom-select-wrapper {
  position: relative;
  width: 350px;
  margin-bottom: 70px;
  margin: 0 auto 70px auto;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  font-weight: 500;

  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 50 70 100 120 50' fill='none' stroke='%23492f6b' stroke-width='15'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;

  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-select:focus {
  border-color: var(--orangecolor);
  /* box-shadow: 0 0 0 3px rgba(73, 47, 107, 0.15); */
  outline: none;
}

/* Certificate Section */

.certificate-img {
  display: flex;
  justify-content: center;
}

.certificate-img-box {
  width: 100%;
  padding: 20px;
  background: #fff;
  border: 2px dashed #ccc;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.certificate-img-box img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 6px;
}

.certificate-img-box p {
  font-size: 16px;
  color: #444;
}
.category-grid{
        display:grid;
            grid-template-columns: repeat(7, 1fr);
            column-gap:70px;
		row-gap:70px;
            padding-top:50px;
    }







