
/* slider + detail */
.product-container {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  max-width: 80%;
  margin: 5rem auto;
  background-color: #fff;
  padding: 2rem;
  /* border-radius: 10px; */
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.slider-detail {
  display: flex;
  justify-content: space-between;
}
/*! ---------------------------------------------------------------------*/
.slider {
  width: 60%;
  height: 746px;
  display: flex;
  justify-content: center;
  column-gap: 1rem;
  overflow: hidden;
}

.slider-main-image {
  width: 560px;
  height: 746px;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: opacity 0.1s ease-in, transform 0.3s ease;
}


.slider-main-image img {
  width: 100%;
  height: 100%;
  /* border-radius: 0.5rem; */
  opacity: 1;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
}

.thumbnail-img-container {
  width: 120px;
  height: 160px;
}

#slider-main-image.fade-out {
  opacity: 0;
}

.slider-main-image:hover img {
  transform: scale(1.5);
  cursor: zoom-in;
}

.thumbnails {
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.thumbnails::-webkit-scrollbar {
  display: none;
}

.thumbnails img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  object-fit: cover;
  object-position: center;
  border-radius: 0.5rem;
}

.thumbnail-wrapper img:hover {
  border-color: var(--additional-Color);
}


/* product details */
.product-details {
  width: 40%;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.product-text {
  display: flex;
  flex-direction: column;
}

.product-text h1 {
  font-weight: 500;
  font-size: 1.875rem;
  color: var(--title-color);
}

.product-text p {
  font-size: 1.125rem;
  color: var(--text-color);
  max-height: 10rem;
  overflow-y: auto;
  margin-top: 5px;
  padding-right: 5px;
}

.product-text p::-webkit-scrollbar {
  width: 8px;
}

.product-text p::-webkit-scrollbar-thumb {
  background-color: var(--text-color);
  border-radius: 2px;
}

.product-text p::-webkit-scrollbar-track {
  background-color: #dddddd;
  border-radius: 2px;
}

.variants {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  border-top: 0.0625rem solid #ddd;
  padding-top: 1rem;
}

.product-files {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-files .detail-container h3 {
  width: auto;
  margin-bottom: 0;
  text-transform: capitalize;
}

.variants h3 {
  margin-bottom: 10px;
  color: var(--text-color);
}

.variants-list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

/* Container for the dropdown and label */
.custom-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* max-width: 400px;  */
  padding: 0.5rem;
  /* border: 1px solid #ccc; */
  border-radius: 4px;
  background-color: #fff;
}

/* Label styling */
.dropdown-label {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 600;
  text-transform: capitalize;
}

/* Wrapper for the dropdown */
.dropdown-wrapper {
  width: 50%;
  position: relative;
}

/* Selected item */
.dropdown-selected {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  background-color: #fff;
  text-align: center;
  text-transform: capitalize;
  color: var(--title-color);
}

.dropdown-selected span {
  pointer-events: none;
}

/* Options styling */
.dropdown-options {
  display: none;
  position: absolute;
  top: 100%; /* Align below the selected dropdown */
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
}

.dropdown-options li {
  position: relative;
  padding: 0.5rem;
  cursor: pointer;
  text-align: center;
  text-transform: capitalize;
  color: var(--title-color);
}

.dropdown-options li:hover {
  background-color: var(--additional-Color);
  color: white;
}

/* Show options when dropdown is active */
.custom-dropdown.active .dropdown-options {
  display: block;
  border-color: var(--additional-Color);
}

.slash::before {
  width: 40%;
  position: absolute;
  content: '';
  left: 30%;
  top: 45%;
  right: 0;
  border-top: 1px solid;
  border-color: var(--additional-Color);
  -webkit-transform: skewY(-10deg);
  -moz-transform: skewY(-10deg);
  transform: skewY(-10deg);
}

.disabled {
  pointer-events: none;
  opacity: 0.5;
}

#reset-button {
  padding: 0.5rem;
}

.reset-button {
  padding: 0.2rem;
  font-size: 1.125rem;
  color: var(--title-color);
  width: 100%;
  border: 1px solid var(--text-color);
  border-radius: 4px;
  background-color: #ffffff;
}

.control-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #ddd;
}

.price {
  display: flex;
  column-gap: 1rem;
  font-weight: 500;
  font-size: 1.125rem;
}

.full-price {
  color: var(--title-color);
  /* text-decoration-line: line-through; */
}

