/* General Reset */
@import url("https://fonts.googleapis.com/css2?family=Asul:wght@400;700&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&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --main-color: rgba(254, 196, 114, 1);
  --black-color: rgb(0, 0, 0);
  --white-color: rgba(255, 255, 255, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}



ul {
  /* list-style: none;*/
  list-style: block;
}

a {
  text-decoration: none;
}

body {
  font-family: "Urbanist", serif !important;
  min-height: 100vh;
}

.mainColor {
  color: var(--main-color) !important;
}

.shadow-md {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.bg-mainColor {
  background: var(--main-color) !important;
  color: var(--white-color) !important;
  transition: all 0.3s ease;
}

.bg-mainColor:hover {
  background: transparent !important;
  color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.bg-mainColor-notHover {
  background: var(--main-color) !important;
  color: var(--white-color) !important;
}

.hover-transform {
  transition: all 0.3s ease;
}

.hover-transform:hover {
  transform: translateY(-10px);
}

.bg-white-transparent {
  background: var(--white-color) !important;
  color: var(--black-color) !important;
  transition: all 0.3s ease;
  border: 1px solid var(--white-color) !important;
}

.bg-white-transparent:hover {
  background: transparent !important;
  color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.fs-18 {
  font-size: 18px;
}

.card-container {
  width: 100%;
  max-width: 380px;
}

td {
  border: 0 !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

td.tdActive {
  background-color: var(--main-color);
  color: var(--white-color);
}

td:hover {
  background-color: var(--main-color);
}

.bg-hover-white:hover {
  background: var(--white-color) !important;
  color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

input,
textarea,
select {
  outline: none !important;
  border: 2px solid #ccc !important;
}

input:focus,
textarea:focus,
select:focus {
  border: 2px solid var(--main-color) !important;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.border-color {
  border-color: var(--main-color) !important;
}

.w-fit {
  width: fit-content !important;
}

.bsb-hover-push {
  transform: scaleX(1);
  transition: transform 0.3s ease-in-out;
}

.bsb-hover-push:hover {
  transform: scale3d(0.98, 0.98, 0.98);
}

.form-check-input:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--main-color), 0.25);
}

.text-hover-black {
  transition: all 0.3s ease;
}

.text-hover-black:hover {
  color: #000 !important;
}

.border-hover-black:hover {
  border-color: #000 !important;
}

.dropdown .dropdown-menu .dropdown-item {
  transition: all 0.3s ease;
}

.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: var(--main-color) !important;
  color: var(--white-color) !important;
}

@media (min-width: 992px) {
  .w-lg-75 {
    width: 75% !important;
  }
}

/* Navbar */
.header {
  max-width: 1400px !important;
  margin: 0 auto !important;
}

.header .top-header-link {
  transition: all 0.3s ease;
  color: var(--black-color) !important;
  font-size: 14px;
}

.header .top-header-link:hover {
  color: var(--main-color) !important;
}

.header .middle-header .navbar-toggler:focus,
.header .middle-header .navbar-toggler:active {
  box-shadow: none !important;
}

.header .middle-header .custom-search-group {
  border-radius: 8px;
  overflow: hidden;
  max-width: 680px;
  width: 100%;
}

.header .middle-header .custom-search-group .custom-search-input {
  border-radius: 8px 0 0 8px !important;
  border-right: none;
  padding-block: 8px !important;
}

.header .middle-header .custom-search-group .custom-search-button {
  border-radius: 0 8px 8px 0 !important;
  border-left: none;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  padding-inline: 30px !important;
}

.header .middle-header .custom-search-group .custom-search-button:hover {
  background: var(--white-color);
  color: var(--main-color) !important;
}

.header .middle-header .navbar-nav {
  flex-grow: 1;
  justify-content: flex-start;
}

.header .middle-header .navbar-collapse {
  flex-grow: 1;
}

.header .middle-header .location-btn {
  transition: all 0.3s ease;
  color: var(--black-color) !important;
  padding-block: 5px !important;
}

.header .middle-header .location-btn:hover {
  color: var(--black-color) !important;
  border-color: var(--main-color) !important;
  background-color: var(--main-color) !important;
}

.header .middle-header .location-btn.dropdown-toggle::after {
  display: none !important;
}

.header .middle-header .navbar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header .middle-header.badge {
  font-size: 0.7rem;
}

.header .third-header .nav .nav-link,
.header .third-header .sidebar .nav-link {
  transition: all 0.3s ease;
  color: var(--black-color) !important;
}

.header .third-header .nav .nav-link:hover,
.header .third-header .sidebar .nav-link:hover {
  color: var(--main-color) !important;
}

.header .third-header .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.header .third-header .nav-item.dropdown:hover .dropend > .dropdown-menu {
  display: none;
}

.header
  .third-header
  .nav-item.dropdown
  .dropdown-menu
  .dropend:hover
  > .dropdown-menu {
  display: block;
  inset-inline-start: 100%;
  inset-block-start: -10%;
}

.header .third-header .nav-item.dropdown .dropdown-menu .dropdown-item:focus,
.header .third-header .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background: var(--main-color) !important;
  color: var(--white-color) !important;
}

@media (min-width: 992px) {
  .header .third-header .nav .nav-item:first-child > .nav-link {
    padding-inline: 0 !important;
  }
}

/* carousel */
#myCarousel.carousel .carousel-caption {
  z-index: 10;
}

#myCarousel.carousel .carousel-item {
  /*min-height: 35rem;*/
  min-height: 45rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#myCarousel.carousel .carousel-indicators {
  bottom: -12px !important;
}
#myCarousel.carousel .carousel-control-prev,
#myCarousel.carousel .carousel-control-next {
  height: fit-content;
  top: 50%;
  transform: translate(0%, -50%);
}

