/* #my-custom-shop-main{
  width: 100vw;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.my-custom-shop {
  padding: 10px 10px;
  max-width: 1600px;
  margin: 0 auto;
}

.deal-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deal-header {
  font-family: "Georgia", serif;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.deal-header img {
  height: 56px;
  width: 56px;
  object-fit: contain;
}

.my-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  overflow: hidden;
  justify-content: center;
}

.my-product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.my-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.my-product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-image-container {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 25px;
}

.product-title {
  font-family: "Georgia", serif;
  font-size: 28px;
  font-weight: normal;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.rating-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.rating-score {
  font-size: 16px;
  color: #888;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 18px;
  height: 18px;
  position: relative;
}

.star::before {
  content: "★";
  font-size: 18px;
  color: #ddd;
  position: absolute;
}

.star.filled::before {
  color: #ffd700;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: "Georgia", serif;
  font-size: 32px;
  font-weight: normal;
  color: #333;
}

.buy-button {
  font-family: "Georgia", serif;
  background: white;
  border: 2px solid #ddd;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.buy-button:hover {
  border-color: #333;
  color: #333;
  text-decoration: none;
}

.buy-button::after {
  content: "→";
  font-size: 16px;
}

.no-products {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-top: 60px;
}


#shop_banner * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#shop_banner {
  width: 100%;
  height: auto;
}

#shop_banner .shop_banner_wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#shop_banner .shop_banner_wrapper .bannerRowOne {
  width: 100%;
  height: auto;
  display: flex;
  gap: 10px;
}


#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_filter_wrapper {
  width: 20%;
  height: auto;
  height: auto;
  border: 2px solid #a5a5a5;
  border-radius: 12px;
}

#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_filter_wrapper .all_category {
  width: 100%;
  height: auto;
  background-color: #d4af37;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_filter_wrapper .catagory_list ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 5px;
}

#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_filter_wrapper .catagory_list .category_list_item {
  width: 100%;
  padding: 15px 10px;
  margin-top: 10px;
  border-bottom: 1px solid #d4af37;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.2s all linear;
}

#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_filter_wrapper .catagory_list .category_list_item:hover {
  color: #d4af37;
  font-weight: 500;
  transition: 0.2s all linear;
}

#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_filter_wrapper .catagory_list .category_list_item svg {
  fill: gray;
}

#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_filter_wrapper .catagory_list .category_list_item:hover svg {
  transition: 0.4s all linear;
  fill: #d4af37;
}


#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_content_wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_content_wrapper .search_row {
  width: 70%;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #d4af37;
  padding: 5px 10px;
  border-radius: 8px;
}

#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_content_wrapper .search_row input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
}

#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_content_wrapper .content_row {
  width: 100%;
  height: 400px;
  display: flex;
  gap: 10px;
}

#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_content_wrapper .content_row .slider_wrapper {
  width: 70%;
  max-width: 960px;
  height: 100%;
  display: flex;
  border-radius: 12px;
}


#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_content_wrapper .content_row .images_wraper {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


#shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_content_wrapper .content_row .images_wraper .sampleImageBox {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}

#shop_banner .shop_banner_wrapper .bannerRowTwo {
  width: 100%;
  height: auto;
}

#shop_banner .shop_banner_wrapper .bannerRowTwo {
  width: 100%;
  height: auto;
  background-color: transparent;
  padding: 0 0;
}

#shop_banner .shop_banner_wrapper .bannerRowTwo ul.facility_list {
  width: 100%;
  height: auto;
  display: flex;
  gap: 10px;
  margin: 0;
  margin-bottom: 60px;
}

#shop_banner .shop_banner_wrapper .bannerRowTwo ul.facility_list li.facility_list_item {
  width: 20%;
  max-width: 340px;
  padding: 14px;
  height: auto;
  background-color: transparent;
  border: 1px solid #d4af37;
  border-radius: 5px;
  display: flex;
  gap: 10px;
}

#shop_banner .shop_banner_wrapper .bannerRowTwo ul.facility_list li.facility_list_item .facility_list_item_text p {
  font-family: Outfit;
  font-weight: 300;
  max-width: 180px;
  line-height: 1.1;
  margin-top: 8px;
}



@media screen and (max-width: 576px) {
  .hidden {
    display: none;
  }

  #my-custom-shop-main {}

  #my-custom-shop-main .custom-shop-wrapper {}

  #my-custom-shop-main .custom-shop-wrapper .my-custom-shop {}

  #my-custom-shop-main .custom-shop-wrapper .my-custom-shop .shop-banner {}

  #my-custom-shop-main .custom-shop-wrapper .my-custom-shop .shop-banner #shop_banner {
    width: 100%;
    overflow-x: scroll;
  }

  #my-custom-shop-main .custom-shop-wrapper .my-custom-shop .shop-banner #shop_banner .shop_banner_wrapper {}

  #my-custom-shop-main .custom-shop-wrapper .my-custom-shop .shop-banner #shop_banner .shop_banner_wrapper .bannerRowOne {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  #my-custom-shop-main .custom-shop-wrapper .my-custom-shop .shop-banner #shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_filter_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  #shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_content_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_content_wrapper .search_row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #d4af37;
    padding: 5px 10px;
    border-radius: 8px;
  }

  #shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_content_wrapper .content_row {
    width: 100%;
    height: 400px;
    display: flex;
    gap: 10px;
  }

  #shop_banner .shop_banner_wrapper .bannerRowOne .shop_banner_content_wrapper .content_row .slider_wrapper {
    width: 100%;
    max-width: 960px;
    height: 100%;
    display: flex;
    border-radius: 12px;
  }

  #shop_banner .shop_banner_wrapper .bannerRowTwo ul.facility_list {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    margin-bottom: 60px;
  }

  #shop_banner .shop_banner_wrapper .bannerRowTwo ul.facility_list li.facility_list_item {
    width: 100%;
    max-width: 340px;
    padding: 14px;
    height: auto;
    background-color: transparent;
    border: 1px solid #d4af37;
    border-radius: 5px;
    display: flex;
    gap: 10px;
  }

}
@media screen and (max-width: 576px) {

} */