.discount-price {
  color: #e63946;
}

.controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.stock-quantity {
  color: #e63946;
  font-size: 0.875rem;
}

#quantity-input {
  width: 5rem;
  font-size: 1.2rem;
  color: var(--title-color);
  padding: 5px;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  text-align: center;
}

.add-to-cart {
  width: auto;
  background-color: var(--title-color);
  color: var(--white-text);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 10px 40px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: var(--additional-Color);
  color: var(--white-text);
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed !important;
}

.stock-detail {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.detail-container {
  display: flex;
  column-gap: 6px;
}

.detail-container h3 {
  width: 25%;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 400;
}

.detail-container p {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 400;
  text-wrap: wrap;
  word-wrap: break-word;
  hyphens: auto;
  overflow: hidden;
}

.detail-container .stock-quantity {
  color: var(--additional-Color);
}

.share {
  display: flex;
  column-gap: 1rem;
}

.share svg {
  width: 0.875rem;
  height: 0.875rem;
}

.files {
  display: flex;
  column-gap: 1rem;
}

.files svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* 00b46a -----------------------------------*/

.modali {
  border: 2px solid var(--title-color);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  color: var(--title-color);
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.whatsapp-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1rem;
  font-size: 0.875rem;
}

.whatsapp-container p {
  font-size: 1rem;
  font-weight: 500;
}

.whatsapp-container a {
  width: 100%;
  border: 2px solid transparent;
  padding: 6px 30px;
  color: var(--white-text);
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 40px;
  background: #25d466;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  text-decoration: none;
}

.whatsapp-container a svg, .detail-container #whatsapp-orders svg {
  width: 24px;
  height: 24px;
}

.detail-container #whatsapp-orders {
  margin: auto 0;
  cursor: pointer;
}



.whatsapp-container a:hover {
  border-color: #25d466;
  background-color: var(--white-text);
  color: #25d466;
}

.input_container {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.input_container input,
.input_container select {
  text-align: left;
  border: 1px solid var(--title-color);
  height: 3rem;
  width: 100%;
  border-radius: 4px;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  background-color: transparent;
  outline: none;
  color: var(--title-color);
}

.right-tr2 {
  direction: ltr !important;
  text-align: left;
}

.right-tr2::placeholder {
  text-align: left;
}

/* .label-span {
  display: flex;
  justify-content: space-between;
  align-items: center;

} */

.label-span {
  width: 100%;
  cursor: pointer;
  border-bottom: 2px solid var(--additional-Color);
  padding: 10px 0;
  font-size: 1rem;
  position: relative;
  color: var(--title-color);
  font-weight: 500;
  display: inline-block;
}

.radio-group {
  color: var(--title-color);
}

.order-details{
  background: #fcfcfc;
}

#judecheckout_count_number {
  display: inline-block;
  font-size: 0.875rem;
  padding: 2px 10px;
  background-color: var(--title-color);
  border-radius: 3px;
  color: var(--white-text);
  font-weight: bold;
}

#judecheckout_count_number:before {
  content: 'x ';
}

.summary-product-title {
  font-weight: bold !important;
  color: var(--title-color);
}

.summary-select-state {
  font-size: 1rem;
  opacity: .8;
}

.pickup-container, .home-delivery-container {
  font-weight: 600;
}

.order-details table {
  width: 100%;
}

.order-details td {
  border: none;
  border-bottom: 2px dotted var(--title-color);
  text-align: left;
  padding: 10px 5px 10px;
}

.order-details td:first-child {
  width: 65%;
}

.order-details td:last-child {
  width: 35%;
  text-align: center;
}

.order-details .full_price td {
  font-weight: bold;
}

.remark-container label {
  font-weight: 500;
}

.remark-input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--title-color);
  border-radius: 4px;
  font-size: 0.875rem;
  resize: none;
  margin-top: 10px;
}

.remark-input:focus {
  border: 2px solid var(--additional-Color);
  outline: none;
}


/* ! related product section */
#trending-container {
  width: 100%;
  height: auto;
  /* max-height: max-content; */
  padding: 2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  color: var(--title-color);
  font-weight: 400;
  background-color: var(--background-Popular);
  overflow: hidden;
}

#trending-container h3 {
  font-size: var(--title-PopularSize);
  font-weight: 400;
  color: var(--title-PopularColor);
  line-height: 1.2;
  text-align: center;
}

