/** Shopify CDN: Minification failed

Line 134:0 Unexpected "<"
Line 145:10 Expected identifier but found whitespace
Line 145:12 Unexpected "{"
Line 145:21 Expected ":"
Line 202:15 Expected identifier but found whitespace
Line 202:17 Unexpected "{"
Line 202:26 Expected ":"
Line 286:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.ron-category-cards {
  width: 100%;
  max-width: 920px;
  margin: 40px auto;
  border-radius: 10px;
}

.ron-category-cards__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  justify-content: center;
}

/* Item styles */
.ron-category-cards__item {
  text-align: center;
  color: #222;
  transition: transform 0.2s ease;
  text-decoration: none !important; /* remove underline */
}

.ron-category-cards__item:hover {
  transform: translateY(-4px);
}

.ron-category-cards__image img {
  width: 100%;
  border-radius: 10px;
}

.ron-category-cards__title {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none !important; /* ensure text clean */
}

/* Mobile horizontal scroll with 3 cards + 4th peeking */
@media (max-width: 768px) {
  .ron-category-cards__wrapper {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 12px;
            margin-left: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .ron-category-cards__item {
    flex: 0 0 30%;   /* ✅ ~3 cards visible */
    scroll-snap-align: start;
  }

  .ron-category-cards__wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
  }
}
.rohan-categories-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px;
  scroll-snap-type: x mandatory; /* enables snap */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rohan-categories-carousel::-webkit-scrollbar {
  display: none;
}

.rohan-category-item {
  flex: 0 0 auto;
  text-align: center;
  scroll-snap-align: start;
}

.rohan-category-image-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%; /* circular wrapper */
  overflow: hidden;
  margin: 0 auto;
}

.rohan-category-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image fills the circle */
  display: block;
  transition: transform 0.3s ease;
}

.rohan-category-image-wrapper img:hover {
  transform: scale(1.05);
}

.rohan-category-title {
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  color: #333;
}

.rohan-category-subtitle {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .rohan-categories-carousel {
    justify-content: flex-start;
  }
}
<style>
  /* Core wrapper */
  .ron-vari-wrapper {
    padding: 28px 16px;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }

  .ron-vari-heading {
    font-size: 22px;
    font-weight: 700;
    color: {{ section.settings.primary_color }};
    margin-bottom: 6px;
    letter-spacing: 0.4px;
  }

  .ron-vari-subheading {
    font-size: 14px;
    color: #6b6b6b;
    margin-bottom: 18px;
  }

  /* Indicators row */
  .ron-indicators {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
    position: relative;
    z-index: 5;
  }

  /* connecting line behind indicators */
  .ron-indicators::before {
    content: '';
    position: absolute;
    height: 3px;
    left: 10%;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    background: #eee;
    border-radius: 2px;
    z-index: 0;
  }

  .ron-indicator {
    position: relative;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f3f3;
    color: #222;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    box-shadow: none;
    border: 0;
    transition: all .18s ease;
  }

  .ron-indicator:hover { transform: translateY(-3px); }

  .ron-indicator.ron-active {
    background: {{ section.settings.primary_color }};
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }

  /* Slide area */
  .ron-slide-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }

  .ron-slide {
    width: 100%;
    max-width: 420px; /* mobile reference */
    position: relative;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(15, 5, 70, 0.06);
  }

  /* Image styles */
  .ron-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* overlay text - plain white text (no gradient) */
  .ron-overlay {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    width: 92%;
    text-align: center;
    pointer-events: none;
  }

  .ron-overlay h3 {
    font-size: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.05;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
    font-weight: 700;
  }

  /* small rounded bottom pill (like screenshot's "Who We Are" pill) */
  .ron-bottom-pill {
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 26px;
    border-radius: 28px;
    box-shadow: 0 4px 20px rgba(15,5,70,0.08);
    font-weight: 700;
    font-size: 14px;
    pointer-events: auto;
  }

  /* Desktop adjustments */
  @media (min-width: 880px) {
    .ron-slide { max-width: 900px; border-radius: 20px; }
    .ron-overlay h3 { font-size: 28px; }
    .ron-vari-heading { font-size: 28px; }
    .ron-vari-subheading { font-size: 16px; }
    .ron-indicator { width: 44px; height: 44px; }
    .ron-indicators { gap: 26px; }
    .ron-indicators::before { left: 20%; right: 20%; }
  }

  /* small-screen fine tuning (mobile pixel-perfect) */
  @media (max-width: 420px) {
    .ron-slide { max-width: 360px; border-radius: 16px; }
    .ron-overlay h3 { font-size: 18px; }
    .ron-bottom-pill { bottom: -14px; padding: 9px 20px; }
  }
</style>