.wraparts-style-hero {
  width: 100%;
  margin-bottom: 0;
}

.home-slider-wrap {
  width: 100%;
  aspect-ratio: 1700/464;
}

.home-slider {
  border-radius: 0;
  height: 100%;
  width: 100%;
  position: relative;
}

.home-slider .swiper-wrapper {
  height: 100%;
}

.home-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.home-slider .swiper-slide .slider-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.home-slider .swiper-pagination {
  bottom: 16px;
}

.home-slider .swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--color-white);
  opacity: 0.6;
  transition: var(--transition-150);
}

.home-slider .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 22px;
  border-radius: 5px;
  background: var(--color-primary);
}

.home-slider .swiper-button-prev,
.home-slider .swiper-button-next {
  width: 42px;
  height: 42px;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: var(--transition-150);
}

.home-slider .swiper-button-prev::after,
.home-slider .swiper-button-next::after {
  font-size: 14px;
  font-weight: var(--font-medium);
  color: var(--color-black);
}

.home-slider .swiper-button-prev:hover,
.home-slider .swiper-button-next:hover {
  background: var(--color-primary);
}

.home-slider .swiper-button-prev:hover::after,
.home-slider .swiper-button-next:hover::after {
  color: var(--color-white);
}

.ltr .home-slider .swiper-button-prev {
  left: 20px;
}

.rtl .home-slider .swiper-button-prev {
  right: 20px;
}

.ltr .home-slider .swiper-button-next {
  right: 20px;
}

.rtl .home-slider .swiper-button-next {
  left: 20px;
}

.home-slider:hover .swiper-button-prev,
.home-slider:hover .swiper-button-next {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .home-slider .swiper-button-prev,
  .home-slider .swiper-button-next {
    display: none;
  }
}

.home-section-wrap {
  margin-top: 0;
}

.prem-hero {
  position: relative;
  background: #f9f4ff;
}

.prem-hero__slider-wrap {
  position: relative;
}

.prem-hero__slider.home-slider {
  border-radius: 0;
}

.prem-hero__slide {
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ltr .prem-hero__slide {
  background: linear-gradient(135deg, #f8f2ff 0%, #faf5ff 50%, #fff 100%);
}

.rtl .prem-hero__slide {
  background: linear-gradient(-135deg, #f8f2ff 0%, #faf5ff 50%, #fff 100%);
}

.prem-hero__slide--mobile {
  min-height: 420px;
  height: 62vh;
  max-height: 580px;
  display: block;
}

@media (max-width: 767px) {
  .prem-hero__slide--mobile {
    min-height: 340px;
    height: 55vw;
    max-height: 400px;
  }
}

@media (max-width: 480px) {
  .prem-hero__slide--mobile {
    height: auto;
    min-height: 300px;
    max-height: none;
  }
}

.prem-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.prem-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 40px 60px;
}

.prem-hero__content--left {
  justify-content: flex-start;
}

.prem-hero__content--left .prem-hero__caption {
  align-items: flex-start;
}

.ltr .prem-hero__content--left .prem-hero__caption {
  text-align: left;
}

.rtl .prem-hero__content--left .prem-hero__caption {
  text-align: right;
}

.prem-hero__content--right {
  justify-content: flex-end;
}

.prem-hero__content--right .prem-hero__caption {
  align-items: flex-end;
}

.ltr .prem-hero__content--right .prem-hero__caption {
  text-align: right;
}

.rtl .prem-hero__content--right .prem-hero__caption {
  text-align: left;
}

.prem-hero__caption {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  gap: 0;
}

.prem-hero__subtitle-top {
  font-size: 12px;
  font-weight: 600;
  color: #b8860b;
  letter-spacing: 1px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.prem-hero__title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  color: #1a0a2e;
  margin: 0 0 6px;
}

@media (max-width: 1199px) {
  .prem-hero__title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .prem-hero__title {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .prem-hero__title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .prem-hero__title {
    font-size: 24px;
  }
}

.prem-hero__cursive {
  display: block;
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-size: 48px;
  font-weight: 400;
  color: #c8a400;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .prem-hero__cursive {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .prem-hero__cursive {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .prem-hero__cursive {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .prem-hero__cursive {
    font-size: 22px;
  }
}

.prem-hero__heart {
  font-style: normal;
  color: var(--color-primary);
}

.prem-hero__desc {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.65;
  margin: 18px 0 24px;
}

@media (max-width: 767px) {
  .prem-hero__desc {
    font-size: 13px;
    margin: 12px 0 18px;
  }
}

.prem-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.prem-hero__btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.prem-hero__btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(83, 74, 183, 0.3);
}

.prem-hero__btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  color: var(--color-white);
}

.prem-hero__btn--outline {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #c8c8c8;
}

.prem-hero__btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-alpha-10);
}

@media (max-width: 480px) {
  .prem-hero__btn {
    padding: 10px 18px;
    font-size: 12px;
  }
}

.prem-hero .swiper-pagination {
  bottom: 100px;
}

.prem-hero .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(83, 74, 183, 0.3);
  opacity: 1;
}

.prem-hero .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.prem-hero .swiper-button-prev,
.prem-hero .swiper-button-next {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--color-primary);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  top: 45%;
}

.prem-hero .swiper-button-prev::after,
.prem-hero .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

.prem-hero .swiper-button-prev:hover,
.prem-hero .swiper-button-next:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.prem-hero__trust {
  background: var(--color-white);
  border-top: 1px solid var(--border-color);
  padding: 0;
}

.prem-hero__trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 20px 0;
}

.prem-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding: 0 20px;
  position: relative;
}

.prem-hero__trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background: var(--border-color);
}

.ltr .prem-hero__trust-item:not(:last-child)::after {
  right: 0;
}

.rtl .prem-hero__trust-item:not(:last-child)::after {
  left: 0;
}

.prem-hero__trust-item div {
  display: flex;
  flex-direction: column;
}

