/** Shopify CDN: Minification failed

Line 14:0 Unexpected "<"
Line 141:0 Unexpected "<"
Line 144:27 Expected ")" to end URL token
Line 187:0 Unexpected "<"
Line 237:0 Unexpected "<"
Line 291:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
<style>
  .carousel-slider {
    margin: 0 auto;
    max-width: 100%;
    position: relative; /* dots ko andar lock karne ke liye */
  }

  .carousel-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: rgb(218, 23, 23);
  }

  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overlay-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    max-width: 40%;
  }

  @keyframes fadeSlideUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .overlay-content h3 {
    font-size: 3.6rem;
    margin-bottom: 10px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #ffffff;
    animation: fadeSlideUp 1s ease forwards;
  }

  .overlay-content p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffffff;
    color: #000000;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .cta-button:hover {
    background-color: #000000;
    color: #ffffff;
  }

  .flickity-button {
    background: rgba(0, 0, 0, 0.6) !important;
  }

  /* 🔴 Dots inside + active red */
  .flickity-page-dots {
  
    position: absolute !important;
    bottom: 25px !important;  /* adjust upar/niche */
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 5;
    width: 100%;
    text-align: center;
  }

  .flickity-page-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    margin: 0 5px;
    opacity: 1;
  }

  .flickity-page-dots .dot.is-selected {
    background: red !important;
  }

  @media screen and (max-width: 768px) {
    .overlay-content {
      left: 5%;
      max-width: 90%;
    }

    .overlay-content h3 {
      font-size: 1.6rem;
    }

    .overlay-content p {
      font-size: 1rem;
    }

    .cta-button {
      padding: 10px 20px;
      font-size: 0.95rem;
    }

    /* Mobile dots position */
    .flickity-page-dots {
      bottom: 15px !important;
    }
  }
</style>
.category-section-wrapper {
  background-color: #f5e4cd;
  background-image: url({{ section.settings.background_image | img_url: 'master' }});
  background-repeat: no-repeat;
  background-position: left top, right top;
  background-size: contain;
  padding: 40px 0;
}

.category-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.category-box {
  text-align: center;
}

.category-box .icon-box {
  background-color: #e1891d;
  padding: 20px;
  border-radius: 16px;
  width: 136px;
  height: 136px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.category-box img {
  max-width: 100%;
  max-height: 100%;
}

.category-box .title {
  margin-top: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #f37019;
}
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
<style>
  .slider-container {
    margin: 20px 0;
  }
  .flickity-slider {
    display: flex;
  }
  .slide {
    width: 100%;
    text-align: center;
  }
  .slide img {
    width: 100%;
    height: auto;
    display: block;
  }
  .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
  }
  .slide-wrapper {
    position: relative;
  }
  .slider-heading {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .slider-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 10px;
  }

  @media (max-width: 768px) {
    .slider-heading {
      font-size: 1.4rem;
    }
    .slider-button {
      padding: 8px 16px;
    }
  }
</style>
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
<style>
  .hero-slider {
    margin: 20px 0;
  }

  .hero-slide {
    position: relative;
    overflow: hidden;
  }

  .hero-slide img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
  }

  .hero-slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .hero-slide-content a {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
  }

  @media screen and (max-width: 768px) {
    .hero-slide-content h2 {
      font-size: 1.5rem;
    }

    .hero-slide-content a {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
  }
</style>