#trending-container h4 {
  font-size: var(--text-PopularSize);
  color: var(--text-PopularColor);
}

.lazy-slider .slick-track {
  display: flex !important;
}

#trending-container .lazy-slider {
  width: 90%;
  margin: 0 auto;
  overflow-x: hidden;
  visibility: hidden;
  opacity: 0;
}

#trending-slider .slider-item {
  overflow: hidden;
  border-radius: 0.75rem;
}

#trending-slider .slider-image {
  /* width: 100%; */
  height: 385px;
  position: relative;
  margin: 1rem;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.13), 0 1px 3px rgba(0, 0, 0, 0.1);
}

#trending-slider .slider-image .new {
  width: auto;
  height: auto;
  padding: 0 10px;
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #00b46a;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25em 0.5em;
  border-radius: 0.5rem;
  text-transform: uppercase;

  text-align: center;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, .2);
  z-index: 5;
}

#trending-slider .slider-image img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  display: block;
  transition: all 0.8s ease;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(1);
  cursor: pointer;
}

.image-hover-effect:hover .hover-image {
  opacity: 1;
  transform: scale(1.1);
}

.image-hover-effect:hover .main-image {
  opacity: 0;
}

.trending-icons {
  position: absolute;
  top: 1rem;
  right: -1rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  z-index: 30;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

#add-to-wishlist {
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

#add-to-wishlist label {
  width: 50%;
  height: 50%;
  cursor: pointer;
}

.trending-icons svg {
  width: 100%;
  height: 100%;
}

#add-to-wishlist input:checked + svg .heart-path {
  fill: var(--title-color);
  stroke: var(--title-color);
}

.image-hover-effect:hover .trending-icons {
  right: 1rem;
  opacity: 1;
}

.trending-button {
  width: max-content;
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  right: 1rem;
  z-index: 30;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 20px;
  margin: auto;
  border: none;
  border-radius: 5rem;
  background-color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease;
}

.trending-button a {
  color: var(--title-color);
  text-decoration: none;
  font-size: 0.875rem;
}

.trending-button:hover {
  background-color: var(--additional-Color);
}

.trending-button:hover a {
  color: #f5f5f5;
}

.image-hover-effect:hover .trending-button {
  bottom: 1rem;
  opacity: 1;
}

.trending-product-infos {
  position: relative;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: var(--title-color);
  margin: 1rem;
  padding-left: 1rem;
}

.trending-product-infos .product-name a {
  text-decoration: none;
  color: inherit;
  text-transform: capitalize;
  font-size: 1rem;
}

.trending-product-infos .product-price {
  font-size: 0.875rem;
}

.slick-arrow {
  width: 3.5rem;
  height: 3.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
  text-align: center;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  z-index: 10;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.slick-prev {
  left: -5rem;
}

.slick-next {
  right: -5rem;
}

#trending-slider:hover .slick-prev {
  left: 2.5rem;
}

#trending-slider:hover .slick-next {
  right: 2.5rem;
}

.slick-prev svg, .slick-next svg {
  width: 0.75rem;
  height: 0.75rem;
}

.slick-prev svg {
  margin-right: 3px;
}

.slick-next svg {
  margin-left: 3px;
}

.slick-prev:hover svg, .slick-next:hover svg {
  stroke: #ffffff;
  fill: #ffffff;
}

.slick-prev:hover, .slick-next:hover {
  background-color: var(--title-color);
  color: #ffffff;
}

.hidden {
  display: none;
}


#pickup-options .input-radio, #home-delivery-options .input-radio {
  display: flex;
  column-gap: 1rem;
  margin-left: 1rem;
  direction: ltr;
}

#pickup-options .input-radio input {
  /* visibility: visible; */
}

#pickup-options .input-radio label {
  display: flex;
  flex-direction: column;
}

#pickup-options .input-radio label div {
  font-size: 16px;
  text-transform: capitalize;
  /* color: #25d466;
  font-weight: 600; */
}


 #home-delivery-options .input-radio label {
  display: flex;
  flex-direction: column;
  color: var(--text-color);
}






/********** paiment *****/
.terms {
  max-height:60vh;
  overflow-y:auto;
  text-align: justify;
  font-family: var(--text-font);
  text-transform: lowercase;
  direction: ltr;
  padding-right: 10px;
}

.terms p {
  margin-bottom: 15px;
}

#tab-4 {
  display: none;
}

