@font-face {
  font-family: "Helvetica-Now-Text-Regular";
  src: url("/fonts/HelveticaNowText-Regular.woff2") format("woff2"),
    url("/fonts/HelveticaNowText-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica-Now-Text-Bold";
  src: url("/fonts/HelveticaNowText-Bold.woff2") format("woff2"),
    url("/fonts/HelveticaNowText-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.main_content {
  margin: 0rem 1rem;
}

#specialFeaturesSection h5 {
  color: black !important;
}
.option-with-image[value="1"] {
  background-image: url("./img/currency_symbol/lk.png");
}

.sub_category_style {
  border: 1px solid #fd6b28;
  color: #fd6b28;
}

.sub_category_style:hover {
  background: #fd6b28;
  color: white;
}

.card_container {
  display: flex;
  justify-content: center;
  column-gap: 2.5rem;
}
.background-container {
  position: relative;
  height: 850px;
  width: 100%;
  padding: 5px;
}
.background-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("img/subscribe_logo.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  /* filter: grayscale(100%); */
  z-index: 1;
}
.content {
  position: absolute;
  bottom: 253px;
  width: 76%;
  left: 50px;
  padding: 3px 8px;
  z-index: 2;
  color: white;
  font-family: "Noto Sans", sans-serif;
  text-align: center;
  background: white;
  padding: 65px 6px;
}
.content h5,
.content h3,
.content p,
.content button {
  z-index: 2;
}
.flex_content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.discountedPrice {
  color: gray;
  text-decoration: line-through;
}

#curatedForYou {
  overflow-x: hidden;
  /*display: flex;*/
}

#curatedForYouContent {
  /* display: none; */
}

.ph-item {
  background-color: white;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  direction: ltr;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  overflow: hidden;
  padding: 30px 15px 15px;
  position: relative;
  width: 50%;
  height: 400px;
}
@media (min-width: 992px) {
  #snagSection {
    /*padding-right: 95px !important;*/
    margin-top: 53px;
  }
}
.recaptcha-responsive {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .recaptcha-responsive {
    transform: scale(0.85);
    transform-origin: center;
  }
}

@media (max-width: 576px) {
  .recaptcha-responsive {
    transform: scale(0.75);
  }
}

#curatedForYou:active {
  cursor: grabbing;
}

.wishlist-icon-added {
  color: red !important;
}

.wishlist-icon:hover {
  color: red;
}

.disabled_size {
  background: lightgray !important;
  color: white !important;
  cursor: not-allowed !important;
}

.custom-radio-box {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.custom-radio-box input[type="radio"] {
  visibility: hidden; /* Hide the default radio button */
}

.custom-radio-box label {
  border: 1px solid #dcdcdc;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.3s, border-color 0.3s;
  width: 45px;
}

.custom-radio-box input[type="radio"]:checked + label {
  background-color: #069342;
  color: #fff;
  border-color: #ffffff;
}

.custom-radio-box input[type="radio"]:checked + label::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
}

