/** Shopify CDN: Minification failed

Line 96:13 Expected identifier but found whitespace
Line 96:15 Unexpected "{"
Line 96:24 Expected ":"
Line 96:52 Expected ":"
Line 103:13 Expected identifier but found whitespace
Line 103:15 Unexpected "{"
Line 103:24 Expected ":"
Line 103:53 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-slider (INDEX:27) */
.custom-slider-pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.custom-slider-pagination .dot-bar {
  width: 28px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.custom-slider-pagination .dot-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: white;
  animation: none;
}

@keyframes dotProgress {
  from { width: 0%; }
  to { width: 100%; }
}

  
  .custom-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
  }

  .custom-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .custom-slider-slide {
    flex: 0 0 100%;
    position: relative;
    cursor: pointer;
  }

  .custom-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .custom-slider-slide .img-desktop {
    display: block;
  }

  .custom-slider-slide .img-mobile {
    display: none;
  }

  @media screen and (max-width: 768px) {
    .custom-slider-slide .img-desktop {
      display: none;
    }

    .custom-slider-slide .img-mobile {
      display: block;
    }

    .custom-slider-wrapper {
      width: 100%;
      height: {{ section.settings.mobile_height }}px;
    }
  }

  @media screen and (min-width: 769px) {
    .custom-slider-wrapper {
      width: 100%;
      height: {{ section.settings.desktop_height }}px;
    }
  }

  .custom-slider-content {
    position: absolute;
    width: 100%;
    color: white;
  }

  .custom-slider-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .custom-slider-content p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .custom-slider-content a {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
  }

  .custom-slider-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
  }

  .custom-slider-pagination span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    opacity: 0.4;
    cursor: pointer;
  }

  .custom-slider-pagination span.active {
    opacity: 1;
    background: black;
  }

  .custom-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 2rem;
    padding: 5px;
    z-index: 9;
    border-radius: 50px;
    cursor: pointer;
  }

  .custom-slider-arrow.prev {
    left: 10px;
  }

  .custom-slider-arrow.next {
    right: 10px;
  }

  .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: #fff;
    width: 0%;
    animation: fill-bar linear forwards;
  }

  @keyframes fill-bar {
    to {
      width: 100%;
    }
  }
/* END_SECTION:custom-slider */

/* START_SECTION:why-choosehabbaa (INDEX:76) */
.why-gifting {
  background: var(--wg-bg, transparent);
  padding-top: var(--wg-padding-top-mobile);
  padding-bottom: var(--wg-padding-bottom-mobile);
  text-align: center;
}

.why-gifting__inner {
  margin: 0 auto;
}

.why-gifting__heading {
  margin: 0 0 1.2rem 0;
  color: var(--wg-heading-color, inherit);
  font-size: var(--wg-heading-size-mobile);
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  line-height: 1.25;
}

.why-gifting__heading--upper {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.why-gifting__subheading {
  max-width: 60rem;
  margin: 0 auto 3rem auto;
  color: var(--wg-text-color, inherit);
  opacity: 0.85;
  line-height: 1.5;
}

.why-gifting__grid {
  display: grid;
  grid-template-columns: repeat(var(--wg-columns-mobile), 1fr);
  gap: var(--wg-gap-mobile);
  margin-top: 3rem;
}

.why-gifting__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  transition: transform 0.25s ease;
}

.why-gifting__item--hover:hover {
  transform: translateY(-4px);
}

.why-gifting__icon-wrap {
  width: var(--wg-icon-size-mobile);
  height: var(--wg-icon-size-mobile);
  border-radius: var(--wg-icon-radius);
  background: var(--wg-icon-bg, rgba(255, 255, 255, 0.08));
  color: var(--wg-icon-color, currentColor);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem auto;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.why-gifting__item--hover:hover .why-gifting__icon-wrap {
  transform: scale(1.08);
}

.why-gifting__icon-wrap svg {
  width: 44%;
  height: 44%;
}

.why-gifting__icon-wrap img {
  width: 55%;
  height: 55%;
  object-fit: contain;
}

.why-gifting__title {
  margin: 0 0 0.8rem 0;
  color: var(--wg-heading-color, inherit);
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  font-size: 1.9rem;
  line-height: 1.3;
}

.why-gifting__text {
  max-width: 32rem;
  margin: 0 auto;
  color: var(--wg-text-color, inherit);
  font-family: var(--font-body-family);
  line-height: 1.6;
  opacity: 0.85;
  font-size: 1.5rem;
}

.why-gifting__text p {
  margin: 0;
}

@media screen and (min-width: 750px) {
  .why-gifting {
    padding-top: var(--wg-padding-top-desktop);
    padding-bottom: var(--wg-padding-bottom-desktop);
  }

  .why-gifting__heading {
    font-size: var(--wg-heading-size-desktop);
  }

  .why-gifting__grid {
    grid-template-columns: repeat(var(--wg-columns-desktop), 1fr);
    gap: var(--wg-gap-desktop);
  }

  .why-gifting__icon-wrap {
    width: var(--wg-icon-size-desktop);
    height: var(--wg-icon-size-desktop);
  }
}
/* END_SECTION:why-choosehabbaa */