#myCarousel.carousel .carousel-control-prev .carousel-control-prev-icon,
#myCarousel.carousel .carousel-control-next .carousel-control-next-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  background-size: 65%;
}

#myCarousel.carousel .carousel-control-prev:hover .carousel-control-prev-icon,
#myCarousel.carousel .carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--black-color);
  color: var(--main-color) !important;
}

#myCarousel.carousel .carousel-item.video-content {
  min-height: calc(650px + 8px);
}
#myCarousel.carousel .carousel-item.video-content iframe {
  height: 650px;
}

/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 767px) {
  #myCarousel.carousel .carousel-caption {
    top: 25%;
  }

  .fs-lg-1 {
    font-size: 2.5rem !important;
  }

  .fs-lg-2 {
    font-size: 1.5rem !important;
  }

  .fs-lg-2 {
    font-size: 1.2rem !important;
  }

img.img-fluid {
    margin-top: -12px;
}

}

@media (max-width: 992px) {
  #myCarousel.carousel .carousel-item.text-content {
    min-height: 25rem !important;
  }

  #myCarousel.carousel .carousel-item.image-content {
    min-height: 25rem !important;
  }
  #myCarousel.carousel .carousel-item.video-content {
    min-height: calc(550px + 8px);
  }
  #myCarousel.carousel .carousel-item.video-content iframe {
    height: 550px;
  }
}

@media (max-width: 767px) {
  #myCarousel.carousel .carousel-item.text-content {
    min-height: 25rem !important;
  }

  #myCarousel.carousel .carousel-item.text-content .carousel-caption {
    top: 20%;
  }

  #myCarousel.carousel .carousel-item.image-content {
    min-height: 20rem !important;
  }
  #myCarousel.carousel .carousel-item.video-content {
    min-height: calc(500px + 8px);
  }
  #myCarousel.carousel .carousel-item.video-content iframe {
    height: 500px;
  }
}

