.container {
  max-width: 1440px;
}
.site-breadcrumb-bg {
  background: url(../img/breadcrumb/01.jpg);
}
/* SINGLE CATEGORY PAGE */
.page-title {
  color: pink;
  font-size: 20px;
  font-weight: 600;
}
.category-small-desc {
  font-size: 14px;
  color: #333;
}
.category-box-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.load-more-btn {
  padding: 10px 30px !important;
  background-color: #660147;
  border: none;
  border-radius: 5px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

.load-more-btn:hover {
  background-color: #bf3a89;
  color: #fff;
  font-weight: 700;
}
.category-description-section {
  background-color: #f6f6f6;
}
.category-name- {
  color: #000;
}
.category-details {
  font-size: 14px !important;
  text-align: justify;
  color: #7777;
}
.category-overlay {
  position: relative;
  overflow: hidden; /* Ensure overlay doesn't overflow */
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.category-box-section .category-box-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.6); */
  background: #a31f6c;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.4s ease-in-out;
}

.overlay-text {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.category-overlay:hover .category-box-overlay {
  bottom: 0; /* Move overlay up to cover image */
}
.cr-category-name {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size:.875rem;
  color: var(--theme-color);
  margin-top: 10px;
}
.cr-category-name:hover {
  color: #000;
}
.category-box-section-box {
  display: inline-block;
  width: 260px;
  height: 260px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.category-box-section-box img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 5px;
}

/* GIFT FINDER */
.gfd-wrap {
  background-image: url("../img/icon/magnifyGlass.svg");
  background-repeat: no-repeat;
  background-position: 49px 39px;
  background-size: 100px;
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
  border-radius: 1.5rem !important;
}
.tab-wrapper ul {
  margin: 0;

  position: relative;
}

.tab-wrapper ul::after {
  content: "";
  width: 50%;
  position: absolute;
  bottom: -1px;

  height: 2px;
  border-radius: 20px;
  transition: left 0.3s ease-in-out;
}

.tab-wrapper ul.active-occasions::after {
  left: 0;
  background: var(--theme-color);
}

.tab-wrapper ul.active-giftTypes::after {
  left: 50%;
  background: var(--theme-color);
}
.gfd-title {
  font-size: 3rem;
  color: var(--theme-color);
  font-weight: 600;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.gift-selctor-box {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1) !important;
  position: relative;
  padding: 1rem;
  background: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section-tagline {
  font-size: 1.25rem;
  color: rgb(25 26 11);
  font-weight: 400;
  margin-bottom: 1rem;
}
.tab-title {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: rgb(117 117 117);
  position: relative;
}
.gift-img,
.occasion-img {
  border-radius: 8px;
}
.overflow-x-scroll {
  overflow-x: scroll;
  scrollbar-width: none;
}
.image-part {
  background: url(../img/finder.png);
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
.image-part-wrap {
  width: 33%;
  margin-right: 8% !important;
  margin-left: auto;
}
.finder-content {
  background-color: #fff1f6;
  border-radius: 1.5rem;
}
.gift-finder-desktop {
  padding: 4rem 1.6rem;
}
.cursor-pointer {
  cursor: pointer;
}

.slide-down {
  animation: slideDown 0.3s ease-out forwards;
}
@keyframes slideDown {
  0% {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }
  100% {
    max-height: 500px;
    opacity: 1;
    overflow: visible;
  }
}
.py-16 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.gap-10 {
  gap: 0.625rem !important;
}
.hidden {
  display: none !important;
}
.block {
  display: flex !important;
}
.ocassion-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  color: rgb(117 117 117);
}
.ocassion-item.selected {
  color: var(--theme-color);
  border-color: var(--theme-color);
  background: #fff1f6;
}
.has-after::after {
  content: " ";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d14826;
  position: absolute;
  top: 35%;
  right: -10px;
}

/* CATEGORY ROW */

.categories-row {
  margin-top: 35px;
}
.row-title {
  font-size: 24px;
  color: var(--primary-color);
  padding-top: 10px;
  margin-bottom: 30px;
  font-weight: 600;
}
.internal-cr-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  height: auto;
  padding-left: 4px;
  position: unset;
  left: -4px;
  padding-bottom: 8px;
  margin-bottom: -8px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.internal-cr-row::-webkit-scrollbar {
  display: none !important;
}
.internal-cr-row .d-flex {
  gap: 2rem;
}
.cr-image-wrap-new {
  width: calc(265px * 1);
  /* height: calc(265px * 1); */
  overflow: hidden;
  border-radius: 10px;
}
.cr-box-new {
  width: 265px;
  /* min-height: 265px; */
}
.cr-box-new .cr-image-new {
  width: 100% !important;
  border-radius: 10px;
  transition: all 0.25s ease-in-out;
}
.cr-box-new:hover .cr-image-new {
  transform: scale(1.03);
}
@media (max-width: 767px) {
  .cr-box-new {
    width: 175px;
    /* height: 175px; */
  }
  .cr-image-wrap-new {
    width: 175px;
    /* height: 175px; */
  }
  .cr-category-name {
    font-size: 0.8rem;
  }
}
.cr-box {
  width: 155px;
  /* min-height: 150px; */
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
}
.cr-image-wrap {
  width: calc(150px * 1);
  /* height: calc(150px * 1); */
  /* box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3); */
}

.cr-box .cr-image {
  width: 100%;
  /* height: 150px; */
  object-fit: fill;
  border-radius: 10px;
  transition: 0.3s;
}
.cr-box:hover .cr-category-name {
  color: var(--primary-color);
}
.cr-box:hover .cr-image {
  transform: scale(1.02);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

/* PRODUCT ITEM CARD */

.product-item {
  border: 1px solid #cbc5c5;
  border-radius: 10px;
  padding: 10px;
}
.product-img {
  padding: 10px !important;
  background: none;
}

