* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mulish", sans-serif;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: unset;
}

body {
  background: #fff;
}

img {
  max-width: 100%;
}

section {
  overflow: hidden;
}

.p-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.text-brown{
  color: #5d0104;
}
.text-light-brown{
  color: #7d7129;;
}
.prm-btn {
  background: #5d0104;
  padding: 10px 30px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  border: 2px solid #5d0104;
  display: inline-block;
  transition: 0.3s ease;
}

.prm-btn:hover {
  background: transparent;
  color: #5d0104;
  border: 2px solid #5d0104;
  transition: 0.3s ease;
}

.bgclr-pink {
  background: #fff3fd;
}

.sec-head {
  font-size: 45px;
  font-weight: 800;
}

#wrapper {
  position: relative;
}

nav {
  position: absolute;
  width: 100%;
  top: 0;
}

/* header */

nav .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  width: 100%;
}

.navbar-brand {
  width: 120px;
}

.nav-link {
  padding: 0 15px;
  font-size: 18px;
  color: #000;
}

.navbar {
  background: transparent;
}

.nav-link:hover {
  color: #5d0104;
  transition: 0.3s ease;
}

.nav-nav {
  align-items: center;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}

.social-icons {
  font-size: 18px;
  display: flex;
  color: #7d7129;
  padding-left: 25px;
  gap: 25px;
}

header,
.contact-us-section {
  background-image: url(assets/hero-bg.png);
  background-position: center;
  background-size: cover;
}

/* Hero Section */

.hero-sec {
  padding: 30px 0;
}

.hero-sec h1 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-sec p {
  font-size: 18px;
  font-weight: 600;
}

.hero-sec .prm-btn {
  margin-top: 20px;
}

.clr-red {
  color: #5d0104;
}

.clr-brown {
  color: #7d7129;
}

/* Product Detail Section */

.prod-det {
  padding: 100px 0;
}

.prod-det .prod-img-half {
  position: absolute;
}

.prod-det-text {
  padding: 30px 0;
}

.price {
  margin-top: 15px;
  margin-left: 15px;
  font-size: 25px;
  font-weight: bold;
  color: #7d7129;
}
.discount {
  font-size: 16px;
  font-weight: 500;
  color: #5d0104;
}
/* Why Choose */

.why-choose {
  padding: 50px 0;
}

.benefits {
  padding: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
}

.benefit-box {
  flex-basis: 50%;
  padding: 20px 10px 20px 0;
}

.bene-img {
  height: 45px;
  margin-bottom: 10px;
}

.bene-img img {
  height: 100%;
}

.bene-text {
  height: 50px;
  font-weight: 500;
}

/* Product Ingredient Page */

.ingred-sec {
  padding: 80px 0;
}

.oil-bowl-img {
  position: absolute;
  right: 0;
  width: 500px;
}

.prod-ingred-text h4 {
  font-weight: 700;
}

.prod-ingred-text p {
  font-size: 18px;
  font-weight: 600;
}

/* Accordian */

.transition,
.faq ul li i:before,
.faq ul li i:after,
p {
  transition: all 0.25s ease-in-out;
}

.flipIn,
.faq ul li,
h1 {
  animation: flipdown 0.5s ease both;
}

.no-select,
h4 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
}

.faq ul li {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 4px;
  padding-top: 18px;
  border-top: 1px dotted #dce7eb;
}

.faq ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}

.faq ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}

.faq ul li:nth-of-type(3) {
  animation-delay: 1s;
}

.faq ul li:last-of-type {
  padding-bottom: 0;
}

.faq ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 50px;
}

.faq ul li i:before,
.faq ul li i:after {
  content: "";
  position: absolute;
  background-color: #000;
  width: 3px;
  height: 9px;
}

.faq ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}

.faq ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}

.faq ul li input[type="checkbox"] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.faq ul li input[type="checkbox"]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}

.faq ul li input[type="checkbox"]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}

.faq ul li input[type="checkbox"]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

.faq ul {
  padding: 50px 0;
  max-width: 800px;
  margin: auto;
}

.faq ul li {
  border: 1px solid #5d0104;
  padding-left: 20px;
}

.faq ul li:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.faq ul li:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.policy-text ul li {
  list-style: disc;
  margin-left: 30px;
}

.policy-text ul {
  margin-bottom: 20px;
}

.terms-text ol li {
  list-style: lower-alpha;
}

.mb-20 {
  margin-bottom: 20px;
}

/* Footer */