.prem-hero__trust-item strong {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.prem-hero__trust-item span {
  font-size: 11.5px;
  color: #888;
  font-weight: 400;
  margin-top: 1px;
}

.prem-hero__trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.prem-hero__trust-icon i {
  font-size: 28px;
}

.prem-hero .container,
.prem-hero .container-fluid {
  padding: 0;
}

@media (max-width: 1199px) {
  .prem-hero__content {
    padding: 40px 40px;
  }
}

@media (max-width: 991px) {
  .prem-hero__content {
    padding: 30px 24px;
  }

  .prem-hero__caption {
    max-width: 100%;
  }

  .prem-hero__trust-inner {
    flex-wrap: wrap;
    gap: 0;
    padding: 14px 0;
  }

  .prem-hero__trust-item {
    flex: 0 0 50%;
    padding: 10px 16px;
  }

  .prem-hero__trust-item:not(:last-child)::after {
    display: none;
  }

  .prem-hero .swiper-pagination {
    bottom: 60px;
  }
}

@media (max-width: 576px) {
  .prem-hero__content {
    padding: 24px 16px;
    align-items: flex-start;
    padding-top: 40px;
  }

  .prem-hero__slider-wrap {
    margin-bottom: 0 !important;
  }

  .prem-hero__trust {
    padding: 0 !important;
    margin: 0 !important;
    border-top: none;
  }

  .prem-hero__trust-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 0 !important;
    padding: 0 !important;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .prem-hero__trust-inner::-webkit-scrollbar {
    display: none;
  }

  .prem-hero__trust-item {
    flex: 0 0 75%;
    scroll-snap-align: start;
    padding: 12px 16px;
    background: #faf5ff;
    border-radius: 0 !important;
    border: 1px solid #ede0ff;
    border-top: none;
    border-bottom: none;
    margin-top: 2px !important;
    margin-bottom: 0 !important;
  }

  .prem-hero__trust-icon {
    width: 32px;
    height: 32px;
  }

  .prem-hero__trust-icon i {
    font-size: 24px;
  }

  .prem-hero__trust-item strong {
    font-size: 13px;
  }

  .prem-hero__trust-item span {
    font-size: 11.5px;
  }

  .prem-hero .swiper-pagination {
    bottom: 15px;
    padding-top: 2px;
  }
}

.features {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-default);
}

.features .swiper-button-next,
.features .swiper-button-prev {
  height: 25px;
  width: 25px;
  background: var(--color-primary-alpha-30);
  border-radius: 50%;
  top: 50%;
  bottom: 0;
  transform: translateY(-50%);
  margin: 0;
  transition: var(--transition-150);
}

.features .swiper-button-next:after,
.features .swiper-button-prev:after {
  font-size: 8px;
  font-weight: 500;
  margin-top: -1px;
  color: var(--color-white);
}

.features .swiper-button-next:hover,
.features .swiper-button-prev:hover {
  background: var(--color-primary);
}

.features .swiper-button-next.swiper-button-disabled,
.features .swiper-button-prev.swiper-button-disabled {
  background: var(--color-primary-alpha-30);
}

.ltr .features .swiper-button-next {
  right: -35px;
}

.rtl .features .swiper-button-next {
  left: -35px;
}

.ltr .features .swiper-button-next::after {
  padding-left: 2px;
}

.rtl .features .swiper-button-next::after {
  padding-right: 2px;
}

.ltr .features .swiper-button-prev {
  left: -35px;
}

.rtl .features .swiper-button-prev {
  right: -35px;
}

.ltr .features .swiper-button-prev::after {
  padding-right: 2px;
}

.rtl .features .swiper-button-prev::after {
  padding-left: 2px;
}

.features:hover .swiper-button-prev {
  display: flex;
}

.ltr .features:hover .swiper-button-prev {
  left: 15px;
}

.rtl .features:hover .swiper-button-prev {
  right: 15px;
}

.features:hover .swiper-button-next {
  display: flex;
}

.ltr .features:hover .swiper-button-next {
  right: 15px;
}

.rtl .features:hover .swiper-button-next {
  left: 15px;
}

.features:not(.swiper-initialized) .feature-list .single-feature {
  width: 20%;
}

@media screen and (max-width: 1400px) {
  .features:not(.swiper-initialized) .feature-list .single-feature {
    width: 25%;
  }
}

@media screen and (max-width: 1180px) {
  .features:not(.swiper-initialized) .feature-list .single-feature {
    width: 33.33%;
  }
}

@media screen and (max-width: 780px) {
  .features:not(.swiper-initialized) .feature-list .single-feature {
    width: 50%;
  }
}

@media screen and (max-width: 576px) {
  .features:not(.swiper-initialized) .feature-list .single-feature {
    width: 100%;
  }
}

.features-wrap {
  margin-top: 50px;
}

.features-wrap .feature-list {
  padding: 30px 0;
}

.features-wrap .single-feature {
  position: relative;
  display: flex;
  padding: 0 15px;
  justify-content: center;
}

.features-wrap .single-feature:last-child:after {
  width: 0;
}

.features-wrap .single-feature:after {
  position: absolute;
  content: "";
  top: 0;
  height: 42px;
  width: 1px;
  background: var(--border-color);
}

.ltr .features-wrap .single-feature:after {
  right: 0;
}

.rtl .features-wrap .single-feature:after {
  left: 0;
}

@media screen and (max-width: 991px) {
  .features-wrap {
    margin-top: 30px;
  }
}

@media screen and (max-width: 576px) {
  .features-wrap .feature-list .single-feature {
    justify-content: flex-start;
    padding: 0 30px;
  }

  .features-wrap .feature-list .single-feature:after {
    content: none;
  }
}

.special-categories-wrap {
  padding: 40px 0;
  background: #fff;
}

.special-categories-wrap .special-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  align-items: center;
  border: 1px solid #dd2745;
  border-radius: 5px;
  padding: 10px 5px;
}

@media (max-width: 768px) {
  .special-categories-wrap .special-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .special-categories-wrap .special-categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

.special-categories-wrap .special-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.special-categories-wrap .special-category-item:hover {
  transform: translateY(-5px);
  text-decoration: none;
  color: inherit;
}

.special-categories-wrap .special-category-item:visited {
  color: inherit;
}

.special-categories-wrap .special-category-item.has-link:hover .special-category-name {
  color: #dd2745;
}

.special-categories-wrap .special-category-item .special-category-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
  .special-categories-wrap .special-category-item .special-category-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .special-categories-wrap .special-category-item .special-category-icon {
    width: 40px;
    height: 40px;
  }
}

.special-categories-wrap .special-category-item .special-category-icon img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 768px) {
  .special-categories-wrap .special-category-item .special-category-icon img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .special-categories-wrap .special-category-item .special-category-icon img {
    width: 22px;
    height: 22px;
  }
}

.special-categories-wrap .special-category-item:hover .special-category-icon {
  background: #e9ecef;
}