@media (max-width: 575px) {
  #myCarousel.carousel .carousel-item.text-content {
    min-height: 25rem !important;
  }

  #myCarousel.carousel .carousel-item.text-content .carousel-caption {
    top: 15%;
  }

  #myCarousel.carousel .carousel-item.text-content .carousel-caption h1 {
    font-size: 25px !important;
  }

  #myCarousel.carousel .carousel-item.text-content .carousel-caption p {
    font-size: 16px !important;
  }

  #myCarousel.carousel .carousel-item.image-content {
    min-height: 16rem !important;
  }

  #myCarousel.carousel .carousel-control-prev {
    left: 0px;
  }

  #myCarousel.carousel .carousel-control-next {
    right: 0px;
  }
  #myCarousel.carousel .carousel-item.video-content {
    min-height: calc(430px + 8px);
  }
  #myCarousel.carousel .carousel-item.video-content iframe {
    height: 430px;
  }
}

@media (max-width: 450px) {
  #myCarousel.carousel .carousel-caption p {
    margin-bottom: 1.25rem;
    line-height: 1.4;
  }
  #myCarousel.carousel .carousel-control-prev .carousel-control-prev-icon,
  #myCarousel.carousel .carousel-control-next .carousel-control-next-icon {
    width: 39px;
    height: 39px;
  }
  #myCarousel.carousel .carousel-item.text-content {
    min-height: 22rem !important;
  }

  #myCarousel.carousel .carousel-item.text-content .carousel-caption {
    top: 8%;
  }

  #myCarousel.carousel .carousel-item.text-content .carousel-caption h1 {
    font-size: 22px !important;
  }

  #myCarousel.carousel .carousel-item.text-content .carousel-caption p {
    font-size: 14px !important;
  }

  #myCarousel.carousel .carousel-item.image-content {
    min-height: 13rem !important;
  }
  #myCarousel.carousel .carousel-item.video-content {
    min-height: calc(330px + 8px);
  }
  #myCarousel.carousel .carousel-item.video-content iframe {
    height: 330px;
  }
}

/* event section */
.event-section {
  position: relative;
  background: url("../../images/bg-events.png") no-repeat center center;
  background-size: cover;
}

.event-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 59, 59, 0.907);
}

.event-card {
  border-radius: 7px;
  overflow: hidden;
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.event-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  padding: 6px 7px 6px 4px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50px;
}

