/** Shopify CDN: Minification failed

Line 150:19 Expected identifier but found whitespace
Line 150:21 Unexpected "{"
Line 150:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-hero-slider-wrapper {
  padding-left: 30px;
  padding-right: 30px;
  overflow: hidden;
  position: relative;
}

.custom-hero-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.custom-hero-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
  padding: 0px 35px;
}

.custom-hero-text h2,
.custom-hero-text p {
  transition: font-size 0.3s ease;
}

.floatImage {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateX(0px); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(0px); }
}

@media (max-width: 768px) {
  .custom-hero-slide {
    flex-direction: column;
    text-align: center;
  }
  .custom-hero-image,
  .custom-hero-text {
    max-width: 100%;
  }
}

.slider-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.8);
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  padding: 5px 10px;
  border-radius: 4px;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}
.customer-review-section {
  padding: 0 0 20px 0;
  text-align: center;
}
.customer-review-section .section-header h2 {
  font-size: 65px;
  letter-spacing: -2px;
  font-family: Antonio;
  margin-bottom: 30px;
}
.customer-review-section .section-header p {
  color: #666;
  margin-bottom: 30px;
}
.review-box {
  background: #fff;
  border: 2px solid #024b96;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.review-text {
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
}
.review-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 10px;
  object-fit: cover;
}
.review-name {
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 18px;
  text-decoration: underline;
  text-decoration-color: #024b96;
  text-underline-offset: 8px;
}
.review-subname {
  font-size: 14px;
  color: #000;
}
.customer-review-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.customer-review-swiper .swiper-slide {
  height: auto; /* allow flexible height */
}

.customer-review-swiper .review-box {
  height: 90%; /* make box take full height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.customer-review-swiper .swiper-pagination {
  margin-top: 10px; /* dots aur boxes ke beech gap */
  position: relative; /* ensure it's placed after content */
}
.custom-scroll-collection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0rem 2rem 1rem 2rem;
  background-color: {{ section.settings.background_color }};
}

.custom-scroll-collection .left-content {
  flex: 0 0 30%;
}

.custom-scroll-collection .left-content h2 {
    font-size: 65px;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #004f97;
}

.custom-scroll-collection .left-content p {
  font-size: 23px;
}

.custom-scroll-collection .right-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding: 50px;
}

.product-scroll-wrapper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.product-scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.collection-card {
  min-width: calc(50% - 1rem);
  border: 1px solid #ddd;
  background: white;
  text-align: center;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.collection-card img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 300px;
  /*object-fit: contain; */
}

.collection-info {
  background: #004b88;
  color: white;
  padding: 1rem;
}

.collection-info h4 {
    margin: 0 0 0.5rem 0;
    color: #fff;
    font-size: 15px;
    font-family: 'Raleway';
    font-weight: 600;
}

.collection-info a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    font-style: italic;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #008000;
    border: 1px solid #008000;
    border-radius: 50%;
    padding: 0.6rem 0.8rem;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    display: none;
}

.scroll-left {
  left: 6px;
}

.scroll-right {
  right: 6px;
}


@media screen and (max-width: 768px) {
  .collection-card {
    flex: 0 0 100%;   /* ek card poora screen */
    min-width: 100%;
    max-width: 100%;
  }
  .product-scroll-wrapper {
    gap: 0;          /* gap hata do so card pura fit ho */
    padding: 0;      /* padding bhi remove */
  }

  .custom-scroll-collection {
    flex-direction: column;
    display: block;
    padding: 0 10px;
  }

  .custom-scroll-collection .left-content {
    width: 100%;
    margin-bottom: 2rem;
  }

  .collection-product-card {
    max-width: calc(33.33% - 1rem);
  }
  .custom-scroll-collection .right-content {
     padding: 0px;
     overflow: hidden;
}
  .scroll-arrow-left {
    left: 0; /* Stay inside container */
  }

  .scroll-arrow-right {
    right: 0; /* Stay inside container */
  }

  .scroll-arrow {
    padding: 0.4rem 0.5rem;
    font-size: 1.2rem;
    display: block;
  }
}

/* animation css */
/* Animation base styles */
  .animate-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
  }

  .animate-section.visible {
    opacity: 1;
    transform: translate(0, 0);
  }

  /* Slide animations */
  .slide-in-top { transform: translateY(-50px); }
  .slide-in-bottom { transform: translateY(50px); }
  .slide-in-left { transform: translateX(-50px); }
  .slide-in-right { transform: translateX(50px); }

  /* Flip animations */
  .flip-top { transform: rotateX(-90deg); transform-origin: top; }
  .flip-bottom { transform: rotateX(90deg); transform-origin: bottom; }
  .flip-left { transform: rotateY(-90deg); transform-origin: left; }
  .flip-right { transform: rotateY(90deg); transform-origin: right; }

  /* Visible state for flips */
  .visible.flip-top,
  .visible.flip-bottom,
  .visible.flip-left,
  .visible.flip-right {
    transform: rotate(0);
  }