:root {
  --main-color: #f2c12b;
}

body {
  text-decoration: none;
  margin: 0;
  padding: 0;
  list-style: none;
  /* font-family: "Inter", sans-serif !important; */
  font-family: "Teachers", sans-serif !important;
  display: none;
  scroll-behavior: smooth;
}

/* ======================scroll bar====================== */
::-webkit-scrollbar {
  width: 3px;
  height: auto;
}

/* Track */
::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 5px grey; */
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--main-color);
}

/* ====================== hero-section ====================== */
main section.hero {
  position: relative;
}

main section.hero .hero-container .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Brand Section */

section.Brand {
  background: #fff;
  width: 100%;
  height: max-content;
  padding: 80px 0;
  overflow: hidden;
}

section.Brand .left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}

section.Brand .left-content h2.section-title {
  padding: 30px 0 30px 80px;
  padding-right: 10px;
  background: #1c1c1c;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  gap: 20px;
  color: #fff;
  fill: #fff;
  font-size: 32px;
  letter-spacing: 2px;
  font-weight: 600;
}

section.Brand .left-text {
  padding: 80px;
  gap: 20px;
}

section.Brand .left-content p {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 400;
}

section.Brand .logo-slider {
  display: flex;
  overflow: hidden;
  justify-content: space-between;
  width: 100%;
}

section.Brand .logo-slider img {
  height: 60px;
  width: auto;
}

section.Brand .rigth-content img.rigth-content-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

section.Brand .splide__slide img {
  max-width: 100%;
  height: 60px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: opacity(0.5);
  transition: all 0.3s linear;
}

section.Brand .splide__slide img:hover {
  filter: opacity(1);
}

section.Brand .slider-left {
  overflow: hidden;
}

.splide__list {
  position: relative;
}