.COR_FORM_MAIN {
  height: 100%;
  /*width: 100%;*/
  background-image: url("img/orderRequest_logo.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px;
  /*display: flex;*/
  /*justify-content: center !important;*/
  /*align-items: center;*/
  border: 1px solid #b4d6de;
  /* filter: grayscale(100%); */
}

.COR_FORM_MAIN_DIV {
  background: rgba(255, 255, 255, 0.8);
}

.COR_FORM {
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  /* opacity: 0.7; */
  padding: 1.5rem;
  height: 100%;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.COR_FORM input {
  background: transparent;
  color: black;
  border: 1px solid #f26c30 !important;
}

.COR_FORM input::placeholder {
  color: black;
}

.custom-toast {
  position: fixed;
  top: 20px; /* Adjust the top distance as needed */
  left: 20px; /* Adjust the left distance as needed */
  z-index: 9999; /* Ensure the toast is on top of other elements */
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
  }

  .snag_text {
    font-size: 1.5rem;
  }

  .snag_text_min {
    font-size: 0.8rem;
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .main_content {
    margin: 0rem 4rem;
  }
}
.product-card {
  border: none;
  /*box-shadow: 0 4px 6px rgba(0,0,0,0.1);*/
  transition: transform 0.3s ease-in-out;
}
.product-card:hover {
  /*transform: scale(1.05);*/
}
.product-img img {
  width: 100%;
  transition: opacity 0.1s ease-in-out;
}
.product-card:hover .product-img img {
  opacity: 0.8;
}
.quick-add {
  background-color: #ff6600; /* Bright and eye-catching */
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.product-img {
  position: relative;
  overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-images {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.slider-images img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    border: none;
    padding: 12px; /* Larger clickable area */
    border-radius: 50%; /* Circular buttons */
    cursor: pointer;
    z-index: 10;
    width: 40px; /* Fixed size for consistency */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px; /* Larger arrow */
    transition: background 0.3s ease, transform 0.2s ease; /* Smooth transitions */
    font-size: 25px;
    font-weight: bolder;
}

/* Positioning */
.slider-prev {
    left: 10px !important; /* Spacing from edge */
}

.slider-next {
    right: 10px !important; /* Spacing from edge */
}

/* Hover State */
.slider-prev:hover, .slider-next:hover {
    background: rgba(0, 0, 0, 0.9); /* Darken on hover */
    transform: translateY(-50%) scale(1.1); /* Slight scale-up for feedback */
}

/* Active State */
.slider-prev:active, .slider-next:active {
    transform: translateY(-50%) scale(0.95); /* Subtle press effect */
}

/* Focus State for Accessibility */
.slider-prev:focus, .slider-next:focus {
    outline: 2px solid #3b82f6; /* Blue outline for keyboard navigation */
    outline-offset: 2px;
}

/* Disabled State (if applicable) */
.slider-prev:disabled, .slider-next:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Optional: Hide on small screens if slider adapts */
@media (max-width: 640px) {
    .slider-prev, .slider-next {
        width: 32px;
        height: 32px;
        padding: 8px;
        font-size: 16px;
    }
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.product-card:hover .quick-add {
  opacity: 1;
  visibility: visible;
  bottom: 15px;
}

.quick-add:hover {
  background-color: #cc5200; /* Darker shade for hover effect */
}
.offer-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: red;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
}
.wishlist-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: white;
}
.wishlist-icon:hover {
  color: red;
}
.card_image_btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: black;
  color: white;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .card_image_btn {
  opacity: 1;
}

.header-text {
  font-size: 1.5rem;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  color: #ff6600; /* Highlighted in orange */
  font-family: "Helvetica-Now-Text-Bold", Helvetica, Arial, sans-serif;
}

.original-price {
  font-size: 16px;
  color: #777;
  text-decoration: line-through;
  margin-left: 8px;
}

.discounted-price {
  font-size: 20px;
  font-weight: bold;
  color: #d32f2f; /* Red for better contrast */
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  font-family: "Helvetica-Now-Text-Regular", Helvetica, Arial, sans-serif;
}

/* Main Section */
#snagSection {
  background: #f9f9f9;
  border-radius: 10px;
  /*padding: 3rem;*/
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Category Card */
.category-card {
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.category-card:hover {
  transform: scale(1.05);
}

.category-card .card {
  border: none;
  border-radius: 12px;
  /*padding: 1.5rem;*/
  background: white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  /*height: 220px;*/
  /*width: 150px;*/
}

.category-card .card:hover {
  background: #ffb02e;
  color: white;
  transform: translateY(-5px);
}

/* Category Icon */
.category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
}

.category-icon img {
  width: 100%;
}

/* Category Title */
.category-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .category-title {
    font-size: 16px;
  }
}

.snag_text {
  font-size: 3rem;
}

.snag_text_min {
  font-size: 1.5rem;
}

.hidden {
  display: none;
}

.size-container {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
}

.size-container .custom-radio-box {
  display: inline-block;
  margin: 5px;
}

.selectable {
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid #000;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.selectable:hover {
  background: #eee;
}

.disabled_size {
  opacity: 0.5;
  pointer-events: none;
}

.add-to-cart-btn {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
  transition: background 0.2s;
}

.add-to-cart-btn:hover {
  background-color: #cc5200;
}

.loading-spinner {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  margin-right: 5px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 70px;
  width: 50px;
  height: 50px;
  background: #f26c30; /* Vibrant color */
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  cursor: pointer;
  z-index: 999;
}

/* Show when scrolling */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}

/* Hover Effect */
.back-to-top:hover {
  background: #e65c1e;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Bouncing Animation */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.back-to-top.bounce {
  animation: bounce 1s infinite;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.skeleton-card {
  background: #f3f3f3;
  padding: 10px;
  border-radius: 8px;
}

.skeleton-image {
  width: 100%;
  height: 150px;
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 6px;
}

.skeleton-text {
  height: 16px;
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
  margin: 8px 0;
}

.skeleton-title {
  width: 80%;
  height: 20px;
}

.skeleton-price {
  width: 40%;
}

@keyframes loading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Grid layout for collection */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  justify-content: center;
  padding: 0 1rem;
}

/* Responsive grid */
@media (min-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card container */
.collection-card {
  display: flex;
  justify-content: center;
}

/* Card image wrapper */
.card-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

/* Hover effect */
.card:hover .card-img-top {
  transform: scale(1.1);
}

/* Overlay effect */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.card:hover .card-overlay {
  opacity: 1;
}

/* View button */
.card-btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.card-btn:hover {
  background-color: #ff9800;
  color: #fff;
}

/* Snag the Best Buys section */
.category-card-custom {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.category-img-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  text-align: center;
}

.category-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-card:hover .category-img {
  transform: scale(1.1);
}

.filter-sidebar1 {
            /*background-color: #ffffff;*/
            padding: 20px;
            border-radius: 8px;
            /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);*/
            transition: transform 0.2s ease;
            overflow-y: scroll;
            max-height: 800px;
        }

        .filter-sidebar1:hover {
            transform: translateY(-5px);
        }

        .filter-section {
            margin-bottom: 25px;
        }

        .filter-section h5 {
            font-weight: 600;
            color: #333 !important;
            margin-bottom: 15px;
            font-size: 18px;
        }

        .filter-item {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            margin-bottom: 8px;
            border-radius: 4px;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .filter-item:hover {
            background-color: #f8f9fa;
        }

        .filter-item input[type="checkbox"] {
            margin-right: 10px;
            cursor: pointer;
        }

        .filter-item label {
            font-size: 14px;
            color: #555;
            cursor: pointer;
        }

        .filter-item.active {
            background-color: #e9ecef;
            font-weight: 500;
        }

        /* Applied Filters Tags */
        .applied-filters {
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            min-height: 40px; /* Ensure visibility even when empty */
        }

        .filter-tag {
            display: inline-flex;
            align-items: center;
            background-color: #e9ecef;
            color: #495057;
            padding: 5px 10px;
            border-radius: 16px;
            font-size: 13px;
            transition: all 0.2s ease;
        }

        .filter-tag:hover {
            background-color: #dee2e6;
        }

        .filter-tag .remove-tag {
            margin-left: 8px;
            cursor: pointer;
            font-size: 14px;
            color: #dc3545;
        }

        .filter-tag .remove-tag:hover {
            color: #c82333;
        }

        /* Empty State */
        .empty-filters {
            color: #6c757d;
            font-size: 13px;
            padding: 5px 10px;
        }

        /* Clear All Button */
        .clear-all {
            background: none;
            border: none;
            color: #dc3545;
            font-size: 14px;
            cursor: pointer;
            margin-left: 10px;
        }

        .clear-all:hover {
            color: #c82333;
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .filter-sidebar1 {
                padding: 15px;
                margin-bottom: 20px;
                display: none;
            }

            .filter-item {
                padding: 6px 10px;
            }

            .filter-item label {
                font-size: 13px;
            }

            .filter-tag {
                font-size: 12px;
                padding: 4px 8px;
            }

            .empty-filters {
                font-size: 12px;
            }
        }