footer {
  background: url(assets/footer-bg.png);
  text-align: center;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 10px;
}

footer .sm-head {
  font-size: 25px;
  font-weight: 700;
}

footer .bold-text {
  font-size: 45px;
  font-weight: 700;
}

footer .email {
  font-size: 25px;
  font-weight: 500;
  font-weight: 500;
}

footer .footer-con {
  max-width: 700px;
  margin: auto;
}

footer .contact-info {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}

footer .links ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px 0;
  font-size: 20px;
  opacity: 0.8;
  flex-wrap: wrap;
}

.cpyrght {
  opacity: 0.4;
  font-size: 18px;
  font-weight: 700;
  opacity: 0.6;
  margin-top: 20px;
}

/*contact us page*/

.contact-us-section {
  padding: 100px 0 150px;
  background-size: 80%;
  background-repeat: no-repeat;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}

.content .left-side::before {
  content: "";
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}

.content .left-side .details {
  margin: 14px;
  text-align: center;
}

.content .left-side .details i {
  font-size: 30px;
  color: #7d7129;
  margin-bottom: 10px;
}

.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}

.content .left-side .details .text-one,
.content .left-side .details .text-two {
  font-size: 14px;
  color: #000;
}

.content .right-side {
  width: 75%;
  margin-left: 75px;
}

.content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #7d7129;
}

.right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #fff;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}

.right-side .message-box {
  min-height: 110px;
}

.right-side .input-box textarea {
  padding-top: 6px;
}

.right-side .button {
  display: inline-block;
  margin-top: 12px;
}

@media (max-width: 950px) {
  .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}

@media (max-width: 820px) {
  .content {
    flex-direction: column-reverse;
  }
  .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .content .left-side::before {
    display: none;
  }
  .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}

@media (max-width: 991px) {
  .hero-sec h1 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .navbar-nav {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
    padding-left: 0px;
  }
  .contact-us-section {
    padding: 50px 0 80px;
  }
  .hero-sec {
    text-align: center;
  }
  .hero-sec img {
    margin-top: 20px;
  }
  .hero-sec h1 {
    font-size: 35px;
  }
  .oil-bowl-img {
    display: none;
  }
  .prod-det {
    padding: 100px 0 30px;
  }
  .why-choose {
    padding: 10px 0 20px;
  }
  .ingred-sec {
    padding: 20px 0 40px;
  }
}

/* cart page css starts here */
.minus,
.plus {
  width: 30px;
  height: 30px;
  color:#fff;
  background: #5d0104;
  border-radius: 4px;
  border: 1px solid #5d0104;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}
.number input {
  border-color: #5d0104;
  height: 34px;
  width: 100px;
  text-align: center;
  font-size: 20px;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
}
.lead{
  color: #5d0104;
  font-weight: 700;
  font-size: 24px; 
}

.number input::-webkit-outer-spin-button,
.number input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  border: none;
}

/* Firefox */
.number input[type="number"] {
  -moz-appearance: textfield;
}

/* product detail page */

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
}

.fix-height img {
  height: 400px;
  object-fit: cover;
}
.fix-thumb img {
  height: 150px;
  object-fit: contain;
}
.swiper {
  width: 100%;
}

.swiper_thumb .swiper-slide {
  opacity: 0.7;
}

.swiper_thumb .swiper-slide:hover {
  opacity: 1;
}

.swiper_thumb .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #5d0104;
}

.swiper-slide img {
  display: block;
  width: 100%;
  /* height: 100%;
  object-fit: cover; */
  user-select: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: #5d0104;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0px 2px 2px #5d0104;
  z-index: 9;
}

.swiper-button-next,
.swiper-button-prev::after {
  font-size: 24px;
  font-weight: 600;
}

.swiper-button-prev,
.swiper-button-next::after {
  font-size: 24px;
  font-weight: 600;
}

.swiper-button-next {
  right: 0px;
}

.swiper-button-prev {
  left: 0px;
}

.swiper-button-next:hover {
  color: #ccc;
  background:#5d0104;
}

.swiper-button-prev:hover {
  color: #ccc;
  background: #5d0104;
}

.product-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color:#5d0104;
  font-weight: 700;
}
.product-price {
  letter-spacing: 2px;
  font-size: 24px;
  margin-bottom: 2rem;
  margin-left: 0 !important;
}
.product-subtitle {
  color:#5d0104;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 18px;
}
.product-specification p{
  margin-bottom: 5px;
}
.product-specification p span{
  color:#5d0104;
  font-weight: 500;
}