.read-more-btn {
  color: #c2ad69;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid var(--main-color);
  padding: 6px 22px;
  border-radius: 20px;
  transition: 0.3s all ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.read-more-btn:hover {
  background: var(--main-color);
  color: var(--white-color);
  text-decoration: underline;
}

/* category section */
.categories-section {
  max-width: 1400px !important;
  margin: 0.5rem auto 2rem !important;
}

.categories-section .card {
  max-width: 250px;
  margin: 0 auto;
  height: 250px;
}

/* Featured Section */
.featured-section {
  max-width: 1400px !important;
  margin: 2rem auto !important;
}

.featured-section .product-card {
  transition: transform 0.5s ease, filter 0.5s ease;
  transform: scale(1);
  filter: blur(0);
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  max-width: 320px;
  min-width: 260px;
  width: 100%;
  margin: 0 auto;
}

.featured-section .product-card:hover {
  transform: scale(1.03);
  z-index: 10;
}

.featured-section .product-grid:hover .product-card:not(:hover) {
  transition: 0.3s;
  filter: blur(4px);
  transform: scale(0.95);
  opacity: 0.7;
}

.featured-section .product-badges {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 0px 10px;
}

.featured-section .badge {
  font-size: 0.85rem;
  font-weight: bold;
  padding: 5px 15px;
}

.featured-section .badge.bg-danger {
  border-radius: 18px 0 10px 0;
}

.featured-section .badge.bg-warning {
  border-radius: 0 0px 10px 0;
  background: linear-gradient(180deg, var(--main-color) 0%, #865330 100%);
}

/* Brands Section */

.brands-Section {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 20px;
}

.brands-Section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.brands-Section .section-header h2 {
  font-size: 1.8rem;
  font-weight: bold;
}

.brands-Section .see-all {
  font-size: 1.1rem;
  color: #913918;
  text-decoration: none;
  font-weight: bold;
}

.brands-Section .see-all:hover {
  text-decoration: underline;
}

.brands-Section .wrapper {
  max-width: 1400px;
  margin-inline: auto;
  position: relative;
  height: 195px;
  margin-top: 5rem;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

@keyframes scrollLeft {
  to {
    left: -200px;
  }
}

.brands-Section .item {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  position: absolute;
  left: max(calc(160px * 8), 100%);
  animation-name: scrollLeft;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  transition: all 0.3s ease;
}

.brands-Section .item.paused {
  animation-play-state: paused;
}

.brands-Section .item:hover {
  transform: scale(1.05);
}

.brands-Section .item img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.brands-Section .item1 {
  animation-delay: calc(20s / 8 * (8 - 1) * -1);
}

.brands-Section .item2 {
  animation-delay: calc(20s / 8 * (8 - 2) * -1);
}

.brands-Section .item3 {
  animation-delay: calc(20s / 8 * (8 - 3) * -1);
}

.brands-Section .item4 {
  animation-delay: calc(20s / 8 * (8 - 4) * -1);
}

.brands-Section .item5 {
  animation-delay: calc(20s / 8 * (8 - 5) * -1);
}

.brands-Section .item6 {
  animation-delay: calc(20s / 8 * (8 - 6) * -1);
}

.brands-Section .item7 {
  animation-delay: calc(20s / 8 * (8 - 7) * -1);
}

.brands-Section .item8 {
  animation-delay: calc(20s / 8 * (8 - 8) * -1);
}

.brands-Section .item8 {
  animation-delay: calc(20s / 8 * (8 - 9) * -1);
}

@media screen and (max-width: 620px) {
  .brands-Section .section-header h2 {
    font-size: 1.5rem;
  }

  .brands-Section .item {
    left: max(calc(110px * 8), 100%);
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 400px) {
  .brands-Section .section-header h2 {
    font-size: 1.3rem;
  }

  .brands-Section .see-all {
    font-size: 0.9rem;
  }

  .brands-Section .item {
    width: 90px;
    height: 90px;
  }
}

/* footer  */
.footer a {
  color: var(--black-color);
  font-weight: 600;
}

.footer a:hover {
  color: var(--main-color);
}

/* about section */

.about-section h1,
.blog-section h1,
.mainTitle {
  font-size: 52px;
}

.about-section .about-img {
  transition: all 0.3s ease;
}

.about-section .about-img:hover {
  scale: 1.05;
}

@media screen and (max-width: 768px) {
  .about-section h1,
  .blog-section h1,
  .mainTitle {
    font-size: 35px;
  }
}

/* caegtory-1*/
.category-1,
.category-2 {
  min-height: 71.6vh;
}

.category-1 .custom-card,
.category-2 .card {
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.category-1 .custom-card:hover,
.category-2 .card:hover {
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.category-1 .card-details,
.category-2 .card-details {
  /*opacity: 0;*/
 
  transition: transform 0.3s ease-in, opacity 0.3s ease-in;
}

.category-1 .custom-card:hover .card-details {
  transform: translate(-50%, -50%) rotateY(0);
  opacity: 1;
}

.category-1 .card-border h2 {
  font-size: 1.2rem;
  text-transform: capitalize;
  letter-spacing: 2.1px;
}

/* category-2 */

/* Card Image */
.category-2 .card-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Card Details */
.category-2 .card-details {
  width: 90%;
  /*opacity: 0;*/
  padding: 5px;
  position: absolute;
  bottom: 4%;
  left: 5%;
  color: #865330;
  background: var(--main-color);
  transition: all 0.3s ease-in;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-2 .card-details h2 {
  margin-bottom: 0;
}
.category-2 .card:hover .card-details {
  opacity: 1;
}

.category-2 .card-border h2 {
  color: #865330;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1.4rem;
  text-transform: capitalize;
  /*letter-spacing: 2.1px;*/
  transition: 0.3s all;
}

/* pdf-section */

.pdf-section {
  min-height: 78.2vh;
}

.pdf-card {
  border: 1px solid var(--main-color);
  border-radius: 14px;
  transition: 0.3s all ease;
  min-height: 170px;
  cursor: pointer;
}

.pdf-card:hover {
  background: var(--white-color);
  color: var(--main-color) !important;
  border: 1px solid var(--main-color);
}

.pdf-card:hover a {
  color: var(--main-color) !important;
}

/* photo gallery */
.gallerySection .gallery img,
.videoGallerySection .videoGallery img {
  transition: 0.35s all ease;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.gallerySection .gallery img:hover,
.videoGallerySection .videoGallery img:hover {
  transform: scale(1.07);
}

/* Styles for Preview Box */
.gallerySection .preview-box {
  transition: all 0.3s ease;
}

.gallerySection .preview-box,
.videoGallerySection .videoPreviewBox {
  position: fixed;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
  z-index: 1000;
  max-width: 700px;
  width: 100%;
  scale: 0.5;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: 0;
  user-select: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.gallerySection .preview-box .image-box,
.videoGallerySection .videoPreviewBox .videoBox {
  flex-grow: 1;
}

.videoGallerySection .videoPreviewBox {
  height: 70%;
}

.gallerySection .shadow,
.videoGallerySection .shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallerySection .shadow.show,
.gallerySection .shadow.fadeScale,
.videoGallerySection .shadow.show,
.videoGallerySection .shadow.fadeScale {
  opacity: 1;
  visibility: visible;
}

.gallerySection .preview-box.fadeScale,
.gallerySection .preview-box.fadeScale,
.videoGallerySection .videoPreviewBox.fadeScale,
.videoGallerySection .videoPreviewBox.fadeScale {
  scale: 1;
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
}

.gallerySection .image-box img,
.videoGallerySection .videoBox iframe {
  max-width: 100%;
  height: 100%;
  max-height: 80vh;
  display: block;
  margin: auto;
  border-radius: 8px;
}

.gallerySection .details,
.videoGallerySection .details {
  color: var(--main-color);
  padding-bottom: 10px;
}

.icon {
  cursor: pointer;
  font-size: 24px;
  color: white;
}

.icon.close {
  color: var(--main-color);
}

.icon.close:hover {
  color: white;
}

.gallerySection .preview-box .slide:hover,
.videoGallerySection .videoPreviewBox .prevBtn:hover,
.gallerySection .preview-box .slide:hover,
.videoGallerySection .videoPreviewBox .nextBtn:hover {
  color: var(--white-color) !important;
}

.gallerySection .preview-box .slide,
.videoGallerySection .videoPreviewBox .slide,
.videoGallerySection .videoPreviewBox .prevBtn,
.videoGallerySection .videoPreviewBox .nextBtn {
  color: var(--main-color) !important;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
}

/* list products section */
/* Sidebar styling */
.list-products-section {
  min-height: 90vh;
}

.list-products-section .sidebar {
  position: absolute;
  top: 0;
  left: -100%;
  width: 300px;
  overflow-y: auto;
  z-index: 1000;
  transition: left 0.3s ease;
  border-radius: 15px;
}

.list-products-section .sidebar.active {
  left: 0;
}

.list-products-section .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.list-products-section .overlay.active {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #0000008a;
}

.list-products-section .btn-hover {
  transition: all 0.3s ease;
}

.list-products-section .btn-hover:hover {
  background: var(--black-color) !important;
  color: var(--white-color) !important;
}

.list2-products-section .list-products .row.card-container {
  max-width: 350px;
}

/* General styles */
.list-products-section .cursor-pointer {
  cursor: pointer;
}
.products-inner figure.card-img-top img {
  max-height: 260px !important;
  max-width: 200px !important;
  width: 100%;
  height: 100%;
}
figure.card-img-top.position-relative.mb-0 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.list-products-section .card-img-top img {
  padding: 21px;
  height: 260px !important;
  transition: transform 0.3s ease;
  border-radius: 15px 15px 0 0;
}

.list2-products-section .card-img-top img {
  border-radius: 15px 15px 0 0;
}

.list-products-section .card {
  border-radius: 15px;
}

.list-products-section .badge {
  font-size: 0.9rem;
}

.list-products-section .action-btn {
  background-color: var(--main-color) !important;
  color: var(--white-color) !important;
  border: 1px solid var(--main-color);
  transition: all 0.3s ease;
}

.list-products-section .action-btn:hover {
  background-color: transparent !important;
  color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.list-products-section .pagination a {
  color: var(--main-color) !important;
}

.list-products-section .pagination a:hover {
  color: var(--white-color) !important;
  background-color: var(--main-color) !important;
}

label.d-block {
  color: #6e3c24;
}

div#categoriesCollapse a {
  text-decoration: none;
}

div#brandsCollapse a {
  text-decoration: none;
}

/* Responsive behavior */
@media (min-width: 768px) {
  .list-products-section .sidebar {
    position: absolute;
    top: 0;
    bottom: 15px;
    left: 15px;
    overflow-y: auto;
    z-index: 0;
    height: fit-content;
    border-radius: 15px;
  }

  .list-products-section .closebtn-container {
    display: none !important;
  }

  .list-products-section .overlay {
    display: none !important;
  }

  .list-products-section main {
    margin-inline-start: 315px;
  }

  .list2-products-section .list-products .row.card-container {
    max-width: 800px;
  }

  .list2-products-section .card-img-top img {
    border-radius: 15px 0 0 15px;
  }
}

@media (max-width: 768px) {
  .list-products-section .list-products > .row {
    justify-content: center !important;
  }

  .list2-products-section .list-products {
    padding-inline: 5px !important;
  }

  .list2-products-section .card-container {
    margin-inline: auto !important;
  }

  .list2-products-section .card-container .product-Card {
    padding-inline: 0 !important;
  }
}

/* creer page*/

.career-page .job-listings-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  padding: 10px 20px;
}

.career-page .job-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 4px 8px 6px rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.career-page .job-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.career-page .job-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.career-page .apply-btn-career {
  background-color: var(--main-color);
  color: #fff;
  padding: 8px 26px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.career-page .apply-btn-career:hover {
  background-color: var(--white-color);
}

.career-page .toggle-details-btn {
  background-color: #6c757d;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.career-page .toggle-details-btn:hover {
  background-color: #5a6268;
}

.career-page .job-details {
  margin-top: 0px;
  background-color: #f8f9fa;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 0;
}

.career-page .job-details.show-details {
  padding: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  opacity: 1;
  visibility: visible;
}

.career-page .submit-form {
  background: var(--main-color);
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
}

.career-page .submit-btn {
  background-color: var(--black-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid var(--black-color);
  transition: all 0.3s ease;
  display: block;
  margin: 0 auto;
  width: auto;
}

.career-page .submit-btn:hover {
  background-color: var(--white-color);
}

.career-page .form-control,
.form-control-file {
  margin-bottom: 15px;
}

.career-page .bg-mainColor {
  background-color: var(--main-color);
  color: #fff;
  padding: 8px 16px;
}

/* articale page */
@media (max-width: 768px) {
  .article-page .responsive-font {
    font-size: 0.9rem;
  }

  .article-page .responsive-font-lg {
    font-size: 1.25rem;
  }

  .article-page .table-responsive .table {
    font-size: 0.85rem;
  }

  .article-page .table-responsive .table th,
  .article-page .table-responsive .table td {
    padding: 0.5rem;
  }
}

/* inner course page */
.inner-course-page .course-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.inner-course-page .course-details,
.course-registration {
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 10px;
}

.inner-course-page .icon {
  margin-inline-end: 10px;
}

@media (max-width: 992px) {
  .inner-course-page .course-title {
    font-size: 2rem;
  }

  .inner-course-page .course-description {
    font-size: 1.2rem !important;
  }
}

/* sign up page */
.form-container.sign-up {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 800px;
  width: 100%;
}

.sign-up .form-container h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}

.sign-up .form-label {
  font-weight: 600 !important;
}

.sign-up .form-container .form-control {
  border-radius: 0.5rem;
}

.sign-up .form-container .btn-primary {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.sign-up .form-container .dropdown-menu {
  width: 100%;
}

.sign-up .form-container .fas {
  margin-right: 0.5rem;
}

.sign-up .password-toggle {
  border: 2px solid rgba(136, 136, 136, 0.659);
}

.sign-up .password-toggle:hover {
  border-color: var(--main-color);
  color: #fff !important;
}

.sign-up .password-toggle:hover i {
  color: #fff !important;
}

/* search page */
.search-section .search-container {
  background: linear-gradient(135deg, var(--main-color), var(--black-color));
  padding: 40px 20px;
  border-radius: 10px;
  color: white;
  margin-bottom: 40px;
}

.search-section .search-container .footer-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.search-section .search-container .text-gray {
  font-size: 1.1rem;
  opacity: 0.9;
}

.search-section .search-form .form-control {
  border-radius: 25px;
  padding: 10px 20px;
  border: none;
}

.search-section .search-form .btn-subscribe {
  border-radius: 25px;
  padding: 10px 30px;
  background-color: var(--main-color);
  border: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid var(--main-color);
}

.search-section .search-form .btn-subscribe:hover {
  background-color: var(--main-color);
  background-color: transparent !important;
  color: var(--main-color);
}

.content-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
}

.search-section .breadcrumb {
  background: #e9ecef;
  padding: 10px;
  border-radius: 5px;
}

.search-section .breadcrumb .active {
  color: #6c757d;
  font-weight: bold;
}

.search-section .highlight {
  background-color: #fff3cd;
  padding: 2px 5px;
  border-radius: 3px;
}

.search-section .pagination-section .pagination {
  justify-content: center;
}

.search-section .pagination-section .page-item.active .page-link {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: white;
}

.search-section .pagination-section .page-link {
  color: var(--main-color);
  padding: 5px 15px;
}

.search-section .pagination-section .page-link:hover {
  background-color: var(--main-color) !important;
  color: white !important;
  border-color: var(--main-color) !important;
}

/*  inner-product*/
.inner-product .card {
  transition: transform 0.3s;
}

.inner-product .card:hover {
  transform: translateY(-5px);
}

.inner-product .nav-tabs {
  flex-wrap: nowrap;
}

.inner-product .nav-tabs .nav-link {
  border: none;
  color: var(--black-color) !important;
  background: rgb(195, 195, 195) !important;
  margin-inline-end: 3px;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.inner-product .nav-tabs .nav-link:hover,
.inner-product .nav-tabs .nav-link.active {
  background: var(--main-color) !important;
  color: var(--white-color) !important;
}

.inner-product .tab-content > .active {
  display: flex;
}

.inner-product .price {
  font-size: 1.5rem;
  color: #333;
  font-weight: bold;
}

.inner-product .old-price {
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}

.inner-product .carousel-control-prev-icon,
.inner-product .carousel-control-next-icon {
  background-color: var(--main-color);
  border-radius: 50%;
  padding: 0px;
  background-size: 60%;
}

.inner-product .thumbnail img {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
}

.inner-product .thumbnail img:hover {
  border-color: var(--main-color);
}

.inner-product .thumbnail img.active {
  border-color: var(--main-color);
}

.inner-product .carousel-item.active {
  opacity: 1;
}

.inner-product .carousel-item img {
  max-width: 400px;
  max-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .inner-product .carousel-item img {
    max-width: 300px;
    max-height: 300px;
  }
}

.inner-product .color-option {
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  overflow: hidden;
}

.inner-product .color-option:hover {
  transform: scale(1.2);
}

.inner-product .color-option .fa-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  display: none;
}

.inner-product .color-option .fa-check.active {
  display: block;
}

.inner-product .product-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 340px;
  height: 100%;
}
.inner-product .product-card .card-body {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
}
.inner-product.edited .product-card {
  min-height: 320px;
}
.inner-product.edited .product-card a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
}
.inner-product.edited .product-card a img {
  height: 100%;
  margin-top: 25px;
}
.inner-product .product-image {
  max-width: 130px;
  width: 100%;
  height: auto;
  margin: 10px auto;
  display: block;
}

.inner-product .icon-group {
  position: absolute;
  top: 20px;
  right: -100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 15px 13px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
}

.inner-product .product-card:hover .icon-group {
  right: 20px;
}

/* help center page  */

.help-section .rounded-pill {
  border-radius: 50px !important;
}

.help-section .form-control {
  padding-left: 2.5rem;
}

.help-section .position-absolute {
  z-index: 2;
}

.help-section .card-hover {
  transition: all 0.3s ease;
  border: 1px solid var(--main-color);
}

.help-section .card-hover:hover {
  background-color: var(--main-color);
  color: #fff !important;
}

.help-section .card-hover:hover .card-title,
.help-section .card-hover:hover .card-text,
.help-section .card-hover:hover .fa-2x {
  color: #fff !important;
}

.help-section .card-hover:hover .mainColor {
  color: #fff !important;
}

/* Checkout Page */

.checkout .main-title {
  font-size: 18px;
}

.checkout .main-title:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  right: -9px; /* Align properly */
  width: 0;
  height: 0;
  border-top: 16px inset transparent;
  border-bottom: 22px inset transparent;
  border-left: 10px solid var(--main-color);
}
.checkout .main-title.third-title::before,
.checkout .main-title.sec-title::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 16px inset transparent;
  border-bottom: 22px inset transparent;
  border-left: 10px solid white;
}

/* Active Tab Background */
.checkout .nav-tabs .nav-link {
  color: var(--main-color) !important;
}

.checkout .nav-tabs .nav-link.active {
  background-color: var(--main-color);
  border-bottom: 1px solid var(--black-color);
  color: var(--black-color) !important;
}

/* Payment and Shipping Options */
.checkout .payment-option,
.checkout .shipping-option {
  background-color: #f8f9fa;
  transition: background-color 0.3s ease;
  cursor: pointer !important;
}

.checkout .payment-option:hover,
.checkout .shipping-option:hover {
  background-color: var(--main-color);
}
.checkout .bg-light-blue {
  text-align: start;
  background-color: rgba(254, 196, 114, 0.3);
}

/* Cart Page */

.cart .thead-cart th {
  background-color: var(--main-color) !important;
}
.cart .tbody-cart td {
  text-align: start;
  vertical-align: middle;
  padding-block: 2px;
}
.cart .tbody-cart td:hover {
  background-color: var(--white-color);
  cursor: initial;
}
.cart-img {
  max-width: 50px;
  width: 100%;
  max-height: 50px;
  height: 100%;
  /*object-fit: cover;*/
  object-fit: contain;
  margin-right: 15px;
}
.cart .quantity-input {
  width: 70px;
  text-align: center;
}
.cart .order-summary {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .cart .table-responsive-lg {
    overflow-x: scroll !important;
    margin-bottom: 10px;
  }
  .cart .table-responsive-lg .table {
    width: 100% !important;
    min-width: max-content !important;
  }
  .cart .table-responsive-lg table {
    width: 100% !important;
  }
  .cart .table-responsive-lg table td {
    white-space: nowrap !important;
    min-width: max-content !important;
  }
}

/* Article Page */

.article .menu {
  padding: 8px 15px;
  background: white;
  border-radius: 10px;
}

.article .menu a {
  padding: 7px 12px;
  border-radius: 5px;
  transition: all 0.3s, color 0.3s;
}

.article .menu a:hover {
  background: var(--main-color);
  color: white !important;
}

.list-unstyled {
  margin-top: 76px;
}

.cart-popup .cart-all img {
  width: 100%;
  max-width: 300px;
}

.reveal-modal.cart-popup {
  top: 100px;
  transform: translate(-50%, 0%);
}


.table-responsive-md .myOrder-table {
  width: 100%;
  max-width: max-content !important;
} 

@media (max-width: 768px) {
  .table-responsive-md .myOrder-table {
    min-width: 900px;
    width: 100%;
    max-width: max-content !important;
  }
}
.v5

 {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 11px;
      padding-left: 43px !important;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 43px !important;
}