#tab-4 ~ label {
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding-bottom: 10px;
  width: 100%;
}

#tab-4:checked ~ label ~ .radio-group1 {
  height: 0px;
  overflow: hidden;
}

#tab-4:checked ~ label .upperdown .upper {
  display: block;
}

#tab-4:checked ~ label .upperdown .down {
  display: none;
}






/* Payment Methods Styles */
.payment-methods-container {
  background: #fcfcfc;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
}

/* Animation for selection */
@keyframes select-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
  }
}

.payment_logo {
  width: 18px;
  object-fit: contain;
  margin-left: 4px;
}

.payment-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  text-align: center;
  margin-left: 10px;
}

.payment-method-item{
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  padding: 0 5px;
}
#cib-conditions-container{
  display: none;
  margin: 8px 15px;
  padding: 12px 15px;
  border-radius: 3px;
  background-color: transparent;
  border: 1px solid rgb(232, 232, 232);
  transition: 0.3s;
  margin-bottom: 0px;
}


/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */


/*
   ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
   ┃ Description: Responsive design          ┃
   ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
*/



@media (min-width: 1921px) {
  .product-container {
    width: 65%;
  }

  #trending-slider {
    max-width: 1500px;
  }

  #trending-container .lazy-slider {
    width: 68%;
  }
}
/*======================================================================================================*/



@media (max-width: 1700px){
  #trending-container .lazy-slider {
    width: 100%;
  }

  #trending-slider .slider-image {
    height: 370px;
  }

  #trending-container {
    /* max-height: 585px; */
  }
}
/*======================================================================================================*/


@media (max-width: 1440px) {

  .product-container {
    max-width: 90%;
    padding: 1rem 3rem;
  }


  .slider {
    height: 671px;
  }

  .slider-main-image {
    width: 504px;
    height: 671px;
  }

  #trending-container .lazy-slider {
    width: 90%;
  }

  #trending-slider .slider-image {
    height: 345px;
  }

  #trending-container {
    /* max-height: 560px; */
  }
}
/*======================================================================================================*/



@media (max-width: 1366px) {
  .slider {
    height: 596px;
  }

  .slider-main-image {
    width: 448px;
    height: 596px;
  }

  .add-to-cart {
    padding: 10px 20px;
  }

  .product-container {
    margin: 4.5rem auto;
  }

  #trending-slider .slider-image {
    height: 320px;
  }

  #trending-container {
    /* max-height: 535px; */
  }
}
/*======================================================================================================*/



@media (max-width: 1280px) {
  .slider {
    height: 522px;
  }

  .slider-main-image {
    width: 392px;
    height: 522px;
  }


  .product-text p {
    font-size: 1rem;
  }

  .product-text h1 {
    font-size: 1.75rem;
  }

  .thumbnail-img-container {
    width: 108px;
    height: 144px;
  }

  #trending-slider .slider-image {
    height: 304px;
  }

  #trending-container {
    /* max-height: 519px; */
  }
}
/*======================================================================================================*/



@media (max-width: 1024px) {
  .product-container {
    max-width: 95%;
    padding: 1rem 1rem;
  }

  .slider {
    width: 55%;
    height: 447px;
  }

  .product-details {
    width: 45%;
  }

  .slider-main-image {
    width: 336px;
    height: 447px;
  }

  .thumbnail-img-container {
    width: 96px;
    height: 128px;
  }

  .dropdown-wrapper {
    width: 60%;
  }

  /* .modali, .summary-select-state, .add-to-cart {
    font-size: 0.875rem;
  } */

  #quantity-input {
    margin-right: 0.5rem;
  }

  #judecheckout_count_number {
    padding: 1px 8px;
  }

  #trending-container {
    /* max-height: 475px; */
    padding: 2rem 4rem;
  }

  #category-container, #collection-container h3, #collection-container h4 {
    padding: 0 4rem;
  }

  #trending-container .lazy-slider {
    width: 100%;
  }

  #trending-slider .slider-image {
    height: 260px;
  }
}
/*======================================================================================================*/