.special-categories-wrap .special-category-item .special-category-name {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .special-categories-wrap .special-category-item .special-category-name {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .special-categories-wrap .special-category-item .special-category-name {
    font-size: 10px;
  }
}

.featured-categories-wrap {
  margin-top: 50px;
  margin-bottom: 20px;
}

.featured-categories-wrap .category-carousel-section {
  margin-bottom: 50px;
}

.featured-categories-wrap .section-header {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 10px;
}

.featured-categories-wrap .section-header .title {
  font-size: 26px;
  font-weight: 700;
  color: #2a155c;
  margin: 0;
  line-height: 1.2;
}

.featured-categories-wrap .section-header .view-all {
  font-size: 14px;
  font-weight: 600;
  color: #5e29a9;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-categories-wrap .section-header .view-all:hover {
  color: #381a73;
}

.ltr .featured-categories-wrap .section-header .view-all:hover {
  transform: translateX(3px);
}

.rtl .featured-categories-wrap .section-header .view-all:hover {
  transform: translateX(-3px);
}

.featured-categories-wrap .section-header .view-all i {
  font-size: 16px;
}

.featured-categories-wrap .products-slider {
  margin-left: -10px;
  margin-right: -10px;
  padding: 10px 10px 30px;
  overflow: visible;
}

.featured-categories-wrap .infinite-scroll-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  width: 100%;
}

.featured-categories-wrap .infinite-scroll-loader .loading-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid var(--color-gray-lite);
  border-top: 3px solid var(--color-primary);
  border-radius: 50%;
  margin-bottom: 10px;
}

.ltr .featured-categories-wrap .infinite-scroll-loader .loading-spinner {
  animation: spin-ltr 1s linear infinite;
}

.rtl .featured-categories-wrap .infinite-scroll-loader .loading-spinner {
  animation: spin-rtl 1s linear infinite;
}

.featured-categories-wrap .infinite-scroll-loader span {
  font-size: 14px;
  color: var(--color-gray);
  font-weight: 500;
}