.splide__slide img {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.hover-image {
  display: none;
  position: absolute;
  width: 200px;
  /* Adjust size as needed */
  height: auto;
  z-index: 10;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

section.feature-product .feature-product-container {
  padding: 80px;
  background-color: #f5f5f5;
}

.feature-product img.feature-img {
  width: 100%;
  border-radius: 30px;
}

section.feature-product {
  background: #fff;
}

.feature-product .main-heading h2 {
  margin: 1em;
}

.feature-product .description-text {
  font-size: 20px;
}

.feature-product .product-card {
  /* border: 1px solid #ccc; */
  background-color: #fff;
  border-radius: 5px;
  /* margin: 10px; */
  padding: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.feature-product .product-image {
  position: relative;
  overflow: hidden;
}

.feature-product .product-image img {
  height: 350px;
  width:100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: none;
}

.shop-banner-section .setting-config {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media (max-width:768px) {
  .shop-banner-section .setting-config {
    flex-direction: column-reverse;
    gap: 20px;
  }

  section.shop-banner-section .shop-search-box {
    width: 100%;
  }
}

/* Dropdown button styling */
.shop-banner-section .btn-sort {
  color: #797979;
  padding: 10px 20px;
  font-size: 16px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 3px solid #c4c4c4;
  border-radius: 10px;
}

.shop-banner-section .btn-sort:hover {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 10px;
}

/* Dropdown menu styling */
.shop-banner-section .sorting-dropdown .dropdown-menu {
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.shop-banner-section .sorting-dropdown .dropdown-item {
  padding: 12px 20px;
  font-size: 16px;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 400;
}

.shop-banner-section .sorting-dropdown .dropdown-item:hover {
  background-color: #dfdfdf;
  color: #000000;
}

/* Arrow styling for dropdown button */
.shop-banner-section .btn-sort::after {
  margin-left: 10px;
  border-color: #797979 transparent transparent transparent;
}

.shop-banner-section .dropdown-item.active,
.dropdown-item:active {
  background-color: #f2c12b;
  color: white;
}

.feature-product .product-image img.default {
  display: block;
  /* Show the default image initially */
}

.feature-product .product-card:hover img {
  transform: scale(1.1);
}

.feature-product .add-to-cart {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #393939;
  padding: 15px;
  border-radius: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-product .product-card:hover .add-to-cart {
  opacity: 1;
  visibility: unset;
}

.feature-product .add-to-cart button {
  color: white;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.feature-product .product-details {
  margin-top: 10px;
}

.feature-product .product-title {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.feature-product .product-description {
  font-size: 0.9rem;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Limit number of lines */
  -webkit-box-orient: vertical;
}

.feature-product .color-selection {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.feature-product .color-selection label {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 0.5px solid #b8b8b8;
  padding: 6px;
}

/* Define specific colors for each label */
section.feature-product .color-selection label.white {
  background-color: white;
}

section.feature-product .color-selection label.red {
  background-color: rgb(255, 79, 79);
}

section.feature-product .color-selection label.blue {
  background-color: rgb(93, 93, 255);
}

section.feature-product .color-selection label.green {
  background-color: rgb(51, 128, 51);
}

section.feature-product .color-selection label.black {
  background-color: rgb(0, 0, 0);
}

section.feature-product .color-selection label.camel {
  background-color: #beb69d;
}

/* Add more colors as needed */

.color-selection label:hover {
  border-color: #333;
}

.color-selection input[type="checkbox"] {
  display: none;
}

.color-selection input[type="checkbox"]:checked+label::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  color: #333;
}

.size-select {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* service-section */
section.service-section {
  padding: 80px;
  background-color: #fff;
}

section.service-section .card-title-img {
  gap: 20px;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section.service-section .left-side img {
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.about-section {
  padding: 20px 80px;
  background: #000;
  color: #fff;
}

.about-section .container-count {
  font-size: 40px;
  font-weight: 700;
}

.about-section .description {
  font-size: x-large;
}

@media(max-width:768px) {
  .about-section .description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  section.service-section .service-cards {
    padding: 20px;
  }

  section.Brand .left-content h2.section-title,
  section.Brand .left-text,
  section.feature-product .feature-product-container,
  section.service-section {
    padding: 20px;
  }
}

/* footer */
.footer-container {
  padding: 20px 80px 50px;
  background: #f8f8f8;
}

/* about us page style */
/* 29/08 */
section.about-info {
  background: #121212;
  padding: 80px;
}

section.about-info .info-container .img-container img {
  object-fit: cover;
  object-position: top;
}

section.about-info .info-container .img-container {
  width: 100%;
}

section.about-info .main-desc {
  padding: 0px 20px 20px 20px;
  font-size: 18px;
  color: #858585;
  font-weight: 500;
}

section.about-info h3.main-heading {
  font-size: 64px;
  color: #ffffff;
  padding: 20px;
  font-weight: 600;
  margin: 0;
}

.text-container {
  width: 40%;
  color: #fff;
}

section.about-info .info-container .text-container h4.sub-heading {
  font-size: 32px;
  color: #fff;
}

section.about-info .info-container .text-container p {
  font-size: 18px;
  color: #919191;
  font-weight: 500;
}

section.about-info .info-container .text-container-box {
  gap: 100px;
  padding: 80px 80px 0px;
}

@media (max-width: 991px) {
  section.about-info {
    padding: 40px;
  }

  #shoes-card-1 {
    position: absolute;
    top: 100px;
    left: 0;
  }

  #shoes-card-2 {
    position: absolute;
    top: 180px;
    right: 0;
  }

  #shoes-card-3 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, 0%);
  }

  section.about-info .info-container .text-container-box {
    gap: 30px;
    padding: 40px 0px 0px;
    flex-direction: column;
  }

  section.about-info .info-container .text-container {
    width: 100%;
  }
}

@media (max-width: 575px) {
  section.about-info {
    padding: 20px;
  }

  section.about-info h3.main-heading {
    font-size: 32px;
  }

  section.about-info .main-desc {
    padding: 10px;
  }
}

section.images-sliders {
  background: #100c00;
  padding: 50px 0;
}

section.images-sliders .wrapperRollingText {
  white-space: nowrap;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: 72px;
  color: #c8c8c8 !important;
}

section.images-sliders .rollingText {
  font-size: 4vw;
  display: inline-block;
  padding-left: 10px;
  color: #fff;
}

section.images-sliders .wrapperRollingText02 {
  white-space: nowrap;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: 72px;
  color: #3a3a3a !important;
}

section.images-sliders .rollingText02 {
  font-size: 6vw;
  display: inline-block;
  padding-left: 13px;
}

section.images-sliders span {
  font-weight: 600;
  color: #f26000;
}

section.images-sliders .limits {
  position: fixed;
  top: 20vh;
  height: 50vh;
  width: 100px;
  border-top: 1px solid #6f6f6f;
  border-bottom: 1px solid #6f6f6f;
}

section.images-sliders .half {
  position: fixed;
  top: 50vh;
  width: 100px;
  border-top: 1px solid green;
}

section.images-sliders .images-sliders {
  overflow: hidden;
  width: 100%;
}

section.images-sliders {
  overflow: hidden;
}

section.images-sliders .wrapperRollingText {
  display: flex;
}

section.images-sliders .rollingText {
  display: flex;
  white-space: nowrap;
}

section.images-sliders .content {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.hero-about #parallax-effect {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.hero-about .parallax-item {
  position: absolute;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  text-align: center;
}

.hero-about .parallax-item {
  width: 100%;
}

.hero-about .parallax-item img {
  width: 20%;
}

.hero-about .parallax-item:nth-child(1) {
  top: 25%;
  left: 25%;
}

.hero-about .parallax-item:nth-child(2) {
  top: 50%;
  left: 50%;
}

.hero-about .parallax-item:nth-child(3) {
  top: 75%;
  left: 75%;
}

.hero-about {
  background-image: url("../assets/jpg/Texture 4.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-about .parallax-item h1 {
  color: #2e2e2e;
  font-size: 68px;
  font-weight: normal;
}

.hero-about {
  overflow: hidden;
}

.accordion-section .accordion li a h2 {
  color: #fff;
}

.accordion-section .accordion li a {
  text-decoration: none;
  color: currentColor;
  text-align: justify;
}

.accordion-section .accordion li a p {
  font-size: 18px;
}

.accordion-section .accordion {
  width: 100%;
  max-width: 1080px;
  margin: 50px auto;
  overflow: hidden;
}

.accordion-section .accordion ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.accordion-section .accordion ul li {
  flex: 1;
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  transform: scale(1);
  will-change: flex, opacity;
}

.accordion-section .accordion ul li div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 20px;
  text-align: center;
  opacity: 0;
  will-change: opacity;
}

@media screen and (max-width: 600px) {
  .accordion-section .accordion ul {
    flex-direction: column;
  }

  .accordion-section .accordion ul li {
    height: 200px;
  }
}

:root {
  --red: #db2828;
  --orange: #f2711c;
  --yellow: #fbbd08;
  --olive: #b5cc18;
  --green: #21ba45;
  --teal: #00b5ad;
  --blue: #2185d0;
  --violet: #6435c9;
  --purple: #a333c8;
  --pink: #e03997;
}

section.shop-banner-section .shoe-color .color-container input[type="radio"] {
  display: none;
  border-radius: 30px;
}

section.shop-banner-section .shoe-color .color-container input[type="radio"]:checked+label span {
  transform: scale(1.25);
}

section.shop-banner-section .shoe-color .color-container input[type="radio"]:checked+label .red {
  border: 2px solid #971e1e;
  /* darkened by 25% */
}

section.shop-banner-section .shoe-color .color-container input[type="radio"]:checked+label .orange {
  border: 2px solid #a84f12;
  /* darkened by 25% */
}

section.shop-banner-section .shoe-color .color-container input[type="radio"]:checked+label .yellow {
  border: 2px solid #b89106;
  /* darkened by 25% */
}

section.shop-banner-section .shoe-color .color-container input[type="radio"]:checked+label .olive {
  border: 2px solid #889713;
  /* darkened by 25% */
}

section.shop-banner-section .shoe-color .color-container input[type="radio"]:checked+label .green {
  border: 2px solid #188336;
  /* darkened by 25% */
}

section.shop-banner-section .shoe-color .color-container input[type="radio"]:checked+label .teal {
  border: 2px solid #008782;
  /* darkened by 25% */
}

section.shop-banner-section .shoe-color .color-container input[type="radio"]:checked+label .blue {
  border: 2px solid #1866a1;
  /* darkened by 25% */
}

section.shop-banner-section .shoe-color .color-container input[type="radio"]:checked+label .violet {
  border: 2px solid #462897;
  /* darkened by 25% */
}

section.shop-banner-section .shoe-color .color-container input[type="radio"]:checked+label .purple {
  border: 2px solid #7b27a0;
  /* darkened by 25% */
}

section.shop-banner-section .shoe-color .color-container input[type="radio"]:checked+label .pink {
  border: 2px solid #a12c70;
  /* darkened by 25% */
}

section.shop-banner-section .shoe-color .color-container label {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  cursor: pointer;
}

section.shop-banner-section .left-menu .shoe-color .color-container label:hover span {
  transform: scale(1.25);
}

section.shop-banner-section .left-menu .shoe-color .color-container label span {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease-in-out;
}

section.shop-banner-section .left-menu .shoe-color .color-container label span.red {
  background: #db2828;
}

section.shop-banner-section .left-menu .shoe-color .color-container label span.orange {
  background: #f2711c;
}

section.shop-banner-section .left-menu .shoe-color .color-container label span.yellow {
  background: #fbbd08;
}

section.shop-banner-section .left-menu .shoe-color .color-container label span.olive {
  background: #b5cc18;
}

section.shop-banner-section .left-menu .shoe-color .color-container label span.green {
  background: #21ba45;
}

section.shop-banner-section .left-menu .shoe-color .color-container label span.navi-green {
  background: #1F4E53;
}

section.shop-banner-section .left-menu .shoe-color .color-container label span.teal {
  background: #00b5ad;
}

section.shop-banner-section .left-menu .shoe-color .color-container label span.blue {
  background: #2185d0;
}

section.shop-banner-section .left-menu .shoe-color .color-container label span.violet {
  background: #6435c9;
}

section.shop-banner-section .left-menu .shoe-color .color-containerlabel span.purple {
  background: #a333c8;
}

section.shop-banner-section .left-menu .shoe-color .color-container label span.grey {
  background: #888888;
}

section.shop-banner-section .left-menu .shoe-color .color-container label span.pink {
  background: #e03997;
}


/* shop page css */
section.shop-banner-section span.breadcrum-box a {
  cursor: pointer;
  text-decoration: none;
  color: #747474;
  font-weight: 600;
}

section.shop-banner-section span.breadcrum-box a.current-link {
  color: #313131;
}

section.shop-banner-section .top-banner img {
  border-radius: 15px;
  /* height: 500px; */
  object-fit: cover;
  object-position: center;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

section.shop-banner-section .shop-search-box {
  width: max-content;
  padding: 8px 10px;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  border: 3px solid #c4c4c4;
  transition: all 0.2s linear;
}

section.shop-banner-section .shop-search-box:hover {
  border-color: #939393 !important;
}

section.shop-banner-section .shop-search-box .search-box {
  border: 0;
}

section.shop-banner-section .shop-search-box .search-box:focus-visible {
  border: 0;
  outline: 0;
}

.shop-banner-section .price-range-wrapper {
  background-color: #ffffff;
  padding: 20px;
  max-width: 400px;
  border-radius: 10px;
}

.shop-banner-section .price-group {
  margin-bottom: 20px;
}

.shop-banner-section .price-group label {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
  font-weight: bold;
}

.shop-banner-section .price-group input[type="number"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
  transition: border-color 0.3s;
}

.shop-banner-section .price-group input[type="number"]:focus {
  border-color: #007bff;
  outline: none;
}

/* Adjust the height of the range track */
.shop-banner-section input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  /* Slightly reduce the height of the track */
  background: #ddd;
  border-radius: 5px;
  outline: none;
  transition: background 0.3s;
  position: relative;
  margin: 0;
  /* Remove any additional margin */
}

/* Center the thumb */
.shop-banner-section input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: #007bff;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
  top: 50%;
  /* Position it in the middle */
  transform: translateY(-50%);
  /* Center the thumb */
}

.shop-banner-section input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: #007bff;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
  top: 50%;
  /* Position it in the middle */
  transform: translateY(-50%);
  /* Center the thumb */
}

/* Adjust the track */
.shop-banner-section input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  /* Match the height with the range input */
  cursor: pointer;
  background: #ddd;
  border-radius: 5px;
}

.shop-banner-section input[type="range"]::-moz-range-track {
  width: 100%;
  height: 8px;
  /* Match the height with the range input */
  cursor: pointer;
  background: #ddd;
  border-radius: 5px;
}

/* Min Price Slider Style */
.shop-banner-section .slider-min::-webkit-slider-thumb {
  background-color: #00c853;
  /* Green */
}

.shop-banner-section .slider-min::-moz-range-thumb {
  background-color: #00c853;
  /* Green */
}

/* Max Price Slider Style */
.shop-banner-section .slider-max::-webkit-slider-thumb {
  background-color: #ff5722;
  /* Orange */
}

.shop-banner-section .slider-max::-moz-range-thumb {
  background-color: #ff5722;
  /* Orange */
}

section.shop-banner-section .shoe-color .color-container label span {
  border-radius: 30px;
}

.shop-banner-section .container-content {
  padding: 0px 80px 80px;
  gap: 40px;
}

.shop-banner-section .container-content .left-menu {
  padding: 25px;
  border-radius: 15px;
  background: #ffffff;
  width: 20%;
  height: 100%;
  position: sticky;
  top: 25px;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

section.shop-banner-section {
  background: #fff;
}

.shop-banner-section .container-content .left-menu h4.sidebar-title {
  color: #000000;
  font-size: 28px;
  font-weight: 600;
}

.shop-banner-section .container-content .right-menu {
  width: 80%;
}

.shop-banner-section .container-content .left-menu .heading-title {
  padding: 110px 80px 0;
}

.shop-banner-section .container-content .left-menu .heading-title h3 {
  color: #ffffff;
}

.shop-banner-section .container-content .left-menu .heading-title p.sub-heading {
  color: #a6a6a6;
  margin: 0;
}

.shop-banner-section .container-content .left-menu .heading-title p.content {
  color: #a6a6a6;
}

.shop-banner-section h5.category-size,
.shop-banner-section h5.color-size,
.shop-banner-section h5.filter-size,
.shop-banner-section h5.price-size,
.shop-banner-section h5.sports-tag,
.availability-container h5.availability-tag {
  color: #000000;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
}

.shop-banner-section .color-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-banner-section .heading {
  display: flex;
  width: 100%;
  /* margin: 10px 0px 10px; */
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 10px;
  background: #dddddd;
  cursor: pointer;
}

.shop-banner-section .shoes-size .size-buttons-box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.shop-banner-section .shoes-size .size-buttons-box button {
  background: #dedede;
  border: 0;
  border-radius: 30px;
  width: 25px;
  height: 25px;
  padding: 10px;
  font-size: 12px;
}

.shop-banner-section .category-container .category-list button.shoe {
  background: #dedede;
  border: 0;
  font-size: 12px;
}

.shop-banner-section .category-container .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.shop-banner-section .heading-title {
  padding: 110px 80px 20px;
}

.shop-banner-section .left-menu>div {
  /* border-bottom: 1px solid #bfbfbf; */
  padding: 10px 0;
}

.shop-banner-section .slider-max::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 20px !important;
  height: 20px !important;
  background: #007bff !important;
  border-radius: 50% !important;
  cursor: pointer !important;
}

.sports-height-container .shoe-types-wrapper .form-group {
  gap: 5px;
  align-items: center;
  margin-bottom: 5px;
}

.shop-banner-section .right-menu .product-container .product-image img {
  width: 100%;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  height: 400px;
  object-fit: cover;
}

.shop-banner-section .right-menu .color-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-banner-section .right-menu .color-option {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #bdbdbd;
}

.shop-banner-section .right-menu .color-option.white {
  background-color: #ffffff;
}

.shop-banner-section .right-menu .color-option.raisin-black {
  background-color: #232323;
}

.shop-banner-section .right-menu .color-option.anti-flash-white {
  background-color: #f0f0f0;
}

.shop-banner-section .right-menu .color-option.navy-green {
  background-color: #3B5B64;
}

.shop-banner-section .right-menu .color-option.columbia-blue {
  background-color: #C4D5E0;
}

.shop-banner-section .right-menu .color-option.red {
  background-color: #ff0000;
}

.shop-banner-section .right-menu .color-option.camel {
  background-color: #c19a6b;
}

.shop-banner-section .right-menu .color-option.black {
  background-color: #000000;
}

.shop-banner-section .right-menu .color-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.shop-banner-section .right-menu .color-option:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px;
  font-size: 12px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.shop-banner-section .right-menu .color-option:hover::after {
  opacity: 1;
  visibility: visible;
}

.shop-banner-section .right-menu .pop-up-cart {
  position: absolute;
  bottom: 0;
  z-index: 0;
  width: 100%;
  transform: scaleY(0);
  transition: all 0.2s ease-in-out !important;
  transform-origin: bottom;
}

.shop-banner-section .right-menu .product-card:hover {
  transform: scaleY(1);
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px,
    rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.shop-banner-section .right-menu .product-card:hover .pop-up-cart {
  transform: scaleY(1);
}

.shop-banner-section .right-menu .product-image {
  position: relative;
}

.shop-banner-section .right-menu .pop-up-cart button {
  background: #f1be47;
  border: 0;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
}

.shop-banner-section .right-menu .product-card {
  background: #ffffff;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  height: 100%;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.shop-banner-section .right-menu .product-details {
  padding: 15px;
  letter-spacing: 1px;
}

.shop-banner-section .right-menu .product-details .price-container {
  font-weight: 700;
}

.shop-banner-section .right-menu .product-details .price-container p.discount-price {
  text-decoration: line-through;
  font-size: 11px;
  color: #6d6d6d;
}

.shop-banner-section .toggle-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  /* Smooth rotation animation */
}

.shop-banner-section .rotate {
  transform: rotate(90deg);
  /* Rotate the arrow */
}

.shop-banner-section .toggle-content {
  padding: 10px;
}

.shop-banner-section .right-menu .product-details h3.product-title {
  color: #000;
}

.shop-banner-section .right-menu .product-details p.product-description {
  color: #505050;
}

.shop-banner-section .right-menu .product-details .price-container p.price {
  color: #363636;
}

.shop-banner-section .setting-config {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Dropdown button styling */
.shop-banner-section .btn-sort {
  /* background-color: var(--main-color); */
  /* Bootstrap primary color */
  color: #797979;
  padding: 10px 20px;
  font-size: 16px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 3px solid #c4c4c4;
  border-radius: 10px;
}

.shop-banner-section .btn-sort:hover {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 10px;
}

/* Dropdown menu styling */
.shop-banner-section .sorting-dropdown .dropdown-menu {
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.shop-banner-section .sorting-dropdown .dropdown-item {
  padding: 12px 20px;
  font-size: 16px;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 400;
}

.shop-banner-section .sorting-dropdown .dropdown-item:hover {
  background-color: #dfdfdf;
  color: #000000;
}

/* Arrow styling for dropdown button */
.shop-banner-section .btn-sort::after {
  margin-left: 10px;
  border-color: #797979 transparent transparent transparent;
}

.shop-banner-section .dropdown-item.active,
.dropdown-item:active {
  background-color: #f2c12b;
  color: white;

}

.shop-banner-section .right-menu .product-container>a {
  text-decoration: none;
}

@media(max-width:1200px) {
  .shop-banner-section .container-content .left-menu {
    width: 30%;
  }

  .shop-banner-section .container-content .right-menu {
    width: 70%;
  }
}

@media(max-width:991px) {
  .shop-banner-section .container-content .left-menu {
    width: 40%;
  }

  .shop-banner-section .container-content .right-menu {
    width: 60%;
  }

  .shop-banner-section .container-content {
    padding: 0px 20px 20px;
  }

  .shop-banner-section .right-menu .product-container .product-image img {
    height: auto;
  }
}

@media(max-width:575px) {
  .shop-banner-section .container-content .left-menu {
    width: 100%;
    position: static;
  }

  .shop-banner-section .container-content .right-menu {
    width: 100%;
  }

  .shop-banner-section .container-content {
    flex-direction: column;
  }

  .shop-banner-section .heading-title {
    padding: 110px 20px 20px;
  }
}

/* contact - us page */
section.checkout-section {
  padding: 80px 0;
}

section.checkout-section .contact-us-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

section.checkout-section .contact-header {
  margin-bottom: 40px;
}

section.checkout-section .contact-header h1 {
  font-size: 36px;
  color: #333;
}

section.checkout-section .contact-header p {
  color: #777;
  font-size: 18px;
}

section.checkout-section .contact-content {
  flex-wrap: wrap;
}

section.checkout-section .contact-form,
section.checkout-section .contact-info {
  flex: 1;
  min-width: 150px;
  margin: 20px;
}

section.checkout-section .contact-form h3,
section.checkout-section .contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

section.checkout-section .form-group {
  margin-bottom: 20px;
}

section.checkout-section .form-group input,
section.checkout-section .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

section.checkout-section .form-group input::placeholder,
section.checkout-section .form-group textarea::placeholder {
  color: #999;
}

section.checkout-section .submit-btn {
  background-color: #f1be47;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

section.checkout-section .submit-btn:hover {
  background-color: #d19e27;
}

section.checkout-section .contact-info ul {
  list-style: none;
  padding-left: 0;
}

section.checkout-section .contact-info ul li {
  font-size: 16px;
  color: #333;
  margin: 10px 0;
}

section.checkout-section .contact-info ul li i {
  margin-right: 10px;
  color: #f1be47;
}

section.checkout-section .map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media (max-width: 768px) {
  section.checkout-section .contact-content {
    flex-direction: column;
  }

  section.checkout-section .contact-us-container {
    padding: 20px;
  }
}

/* privacy-policy page */
.privacy-policy-section {
  padding: 100px 0;
}

.privacy-policy-section h1 {
  font-size: 36px;
  font-weight: bold;
  color: #F2C12B;
  text-align: center;
  margin-bottom: 30px;
}

.privacy-policy-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.privacy-policy-section .policy-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.privacy-policy-section h2 {
  font-size: 28px;
  margin-top: 30px;
  color: #F2C12B;
}

.privacy-policy-section ul {
  margin-top: 15px;
  list-style-type: disc;
  margin-left: 20px;
}

.privacy-policy-section ul li {
  font-size: 18px;
}

/* term & Condition page  */
.terms-section {
  padding: 100px 0;
}

.terms-section h1 {
  font-size: 36px;
  font-weight: bold;
  color: #F2C12B;
  text-align: center;
  margin-bottom: 30px;
}

.terms-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.terms-section .terms-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.terms-section h2 {
  font-size: 28px;
  margin-top: 30px;
  color: #F2C12B;
}

.terms-section ul {
  margin-top: 15px;
  list-style-type: disc;
  margin-left: 20px;
}

.terms-section ul li {
  font-size: 18px;
}


/* cart page css */
.cart-banner-section .cart-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* Allow flex wrapping for responsive design */
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
  /* Add bottom padding to avoid footer overlap */
}

/* Cart Items Section */
.cart-banner-section .cart-items {
  flex: 1 1 60%;
  height: 100%;
  /* Takes 60% width, flexible */
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 320px;
}

.cart-banner-section .cart-items h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.cart-banner-section .cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
  /* Wrap on smaller screens */
}

.cart-banner-section .item-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cart-banner-section .item-details {
  flex: 1 1 auto;
  /* Allow flexibility in width */
  padding: 0 15px;
  min-width: 180px;
}

.cart-banner-section .item-name {
  font-size: 18px;
  color: #0071e3;
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-banner-section .item-price {
  font-size: 16px;
  color: #777;
  margin-bottom: 10px;
  font-weight: 600;
}

.cart-banner-section .item-quantity {
  display: flex;
  align-items: center;
}

.cart-banner-section .quantity-btn {
  background-color: #F2C12B;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.2s;
}

.cart-banner-section .quantity-btn:hover {
  background-color: #c79b18;
}

.cart-banner-section .quantity-input {
  width: 40px;
  text-align: center;
  font-size: 16px;
  margin: 0 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px;
}

.cart-banner-section .item-remove .remove-btn {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cart-banner-section .item-remove .remove-btn:hover {
  background-color: #c0392b;
}

/* Order Summary Section */
.cart-banner-section .order-summary {
  flex: 1 1 35%;
  /* Takes 35% width, flexible */
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  height: 100%;
}

.cart-banner-section .order-summary h2 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.cart-banner-section .summary-details {
  font-size: 16px;
  color: #555;
}

.cart-banner-section .summary-price {
  font-weight: bold;
  color: #333;
}

.cart-banner-section .total-price {
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
  color: #F2C12B;
}

.cart-banner-section .checkout-btn {
  background-color: #F2C12B;
  color: white;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  transition: background-color 0.2s;
}

.cart-banner-section .checkout-btn:hover {
  background-color: #c49918;
}

/* Discount Section */
.cart-banner-section .discount-section {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.cart-banner-section .discount-input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s ease;
  outline: none;
}

.cart-banner-section .discount-input:focus {
  border-color: #0071e3;
}

.cart-banner-section .apply-discount-btn {
  background-color: #F2C12B;
  color: white;
  padding: 10px 20px;
  margin-left: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.cart-banner-section .apply-discount-btn:hover {
  background-color: #c79b18;
}

.cart-banner-section .discount-info {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.cart-banner-section .discount-price {
  color: #e74c3c;
  font-weight: bold;
}

/* Responsive Design */
@media screen and (max-width: 575px) {
  .cart-banner-section .cart-container {
    flex-direction: column;
    padding-bottom: 150px;
    /* Add more padding to avoid footer overlap */
  }

  .cart-banner-section .cart-item {
    flex-direction: column;
    /* Stack item details vertically */
    text-align: center;
  }

  .cart-banner-section .cart-items,
  .cart-banner-section .order-summary {
    width: 100%;
    /* Full width for mobile */
    margin-top: 40px;
  }

  .cart-banner-section .cart-item,
  .cart-banner-section .order-summary {
    margin-bottom: 20px;
    gap: 15px;
  }
}

@media screen and (max-width: 576px) {
  .cart-banner-section .item-image img {
    width: 80px;
    height: 80px;
  }

  .cart-banner-section .quantity-btn {
    padding: 5px 10px;
    font-size: 16px;
  }

  .cart-banner-section .quantity-input {
    width: 30px;
    font-size: 14px;
  }

  .cart-banner-section .checkout-btn {
    font-size: 16px;
    padding: 12px;
  }

  .cart-banner-section .item-quantity {
    justify-content: center;
  }
}


/* Product Detail Page */
.detail-container {
  padding-top: 80px;
}

.detail-container .product-detail-page {
  display: flex;
  margin: 20px auto 0;
  padding: 0 80px 80px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.detail-container .image-slider {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.detail-container .main-image {
  height: 600px;
}

.detail-container .main-image img {
  max-width: 100%;
  /* height: auto; */
  border-radius: 10px;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.detail-container .thumbnails {
  display: flex;
  gap: 10px;
}

.detail-container .thumbnail {
  width: 80px;
  height: 80px;
  cursor: pointer;
  border-radius: 5px;
  border: 2px solid #ddd;
  transition: border-color 0.3s;
}

.detail-container .thumbnail:hover {
  border-color: #007bff;
}

.detail-container .product-title {
  font-size: 58px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.detail-container .product-info {
  padding: 40px;
  border-radius: 15px;
  letter-spacing: 1px;
}

.detail-container .price-container {
  gap: 15px;
}

.detail-container .price-container p.original-price {
  text-decoration: line-through;
}

.detail-container .price-container p.discount-price {
  color: #3a3a3a;
}

.detail-container .related-slider {
  flex-wrap: wrap;
  justify-content: center;
}

.detail-container .price {
  font-size: 32px;
  font-weight: 600;
  color: #707070;
  margin-bottom: 15px;
}

.detail-container .rating {
  margin-bottom: 15px;
  font-weight: 600;
  color: #5b5b5b;
}

.detail-container .stars {
  color: #f39c12;
  font-size: 20px;
}

.detail-container .stock-status {
  color: #2ecc71;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 14px;
}

.detail-container .color-selection {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.detail-container .color-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.detail-container .color-selection label {
  font-weight: bold;
}

.detail-container .color-circle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #adadad;
}

.detail-container .color-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.detail-container .size-selection {
  margin-bottom: 20px;
}

.detail-container .color-selection label,
.detail-container .size-selection label,
.detail-container .quantity-add label {
  font-weight: bold;
  font-size: 20px;
  color: #6c6c6c;
}

.detail-container .size-selection select {
  padding: 8px;
  font-size: 16px;
  border: 0;
  border-radius: 10px;
  background: #d9d9d9;
}

.detail-container .quantity-add {
  margin-bottom: 20px;
}

.detail-container .quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.detail-container .quantity-controls button {
  padding: 8px 15px;
  font-size: 16px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.detail-container .quantity-controls button:hover {
  background: #0056b3;
}

.detail-container .quantity {
  width: max-content;
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.detail-container .quantity button {
  width: 50px;
  height: 51px;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  background: var(--main-color);
  font-size: 30px;
  align-items: center;
  color: #fff;
  border: 0;
}

.detail-container .quantity input#quantity {
  border: 0;
  padding: 0 20px;
  width: 140px;
  text-align: center;
  border-radius: 10px;
  background: #d9d9d9;
}

.detail-container .carts-add-btn {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.detail-container .carts-add-btn button {
  padding: 10px 40px;
  border-radius: 10px;
  border: 0;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.1s ease;
}

.detail-container .carts-add-btn button#addToCart {
  background: var(--main-color);
  color: #fff;
}

.detail-container .carts-add-btn button#addToCart:hover,
.detail-container .quantity button:hover {
  background: #e4ac00;
  color: #fff;
}

.detail-container .carts-add-btn button#buyNow {
  background: #303030;
  color: #fff;
}

.detail-container .carts-add-btn button#buyNow:hover {
  background: #171717;
}

.detail-container .action-buttons button {
  padding: 10px 20px;
  font-size: 16px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  margin-right: 10px;
}

.detail-container .action-buttons button:hover {
  background: #218838;
}

.detail-container .description {
  margin-top: 20px;
  line-height: 1.6;
  color: #555;
  font-size: 20px;
}

.detail-container .related-products {
  margin-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.detail-container .related-slider {
  display: flex;
  gap: 15px;
}

.detail-container .related-item {
  text-align: center;
}

.detail-container .related-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: transform 0.3s, box-shadow 0.3s;
}

.detail-container .related-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.detail-container .related-item p {
  margin-top: 5px;
  font-weight: bold;
  color: #333;
}

.detail-container .color-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.detail-container .color-circle::after {
  content: attr(data-color);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: #333;
  white-space: nowrap;
  margin-top: 5px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}

.detail-container .color-circle:hover::after {
  visibility: visible;
  opacity: 1;
}

.detail-container .color-circle.red {
  background-color: #000000;
}

.detail-container .color-circle.green {
  background-color: #e7e7e7;
}

.detail-container .color-circle.blue {
  background-color: #CFC8AC;
}


.detail-container .accordion {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.detail-container .accordion-item {
  border-bottom: 1px solid #b3b3b3;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.detail-container .accordion-header {
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #3c3c3c;
  background-color: #f1f1f1;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-container .accordion-header::after {
  content: '+';
  font-size: 25px;
  transition: transform 0.3s;
}

.detail-container .accordion-header.active::after {
  transform: rotate(45deg);
}

.detail-container .accordion-content {
  padding: 15px;
  font-size: 16px;
  color: #333;
  display: none;
}

.detail-container .accordion-content p {
  margin: 0;
}

/* review code  */
.detail-container .reviews-section {
  max-width: 800px;
  margin: 80px auto;
  text-align: center;
  position: relative;
}

.detail-container .reviews-section h2 {
  font-size: 32px;
  color: #333;
}

.detail-container .reviews-slider {
  max-width: 700px;
  margin: 0 auto;
  overflow-x: hidden;
}

.detail-container .review-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: left;
  height: 100%;
  width: 85%;
  margin: auto;
}

.detail-container .review-profile img {
  border-radius: 50%;
  margin-right: 20px;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.detail-container .review-content {
  flex: 1;
}

.detail-container .review-rating {
  font-size: 20px;
  color: #f39c12;
  margin-bottom: 10px;
}

.detail-container .review-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.detail-container .review-author {
  font-size: 14px;
  color: #888;
  font-style: italic;
}

.detail-container button#writeReview {
  margin-top: 30px;
  background-color: var(--main-color);
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.detail-container button#writeReview:hover {
  background-color: #d19d00;
}

/* Slick Slider Custom Arrows */
.detail-container .slick-prev,
.detail-container .slick-next {
  font-size: 20px;
  color: #333;
  background-color: transparent;
  border: none;
  z-index: 1;
}

.detail-container .slick-prev:hover,
.detail-container .slick-next:hover {
  color: #0071e3;
}

.detail-container .slick-track {
  display: flex;
  gap: 70px;
  justify-content: center;
  align-items: center;
}

.detail-container .reviews-section button.slick-next.slick-arrow,
.detail-container button.slick-prev.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.detail-container .reviews-section button.slick-next.slick-arrow {
  right: 0;
}

.detail-container .reviews-section button.slick-prev.slick-arrow {
  left: 0;
}

.detail-container .slick-prev:hover,
.detail-container .slick-next:hover {
  color: #e0a800;
}

/* Modal styling */
.detail-container .modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.detail-container .modal .modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
}

.detail-container .modal .heading-box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2em;
}

/* Close button */

.detail-container .modal .close-container {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 30px;
}
.detail-container .modal .close-btn {
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  transform: translate(0px, -2px);
  color: #fff;
}

.detail-container .modal .close-btn:hover,
.detail-container .modal .close-btn:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/* Form input styling */
.detail-container .modal .form-control {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.detail-container .modal textarea.form-control {
  resize: vertical;
}

/* Submit button styling */
.detail-container .modal .btn-submit-review {
  background-color: #f2c12b;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.detail-container .modal .btn-submit-review:hover {
  background-color: #ca9f1d;
}

.detail-container .modal .pop-up-heading-box {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.detail-container .modal #stars {
  display: flex;
  gap: 5px;
  font-size: 30px;
  direction: rtl;
  cursor: pointer;
  justify-content: end;
}


.detail-container .modal #stars .star {
  color: #ddd; /* Default color for unselected stars */
  transition: color 0.2s ease-in-out;
}


.detail-container .modal #stars .star.selected,
.detail-container .modal #stars .star:hover, 
.detail-container .modal #stars .star:hover ~ .star {
  color: #f39c12; /* Gold color for selected stars */
}

@media(max-width:1200px) {
  .detail-container .product-detail-page {
    padding: 0 40px 40px;
  }

  .detail-container .product-title {
    font-size: 38px;
  }

  .detail-container .price {
    font-size: 24px;
  }

  .detail-container .color-selection label,
  .detail-container .size-selection label,
  .detail-container .quantity-add label,
  .detail-container .rating .stars {
    font-size: 16px;
  }

  .detail-container .quantity {
    margin: 10px 0;
  }

  .detail-container .quantity button {
    width: 40px;
    height: 40px;
    font-size: 23px;
    align-items: center;
    justify-content: flex-start;
  }

  .detail-container .carts-add-btn button {
    padding: 10px 30px;
    font-size: 16px;
  }

  .detail-container .description {
    font-size: 16px;
  }

  .detail-container .accordion-header {
    font-size: 18px;
  }

  .detail-container .product-info {
    padding: 30px 0;
  }
}

@media(max-width:768px) {
  .detail-container .product-detail-page {
    padding: 0 20px 20px;
  }

  .detail-container .product-title {
    font-size: 28px;
  }

  .detail-container .price {
    font-size: 24px;
  }

  .detail-container .color-selection label,
  .detail-container .size-selection label,
  .detail-container .quantity-add label,
  .detail-container .rating .stars {
    font-size: 16px;
  }

  .detail-container .quantity {
    margin: 10px 0;
  }

  .detail-container .quantity button {
    width: 40px;
    height: 40px;
    font-size: 23px;
    align-items: center;
    justify-content: flex-start;
  }

  .detail-container .carts-add-btn button {
    padding: 10px 30px;
    font-size: 16px;
  }

  .detail-container .description {
    font-size: 16px;
  }

  .detail-container .accordion-header {
    font-size: 18px;
  }

  .detail-container .product-info {
    padding: 30px 0;
  }

  .detail-container .slick-track {
    gap: 0;
  }

  .detail-container .review-card {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width:575px) {
  .detail-container .main-image {
    height: auto;
  }

  .detail-container .reviews-section h2 {
    font-size: 24px;
  }
}