@media (max-width: 995px) {
  .product-container {
    max-width: 100%;
  }


  .slider-main-image:hover img {
    transform: none;
    cursor: auto;
  }

  #trending-container h3 {
    font-size: 2rem;
  }

  #trending-container {
    max-height: none;
  }

  #trending-slider {
    display: none;
  }

  .swiper {
    width: 80%;
    height: auto;
    display: block;
    padding: 1.5rem 0;
  }

  .swiper-slide {
    width: 228px;
    height: auto;
    /* height: 15rem; */
    background-position: center;
    background-size: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.13), 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(153, 153, 153, .3), rgba(0, 0, 0, 0));
  }

  .swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(153, 153, 153, .3), rgba(0, 0, 0, 0));
  }

  .swiper-slide .trending-product-infos {
    width: auto;
    text-align: center;
    padding-left: 0;
    margin: 0.875rem;
    align-items: center;
    font-weight: 400;
  }

  .swiper-slide > a:first-child {
    width: 100%;
    height: 305px;
    display: inline-block;
    border-radius: 1rem;
  }

  .swiper-slide a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 1rem;
  }


  .trending-product-infos .product-name a {
    font-weight: 500;
  }

  .trending-product-infos .product-price {
    font-size: 0.875rem;
  }
}
/*======================================================================================================*/



@media (max-width: 900px) {
  /* .product-container {
    padding: 1rem 2rem;
  } */

  .slider {
    /* width: 369px; */
    width: 100%;
    height: max-content;
    flex-direction: column-reverse;
    row-gap: 1rem;
    align-items: center;
  }

  .slider-detail {
    flex-direction: column;
    row-gap: 2rem;
  }

  .product-container {
    max-width: 90%;
    padding: 1rem 3rem;
  }

  .slider {
    width: 100%;
    align-items: center;
  }

  .product-details {
    width: 100%;
  }

  .thumbnail-img-container {
    width: 120px;
    height: 160px;
  }

  .detail-container h3 {
    width: 20%;
  }

  .thumbnails {
    width: 80%;
    flex-direction: row;
    gap: 0.5rem;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }

  .thumbnails div {
    flex-shrink: 0;
    display: inline-block;
  }

  .slider-main-image {
    width: 369px;
    height: 491px;
  }

  /* .detail-container h3 {
    width: 35%;
  } */


}
/*======================================================================================================*/



@media (max-width: 768px) {
  .swiper {
    width: 100%;
  }

  .swiper-slide {
    width: 200px;
  }

  .swiper-slide > a:first-child {
    height: 267px;
  }

  /* .slider-detail {
    flex-direction: column;
    row-gap: 2rem;
  }

  .product-container {
    max-width: 90%;
    padding: 1rem 3rem;
  }

  .slider {
    width: 100%;
    align-items: center;
  }

  .product-details {
    width: 100%;
  }

  .thumbnail-img-container {
    width: 120px;
    height: 160px;
  }

  .detail-container h3 {
    width: 20%;
  } */
}
/*======================================================================================================*/



@media (max-width: 720px) {
  .detail-container h3 {
    width: 25%;
  }
  .thumbnails {
    width: 90%;
  }

  .product-files {
    flex-direction: column-reverse;
    align-items: flex-start;
    row-gap: 1rem;
  }

  #trending-container h4 {
    font-size: 1rem;
  }

  #trending-container {
    padding: 2rem 2rem;
  }
}
/*======================================================================================================*/



@media (max-width: 650px) {
  .thumbnails {
    width: 100%;
  }

}
/*======================================================================================================*/



@media (max-width: 500px) {
  .product-container {
    padding: 1rem 0rem;
  }

}
/*======================================================================================================*/



@media (max-width: 450px) {
  .slider-main-image {
    width: 332px;
    height: 442px;
  }

  .detail-container h3 {
    width: 35%;
  }

  .modali {
    padding: 1rem;
  }

  #trending-container {
    padding: 2rem 2rem;
  }
}
/*======================================================================================================*/



@media (max-width: 385px) {
  .slider-main-image {
    width: 298px;
    height: 397px;
  }

  #trending-container h3 {
    font-size: 1.875rem;
  }

  #trending-container {
    padding: 2rem 1.5rem;
  }
}
/*======================================================================================================*/



@media (max-width: 360px) {
  #trending-container h3 {
    font-size: 1.5rem;
  }
}
/*======================================================================================================*/



@media (max-width: 340px) {
  .slider-main-image {
    width: 268px;
    height: 357px;
  }

  .detail-container h3 {
    width: 40%;
  }

  #trending-container h4 {
    font-size: 0.875rem;
  }

  #trending-container h3 {
    font-size: 1.25rem;
  }
}
/*======================================================================================================*/