@keyframes spin-ltr {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-rtl {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@media screen and (max-width: 767px) {
  .featured-categories-wrap .section-header .title {
    font-size: 20px;
  }

  .featured-categories-wrap .section-header .view-all {
    font-size: 12px;
  }
}

.three-column-full-width-banner {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: rgba(0, 0, 0, 0.04);
}

.banner-wrap {
  margin-top: 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.banner-wrap.m-t-0 {
  margin-top: 0;
}

.banner-wrap.three-column-full-width-banner, .banner-wrap.one-column-banner {
  margin-top: 50px;
}

.banner-wrap.three-column-banner .banner {
  background: rgba(0, 0, 0, 0.04);
  padding-bottom: 40%;
}

.banner-wrap.three-column-banner .banner img {
  position: absolute;
  top: 0;
}

.ltr .banner-wrap.three-column-banner .banner img {
  left: 0;
}

.rtl .banner-wrap.three-column-banner .banner img {
  right: 0;
}

.banner-wrap.one-column-banner .banner {
  background: rgba(0, 0, 0, 0.04);
  padding-bottom: 22%;
}

.banner-wrap.one-column-banner .banner img {
  position: absolute;
  top: 0;
}

.ltr .banner-wrap.one-column-banner .banner img {
  left: 0;
}

.rtl .banner-wrap.one-column-banner .banner img {
  right: 0;
}

.banner-wrap.two-column-banner .banner {
  background: rgba(0, 0, 0, 0.04);
  padding-bottom: 31%;
}

.banner-wrap.two-column-banner .banner img {
  position: absolute;
  top: 0;
}

.ltr .banner-wrap.two-column-banner .banner img {
  left: 0;
}

.rtl .banner-wrap.two-column-banner .banner img {
  right: 0;
}

@media screen and (max-width: 991px) {
  .three-column-full-width-banner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .three-column-full-width-banner .row > div:first-child .banner {
    margin-top: 0;
  }

  .three-column-full-width-banner .row > div .banner {
    margin-top: 15px;
  }

  .two-column-banner .row > .col-md-9:last-child .banner {
    margin-top: 15px;
  }

  .three-column-banner .row > .col-md-6:first-child .banner {
    margin-top: 0;
  }

  .three-column-banner .row > .col-md-6 .banner {
    margin-top: 15px;
  }
}

@keyframes effect-height {
  0% {
    height: 0;
    opacity: 1;
    visibility: visible;
  }

  100% {
    height: 100%;
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes effect-width {
  0% {
    width: 0;
    opacity: 1;
    visibility: visible;
  }

  100% {
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }
}

.landscape-tab-products-wrap {
  margin-top: 30px;
  margin-bottom: 30px;
}

.landscape-tab-products-wrap .tab-products-header {
  display: flex;
  justify-content: space-between;
}

.landscape-tab-products-wrap .tab-products-header .tabs {
  display: flex !important;
}

.ltr .landscape-tab-products-wrap .tab-products-header .tabs {
  padding-left: 0;
}

.rtl .landscape-tab-products-wrap .tab-products-header .tabs {
  padding-right: 0;
}

.landscape-tab-products-wrap .tab-products-header .tabs .tab-item {
  white-space: nowrap;
}

.landscape-tab-products-wrap .tab-products-header hr {
  display: none;
}

.landscape-tab-products-wrap .section-title {
  font-size: 18px;
  line-height: 24px;
  margin-top: 13px;
  padding-bottom: 14px;
}

.blog-posts-inner,
.landscape-right-tab-products-inner,
.landscape-left-tab-products-inner {
  overflow: hidden;
  margin: 0 -10px -50px -10px;
  padding: 0 10px 50px 10px;
}

.landscape-right-tab-products {
  margin-left: -6px;
  margin-right: -6px;
  overflow: unset;
}

.blog-posts {
  margin-left: -10px;
  margin-right: -10px;
  overflow: unset;
}

.landscape-left-tab-products {
  margin-left: -6px;
  margin-right: -6px;
  overflow: unset;
}

.landscape-left-tab-products .swiper-button-prev,
.landscape-left-tab-products .swiper-button-next {
  top: -47px;
}

.landscape-left-tab-products .swiper-pagination {
  display: none;
}

.daily-deals .swiper-button-prev,
.daily-deals .swiper-button-next {
  top: unset;
  bottom: 9px;
}

.ltr .daily-deals .swiper-button-prev,
.ltr .daily-deals .swiper-button-next {
  right: 53px;
  left: unset;
}

.rtl .daily-deals .swiper-button-prev,
.rtl .daily-deals .swiper-button-next {
  left: 53px;
  right: unset;
}

.ltr .daily-deals .swiper-button-prev {
  right: unset;
  left: 58px;
}

.rtl .daily-deals .swiper-button-prev {
  left: unset;
  right: 58px;
}

@media screen and (max-width: 767px) {
  .landscape-left-tab-products .swiper-pagination {
    display: block;
    top: unset;
    bottom: 0;
  }

  .landscape-left-tab-products .swiper-button-next,
  .landscape-left-tab-products .swiper-button-prev {
    display: none;
  }

  .landscape-tab-products-wrap .tab-products-header {
    text-align: center;
    border-bottom: unset;
    flex-direction: column;
  }

  .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow {
    overflow: auto;
    padding-bottom: 10px;
    display: flex;
    position: relative;
  }

  .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }

  .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow::-webkit-scrollbar-track, .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow::-webkit-scrollbar-thumb, .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow::-webkit-scrollbar-thumb:hover {
    background: transparent;
  }

  .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow .tabs {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #e5e5e5;
  }

  .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow .tabs .tab-item::after {
    bottom: -8px;
    z-index: 1;
  }

  .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow .tabs .tab-item::before {
    bottom: -1px;
    z-index: 1;
  }

  .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow hr {
    display: block;
    height: 0;
    background: transparent;
    position: absolute;
    width: 100%;
    top: 41px;
    border: unset;
    border-bottom: 1px solid #e5e5e5;
    opacity: 1;
  }

  .ltr .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow hr {
    left: 0;
  }

  .rtl .landscape-tab-products-wrap .tab-products-header .tab-products-header-overflow hr {
    right: 0;
  }

  .landscape-tab-products-wrap .tab-products-header .section-title {
    margin: 0 0 10px;
    padding-top: 15px;
  }

  .ltr .landscape-tab-products-wrap .tab-products-header .section-title:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .rtl .landscape-tab-products-wrap .tab-products-header .section-title:after {
    right: 50%;
    transform: translateX(50%);
  }

  .landscape-tab-products-wrap .tab-products-header .tabs {
    display: block;
    margin-top: 5px;
    text-align: center;
  }

  .landscape-tab-products-wrap .tab-products-header .tabs .tab-item {
    display: inline-block;
  }
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.grid-products-wrap {
  margin-top: 30px;
}

.grid-products-wrap .grid-products-wrap-inner {
  overflow: hidden;
  padding: 0 10px 40px 10px;
  margin: 0 -10px -40px -10px;
}

.grid-products-wrap .grid-products-wrap-inner .swiper-button-next::after,
.grid-products-wrap .grid-products-wrap-inner .swiper-button-prev::after {
  transform: translateY(-1px);
}

.grid-products-wrap .tabs {
  display: flex;
}

.ltr .grid-products-wrap .tabs {
  padding-left: 0;
}

.rtl .grid-products-wrap .tabs {
  padding-right: 0;
}

.grid-products-wrap .tabs .tab-item {
  font-size: 15px;
  line-height: 26px;
  padding: 15px 3px;
  color: var(--color-gray);
  font-weight: var(--font-normal);
}

.grid-products-wrap .tabs .tab-item.active:after {
  opacity: 1;
}

.grid-products-wrap .tab-products-header {
  position: relative;
}

.grid-products-wrap .tab-products-header hr {
  display: none;
}

.grid-products {
  margin-left: -6px;
  margin-right: -6px;
  overflow: unset;
  padding-bottom: 15px;
  padding-top: 14px !important;
}

.grid-products .swiper-pagination {
  padding-top: 10px;
}

.grid-products.swiper-grid-column > .swiper-wrapper {
  flex-direction: row;
}

.grid-products .swiper-button-prev,
.grid-products .swiper-button-next {
  top: -50px;
}

.ltr .grid-products .arrow-prev {
  right: 69px;
}

.rtl .grid-products .arrow-prev {
  left: 69px;
}

.ltr .grid-products .arrow-next {
  right: -3px;
}

.rtl .grid-products .arrow-next {
  left: -3px;
}

.grid-products .swiper-slide {
  height: auto !important;
}

.grid-products .grid-products-item {
  padding: 6px;
  height: 100%;
}

.grid-products .grid-products-item .product-card {
  margin: 0;
  height: 100%;
  justify-content: stretch;
}

.grid-products .swiper-slide-skeleton {
  padding: 6px;
}

.grid-products .product-card-skeleton {
  margin: 0;
}

.grid-products.swiper:not(.swiper-initialized) .swiper-wrapper {
  flex-wrap: wrap;
}

.grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(16) ~ .swiper-slide {
  display: none;
}

@media screen and (max-width: 1760px) {
  .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper {
    flex-wrap: wrap;
  }

  .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(14) ~ .swiper-slide {
    display: none;
  }
}

@media screen and (max-width: 1400px) {
  .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(12) ~ .swiper-slide {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(10) ~ .swiper-slide {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(8) ~ .swiper-slide {
    display: none;
  }
}

@media screen and (max-width: 830px) {
  .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(6) ~ .swiper-slide {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .grid-products.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(4) ~ .swiper-slide {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .grid-products .grid-products-item {
    padding: 6px;
  }
}

@media screen and (max-width: 767px) {
  .grid-products {
    padding-bottom: 25px;
    padding-top: 4px !important;
  }

  .grid-products .swiper-pagination {
    display: block;
    top: unset;
    bottom: 0;
  }

  .grid-products .swiper-button-next,
  .grid-products .swiper-button-prev {
    display: none;
  }

  .grid-products-wrap {
    margin-bottom: 0;
  }

  .grid-products-wrap .tabs {
    display: flex;
    text-align: center;
  }

  .grid-products-wrap .tabs .tab-item {
    display: inline-block;
  }

  .grid-products-wrap .tabs .tab-item.active::after {
    opacity: 1 !important;
  }

  .grid-products-wrap .tabs .tab-item::after {
    bottom: -8px;
  }

  .grid-products-wrap .tabs .tab-item::before {
    bottom: -1px;
    z-index: 1;
  }

  .grid-products-wrap .tab-products-header {
    overflow: auto;
    padding-bottom: 10px;
    border-bottom: unset;
    display: flex;
  }

  .grid-products-wrap .tab-products-header .tabs {
    display: flex !important;
    border-bottom: 1px solid #e5e5e5;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-products-wrap .tab-products-header hr {
    display: block;
    height: 0;
    background: transparent;
    position: absolute;
    width: 100%;
    top: 40px;
    border: unset;
    border-bottom: 1px solid #e5e5e5;
    opacity: 1;
  }

  .ltr .grid-products-wrap .tab-products-header hr {
    left: 0;
  }

  .rtl .grid-products-wrap .tab-products-header hr {
    right: 0;
  }

  .grid-products-wrap .tab-products-header::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }

  .grid-products-wrap .tab-products-header::-webkit-scrollbar-track, .grid-products-wrap .tab-products-header::-webkit-scrollbar-thumb, .grid-products-wrap .tab-products-header::-webkit-scrollbar-thumb:hover {
    background: transparent;
  }
}

.custom-gift-section {
  position: relative;
  padding: 60px 0 70px;
  background-color: #f6eafd;
  background-image: url("/bg/customb_desltop.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .custom-gift-section {
    background-image: url("/bg/customb.png");
    padding: 30px 15px;
    margin: 15px;
    border: 2px solid rgba(124, 58, 237, 0.25);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(94, 41, 169, 0.1);
  }
}

.custom-gift-section .custom-gift-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.custom-gift-section .custom-gift-text {
  margin-bottom: 35px;
}

.custom-gift-section .custom-gift-text .eyebrow {
  font-size: 14px;
  font-weight: 800;
  color: #6d28d9;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

@media screen and (max-width: 575px) {
  .custom-gift-section .custom-gift-text .eyebrow {
    font-size: 12px;
  }
}

.custom-gift-section .custom-gift-text .title {
  font-size: 38px;
  font-weight: 800;
  color: #1e1136;
  margin-bottom: 12px;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .custom-gift-section .custom-gift-text .title {
    font-size: 28px;
  }
}

@media screen and (max-width: 575px) {
  .custom-gift-section .custom-gift-text .title {
    font-size: 24px;
  }
}

.custom-gift-section .custom-gift-text .subtitle {
  font-size: 16px;
  color: #4b4453;
  font-weight: 500;
}

@media screen and (max-width: 575px) {
  .custom-gift-section .custom-gift-text .subtitle {
    font-size: 14px;
  }
}

.custom-gift-section .gift-features-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 575px) {
  .custom-gift-section .gift-features-flow {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 30px;
  }
}

.custom-gift-section .feature-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 575px) {
  .custom-gift-section .feature-step {
    gap: 6px;
  }
}

.custom-gift-section .feature-step .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
  transition: all 0.3s ease;
}

.custom-gift-section .feature-step .icon-circle i {
  font-size: 36px;
  color: #7c3aed;
}

@media screen and (max-width: 575px) {
  .custom-gift-section .feature-step .icon-circle {
    width: 60px;
    height: 60px;
    border-width: 2px;
  }

  .custom-gift-section .feature-step .icon-circle i {
    font-size: 24px;
  }
}

.custom-gift-section .feature-step .icon-circle.active {
  background: #7c3aed;
  border-color: #7c3aed;
}

.custom-gift-section .feature-step .icon-circle.active i {
  color: #ffffff;
}

.custom-gift-section .feature-step .icon-circle .badge {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.ltr .custom-gift-section .feature-step .icon-circle .badge {
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
}

.rtl .custom-gift-section .feature-step .icon-circle .badge {
  background: linear-gradient(-135deg, #fcd34d, #f59e0b);
}

.custom-gift-section .feature-step .icon-circle .badge i {
  font-size: 12px;
  color: #ffffff;
}

@media screen and (max-width: 575px) {
  .custom-gift-section .feature-step .icon-circle .badge {
    width: 18px;
    height: 18px;
    border-width: 1.5px;
  }

  .custom-gift-section .feature-step .icon-circle .badge i {
    font-size: 10px;
  }
}

.custom-gift-section .feature-step .icon-circle .badge.pencil {
  top: -4px;
}

.ltr .custom-gift-section .feature-step .icon-circle .badge.pencil {
  right: -4px;
}

.rtl .custom-gift-section .feature-step .icon-circle .badge.pencil {
  left: -4px;
}

@media screen and (max-width: 575px) {
  .custom-gift-section .feature-step .icon-circle .badge.pencil {
    top: -2px;
  }

  .ltr .custom-gift-section .feature-step .icon-circle .badge.pencil {
    right: -2px;
  }

  .rtl .custom-gift-section .feature-step .icon-circle .badge.pencil {
    left: -2px;
  }
}

.custom-gift-section .feature-step .icon-circle .badge.upload {
  bottom: -4px;
}

.ltr .custom-gift-section .feature-step .icon-circle .badge.upload {
  right: -4px;
}

.rtl .custom-gift-section .feature-step .icon-circle .badge.upload {
  left: -4px;
}

@media screen and (max-width: 575px) {
  .custom-gift-section .feature-step .icon-circle .badge.upload {
    bottom: -2px;
  }

  .ltr .custom-gift-section .feature-step .icon-circle .badge.upload {
    right: -2px;
  }

  .rtl .custom-gift-section .feature-step .icon-circle .badge.upload {
    left: -2px;
  }
}

.custom-gift-section .feature-step .step-label {
  font-size: 15px;
  font-weight: 700;
  color: #1e1136;
  white-space: nowrap;
}

@media screen and (max-width: 575px) {
  .custom-gift-section .feature-step .step-label {
    font-size: 11px;
  }
}

.custom-gift-section .step-arrow {
  color: #7c3aed;
  font-size: 24px;
  margin-bottom: 25px;
}

@media screen and (max-width: 575px) {
  .custom-gift-section .step-arrow {
    font-size: 16px;
    margin-bottom: 20px;
    margin-left: -5px;
    margin-right: -5px;
  }
}

.custom-gift-section .btn-customize-wrapper {
  position: relative;
  display: inline-block;
}

.custom-gift-section .btn-customize-wrapper .star-decor {
  position: absolute;
  color: #7c3aed;
}

.custom-gift-section .btn-customize-wrapper .star-decor.star-1 {
  top: -15px;
  font-size: 20px;
  animation: float 2s infinite ease-in-out;
}

.ltr .custom-gift-section .btn-customize-wrapper .star-decor.star-1 {
  left: -15px;
}

.rtl .custom-gift-section .btn-customize-wrapper .star-decor.star-1 {
  right: -15px;
}

.custom-gift-section .btn-customize-wrapper .star-decor.star-2 {
  bottom: -10px;
  font-size: 24px;
  animation: float 2.5s infinite ease-in-out reverse;
}

.ltr .custom-gift-section .btn-customize-wrapper .star-decor.star-2 {
  right: -20px;
}

.rtl .custom-gift-section .btn-customize-wrapper .star-decor.star-2 {
  left: -20px;
}

.custom-gift-section .btn-customize-wrapper .star-decor.star-3 {
  top: 50%;
  font-size: 14px;
  animation: float 3s infinite ease-in-out;
}

.ltr .custom-gift-section .btn-customize-wrapper .star-decor.star-3 {
  right: -10px;
}

.rtl .custom-gift-section .btn-customize-wrapper .star-decor.star-3 {
  left: -10px;
}

.custom-gift-section .btn-customize-wrapper .star-decor.star-4 {
  bottom: 50%;
  font-size: 16px;
  animation: float 2.2s infinite ease-in-out reverse;
}

.ltr .custom-gift-section .btn-customize-wrapper .star-decor.star-4 {
  left: -10px;
}

.rtl .custom-gift-section .btn-customize-wrapper .star-decor.star-4 {
  right: -10px;
}

@media screen and (max-width: 575px) {
  .custom-gift-section .btn-customize-wrapper .star-decor {
    display: none;
  }
}

.custom-gift-section .btn-customize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #7c3aed;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 35px;
  border-radius: 30px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 575px) {
  .custom-gift-section .btn-customize {
    padding: 12px 25px;
    font-size: 13px;
  }
}

.custom-gift-section .btn-customize:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5);
  background: #6d28d9;
  color: #ffffff;
}

.custom-gift-section .btn-customize i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.ltr .custom-gift-section .btn-customize:hover i {
  transform: translateX(4px);
}

.rtl .custom-gift-section .btn-customize:hover i {
  transform: translateX(-4px);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.shop-by-category-wrap {
  padding-top: 30px;
}

.ltr .shop-by-category-wrap {
  padding-left: 5px;
  padding-right: 0;
}

.rtl .shop-by-category-wrap {
  padding-right: 5px;
  padding-left: 0;
}

.shop-by-category-wrap .section-header .title {
  color: #2a155c;
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}

.shop-by-category-wrap .section-header .view-all {
  color: #6a1b9a;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-by-category-wrap .section-header .view-all:hover {
  color: #4a148c;
}

.shop-by-category-wrap .section-header .view-all i {
  font-size: 18px;
}

.shop-by-category-wrap .shop-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 10px;
}

@media (min-width: 576px) {
  .shop-by-category-wrap .shop-category-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}

@media (min-width: 992px) {
  .shop-by-category-wrap .shop-category-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.shop-by-category-wrap .shop-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.shop-by-category-wrap .shop-category-card:hover {
  transform: translateY(-2px);
}

.shop-by-category-wrap .shop-category-card:hover .category-image-wrapper {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.shop-by-category-wrap .shop-category-card .category-image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid #f4f4f4;
}

.shop-by-category-wrap .shop-category-card .category-image-wrapper img {
  max-width: 85%;
  max-height: 85%;
  -o-object-fit: contain;
     object-fit: contain;
}

.shop-by-category-wrap .shop-category-card .category-image-wrapper img.placeholder {
  opacity: 0.5;
}

.shop-by-category-wrap .shop-category-card .category-name {
  color: #2a155c;
  font-size: 11px;
  font-weight: 500;
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .shop-by-category-wrap .shop-category-card .category-name {
    font-size: 14px;
  }
}

.yamunanagar-delivery-wrap {
  margin-bottom: 60px;
  padding-top: 0;
}

.yamunanagar-delivery-wrap .delivery-banner {
  position: relative;
  background-image: url("./yamunanagar_bg-CqwJbrCj-v4.7.11.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding: 60px 50px 80px 50px;
  display: flex;
  align-items: center;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content {
  max-width: 450px;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content .yamunanagar-text-slider {
  width: 100%;
  overflow: hidden;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content .yamunanagar-text-slider .swiper-wrapper {
  display: flex;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content .yamunanagar-text-slider .swiper-wrapper .swiper-slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-title {
  font-family: var(--font-primary, serif);
  font-size: 32px;
  font-weight: 700;
  color: #1a0e35;
  line-height: 1.2;
  margin-bottom: 20px;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-title span {
  color: #6a1b9a;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-divider {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-divider .line {
  height: 2px;
  width: 40px;
  background-color: #6a1b9a;
  display: inline-block;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-divider i {
  color: #6a1b9a;
  font-size: 22px;
  margin: 0 15px;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-desc {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-pagination .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d8b4fe;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-pagination .dot.active {
  background-color: #6a1b9a;
  width: 10px;
  height: 10px;
}

.yamunanagar-delivery-wrap .delivery-features-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -30px;
  position: relative;
  z-index: 10;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.yamunanagar-delivery-wrap .delivery-features-card .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.yamunanagar-delivery-wrap .delivery-features-card .feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 1px;
  background-color: #f0f0f0;
}

.ltr .yamunanagar-delivery-wrap .delivery-features-card .feature-item:not(:last-child)::after {
  right: -25px;
}

.rtl .yamunanagar-delivery-wrap .delivery-features-card .feature-item:not(:last-child)::after {
  left: -25px;
}

.yamunanagar-delivery-wrap .delivery-features-card .feature-item .feature-icon i {
  font-size: 28px;
  color: #6a1b9a;
}

.yamunanagar-delivery-wrap .delivery-features-card .feature-item .feature-text {
  font-size: 12px;
  font-weight: 700;
  color: #1a0e35;
  line-height: 1.3;
  letter-spacing: 0.3px;
}

@media screen and (max-width: 991px) {
  .yamunanagar-delivery-wrap .delivery-banner {
    padding: 40px 30px 60px 30px;
  }

  .ltr .yamunanagar-delivery-wrap .delivery-banner {
    background-position: left center;
  }

  .rtl .yamunanagar-delivery-wrap .delivery-banner {
    background-position: right center;
  }

  .yamunanagar-delivery-wrap .delivery-banner .banner-content {
    max-width: 350px;
  }

  .yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-title {
    font-size: 28px;
  }

  .yamunanagar-delivery-wrap .delivery-features-card {
    width: 95%;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
  }

  .yamunanagar-delivery-wrap .delivery-features-card .feature-item {
    flex: 0 0 40%;
  }

  .yamunanagar-delivery-wrap .delivery-features-card .feature-item:not(:last-child)::after {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .yamunanagar-delivery-wrap .delivery-banner {
    padding: 40px 15px 60px 15px;
  }

  .ltr .yamunanagar-delivery-wrap .delivery-banner {
    background-position: right center;
  }

  .rtl .yamunanagar-delivery-wrap .delivery-banner {
    background-position: left center;
  }

  .yamunanagar-delivery-wrap .delivery-banner .banner-content {
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 20px 20px 20px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(106, 27, 154, 0.1);
    max-width: 95%;
  }

  .yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-title {
    font-size: 24px;
  }

  .yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-divider {
    justify-content: center;
  }

  .yamunanagar-delivery-wrap .delivery-banner .banner-content .banner-pagination {
    justify-content: center;
    margin-top: 15px;
  }

  .yamunanagar-delivery-wrap .delivery-features-card {
    width: 95%;
    margin-top: -30px;
    padding: 20px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .yamunanagar-delivery-wrap .delivery-features-card .feature-item {
    flex: 0 0 45%;
    gap: 8px;
  }

  .yamunanagar-delivery-wrap .delivery-features-card .feature-item .feature-icon i {
    font-size: 24px;
  }

  .yamunanagar-delivery-wrap .delivery-features-card .feature-item .feature-text {
    font-size: 11px;
  }
}

.top-brands-wrap {
  margin-top: 50px;
}

.top-brands {
  border: 1px solid var(--border-color-lite);
  border-radius: var(--radius-default);
  padding: 25px 50px;
  white-space: nowrap;
  position: relative;
}

.top-brands:before, .top-brands:after {
  content: "";
  display: block;
  width: 50px;
  height: 100%;
  background: var(--color-white);
  position: absolute;
  top: 0;
  z-index: 2;
}

.ltr .top-brands:before, .ltr .top-brands:after {
  left: 0;
}

.rtl .top-brands:before, .rtl .top-brands:after {
  right: 0;
}

.ltr .top-brands:after {
  left: unset;
  right: 0;
}

.rtl .top-brands:after {
  right: unset;
  left: 0;
}

.top-brands .swiper-button-next,
.top-brands .swiper-button-prev {
  transition: var(--transition-150);
  height: 25px;
  width: 25px;
  background: var(--color-primary-alpha-30);
  border-radius: 50%;
  top: 50%;
  bottom: 0;
  transform: translateY(-50%);
  margin: 0;
}

.top-brands .swiper-button-next:after,
.top-brands .swiper-button-prev:after {
  font-size: 8px;
  font-weight: 500;
  margin-top: -1px;
  color: var(--color-white);
}

.top-brands .swiper-button-next:hover,
.top-brands .swiper-button-prev:hover {
  background: var(--color-primary);
}

.top-brands .swiper-button-next.swiper-button-disabled,
.top-brands .swiper-button-prev.swiper-button-disabled {
  background: var(--color-primary-alpha-30);
}

.ltr .top-brands .swiper-button-next {
  right: -35px;
}

.rtl .top-brands .swiper-button-next {
  left: -35px;
}

.ltr .top-brands .swiper-button-next::after {
  padding-left: 2px;
}

.rtl .top-brands .swiper-button-next::after {
  padding-right: 2px;
}

.ltr .top-brands .swiper-button-prev {
  left: -35px;
}

.rtl .top-brands .swiper-button-prev {
  right: -35px;
}

.ltr .top-brands .swiper-button-prev::after {
  padding-right: 2px;
}

.rtl .top-brands .swiper-button-prev::after {
  padding-left: 2px;
}

.top-brands:hover .swiper-button-prev {
  display: flex;
}

.ltr .top-brands:hover .swiper-button-prev {
  left: 15px;
}

.rtl .top-brands:hover .swiper-button-prev {
  right: 15px;
}

.top-brands:hover .swiper-button-next {
  display: flex;
}

.ltr .top-brands:hover .swiper-button-next {
  right: 15px;
}

.rtl .top-brands:hover .swiper-button-next {
  left: 15px;
}

.top-brands .top-brand-item {
  height: 60px !important;
  border-radius: var(--radius-default);
}

.top-brands .top-brand-item:hover > img {
  transform: scale(1.1);
}

.top-brands .top-brand-item > img {
  max-height: 100%;
  max-width: 100%;
  transition: var(--transition-200);
}

@media screen and (max-width: 991px) {
  .top-brands {
    padding: 15px 40px;
  }

  .top-brands::before, .top-brands::after {
    width: 40px;
  }
}

@media screen and (max-width: 767px) {
  .top-brands {
    padding: 15px 30px;
  }

  .top-brands::before, .top-brands::after {
    width: 30px;
  }
}

.top-brands:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
  width: 14.28%;
}

@media screen and (max-width: 1200px) {
  .top-brands:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
    width: 16.66%;
  }
}

@media screen and (max-width: 1050px) {
  .top-brands:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
    width: 20%;
  }
}

@media screen and (max-width: 900px) {
  .top-brands:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
    width: 25%;
  }
}

@media screen and (max-width: 750px) {
  .top-brands:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
    width: 33.33%;
  }
}

@media screen and (max-width: 450px) {
  .top-brands:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
    width: 50%;
  }
}

.blog-post {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gray-lite);
  border-radius: var(--radius-default);
  transition: var(--transition-150);
}

.blog-post:hover {
  border-color: var(--color-white-lite);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.ltr .blog-post:hover .blog-post-featured-image > img,
.ltr .blog-post:hover .blog-post-featured-image .image-placeholder > img {
  transform: scale(1.08) rotate(-2deg);
}

.rtl .blog-post:hover .blog-post-featured-image > img,
.rtl .blog-post:hover .blog-post-featured-image .image-placeholder > img {
  transform: scale(1.08) rotate(2deg);
}

.blog-post .blog-post-featured-image {
  position: relative;
  padding-bottom: 56%;
}

.blog-post .blog-post-featured-image > img {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: var(--radius-default) var(--radius-default) 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition-200);
}

.blog-post .blog-post-featured-image .image-placeholder {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-white-dark);
  border-bottom: none;
  border-radius: var(--radius-default) var(--radius-default) 0 0;
}

.ltr .blog-post .blog-post-featured-image .image-placeholder {
  left: 0;
}

.rtl .blog-post .blog-post-featured-image .image-placeholder {
  right: 0;
}

.blog-post .blog-post-featured-image .image-placeholder > img {
  height: 100px;
  width: 100px;
  transition: var(--transition-200);
}

.blog-post .blog-post-meta {
  display: flex;
  margin-bottom: 10px;
}

.blog-post .blog-post-meta > li {
  font-size: 14px;
  font-weight: var(--font-light);
  color: var(--color-gray);
}

.ltr .blog-post .blog-post-meta > li {
  margin-left: 25px;
}

.rtl .blog-post .blog-post-meta > li {
  margin-right: 25px;
}

.ltr .blog-post .blog-post-meta > li:first-child {
  margin-left: 0;
}

.rtl .blog-post .blog-post-meta > li:first-child {
  margin-right: 0;
}

.blog-post .blog-post-meta > li > i {
  font-size: 16px;
  color: var(--color-primary);
}

.ltr .blog-post .blog-post-meta > li > i {
  margin: -1px 5px 0 0;
}

.rtl .blog-post .blog-post-meta > li > i {
  margin: -1px 0 0 5px;
}

.blog-post .blog-post-body {
  padding: 20px 20px 25px;
}

.blog-post .blog-post-title {
  max-height: 60px;
}

.blog-post .blog-post-title > a {
  color: var(--color-black);
  font-weight: var(--font-medium);
  font-size: 16px;
  line-height: 18px;
  display: -webkit-box;
  max-width: 100%;
  margin-bottom: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  transition: var(--transition-150);
}

.blog-post .blog-post-title > a:hover {
  text-decoration-color: var(--color-black);
}

.blog-post .blog-post-read-more {
  font-size: 14px;
  color: var(--color-primary);
}

.blog-post .blog-post-read-more i {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-150);
}

.blog-post .blog-post-read-more:hover {
  color: var(--color-primary-hover);
}

.blog-post .blog-post-read-more:hover i {
  opacity: 1;
  visibility: visible;
}

.ltr .blog-post .blog-post-read-more:hover i {
  transform: translateX(5px);
}

.rtl .blog-post .blog-post-read-more:hover i {
  transform: translateX(-5px);
}

.blog-posts-wrap {
  margin-top: 44px;
}

.blog-posts-wrap .swiper {
  padding-top: 20px;
}

.blog-posts-wrap .blog-posts-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color-lite);
}

.blog-posts-wrap .blog-posts-header .section-title {
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 14px;
}

.blog-posts-wrap .blog-posts-header .view-all {
  margin-top: 2px;
  color: var(--color-gray);
}

.blog-posts-wrap .blog-posts-header .view-all:hover {
  color: var(--color-primary);
}

.blog-posts .blog-post-card {
  margin: 0 10px;
  height: 100%;
}

.blog-posts-wrap .blog-posts:not(.swiper-initialized) .swiper-slide {
  max-width: 20%;
}

@media screen and (max-width: 1700px) {
  .blog-posts-wrap .blog-posts:not(.swiper-initialized) .swiper-slide {
    max-width: 25%;
  }
}

@media screen and (max-width: 1300px) {
  .blog-posts-wrap .blog-posts:not(.swiper-initialized) .swiper-slide {
    max-width: 33.33%;
  }
}

@media screen and (max-width: 920px) {
  .blog-posts-wrap .blog-posts:not(.swiper-initialized) .swiper-slide {
    max-width: 50%;
  }
}

@media screen and (max-width: 640px) {
  .blog-posts-wrap .blog-posts:not(.swiper-initialized) .swiper-slide {
    max-width: 100%;
  }
}

.personalized-gifts-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  min-height: 400px;
}

@media screen and (max-width: 767px) {
  .personalized-gifts-section {
    padding: 40px 0;
  }

  .ltr .personalized-gifts-section {
    background-position: 85% center;
  }

  .rtl .personalized-gifts-section {
    background-position: 15% center;
  }
}

.personalized-gifts-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.ltr .personalized-gifts-section .container {
  padding-right: 25%;
}

.rtl .personalized-gifts-section .container {
  padding-left: 25%;
}

@media screen and (max-width: 991px) {
  .ltr .personalized-gifts-section .container {
    padding-right: 15px;
  }

  .rtl .personalized-gifts-section .container {
    padding-left: 15px;
  }
}

.personalized-gifts-section .personalized-gifts-content {
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .personalized-gifts-section .personalized-gifts-content {
    padding: 20px;
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .personalized-gifts-section .personalized-gifts-content {
    padding: 30px 20px;
  }
}

.personalized-gifts-section .personalized-gifts-content .title {
  font-size: 42px;
  font-weight: 700;
  color: #2a155c;
  line-height: 1.4;
  margin-bottom: 15px;
  font-family: "Playfair Display", "Merriweather", Georgia, serif;
}

.personalized-gifts-section .personalized-gifts-content .title .highlight {
  color: #5e29a9;
  font-size: 48px;
}

@media screen and (max-width: 767px) {
  .personalized-gifts-section .personalized-gifts-content .title {
    font-size: 28px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.8);
  }

  .personalized-gifts-section .personalized-gifts-content .title .highlight {
    font-size: 32px;
  }
}

.personalized-gifts-section .personalized-gifts-content .subtitle {
  font-size: 19px;
  font-weight: 500;
  color: #2a155c;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  font-family: "Playfair Display", "Merriweather", Georgia, serif;
}

@media screen and (max-width: 767px) {
  .personalized-gifts-section .personalized-gifts-content .subtitle {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  }
}

.personalized-gifts-section .personalized-gifts-content .btn-explore {
  background-color: #4a1f8c;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 35px;
  border-radius: 4px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.personalized-gifts-section .personalized-gifts-content .btn-explore i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.personalized-gifts-section .personalized-gifts-content .btn-explore:hover {
  background-color: #311163;
  color: #ffffff;
}

.ltr .personalized-gifts-section .personalized-gifts-content .btn-explore:hover i {
  transform: translateX(4px);
}

.rtl .personalized-gifts-section .personalized-gifts-content .btn-explore:hover i {
  transform: translateX(-4px);
}

.tab-content .swiper {
  padding-bottom: 50px;
  margin-bottom: -50px;
  padding-top: 20px;
}

@media screen and (max-width: 767px) {
  .tab-content .swiper {
    padding-top: 10px;
  }

  .tab-content .swiper {
    margin-bottom: 0px;
  }

  .ltr .personalized-gifts-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(226, 226, 226, 0.2392156863);
    z-index: 0;
  }

  .ltr .personalized-gifts-section .container {
    z-index: 1;
  }
}