/** Shopify CDN: Minification failed

Line 147:0 Unexpected "}"
Line 238:0 Expected "}" to go with "{"

**/
/***********************************
  Recipes Blog Slider – Full CSS
************************************/

.recipes-blog {
  padding: 120px 0;
  position: relative;
      background-image: url(/cdn/shop/files/Papa_Rice_Illustration_3.png?v=1765861906);
    background-repeat: no-repeat;
    background-position-x: -100px;
    background-size: 400px auto;
    background-position-y: bottom;
}

.recipes-blog__heading {
  color: #000;
    text-align: center;
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 60px;
    margin-top: 0;
    padding: 0 100px;
}

/******** SLIDER WRAPPER ********/
.recipes-slider {
  position: relative;
  overflow: hidden;
}

.recipes-slider__list {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  list-style: none;
  scroll-snap-type: x mandatory;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.recipes-slider__list::-webkit-scrollbar {
  display: none;
}

/******** SLIDES ********/
.recipes-slider__item {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: start;
}

@media screen and (min-width: 900px) {
  .recipes-slider__item {
    flex: 0 0 calc(33.333% - 22px);
    max-width: calc(33.333% - 22px);
  }
}

/******** CARD ********/
.recipe-card {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    height: 100%;
}

/* Let body expand to fill available vertical space */
.recipe-card__body {
  flex: 1;
}

/* Push button row to bottom automatically */
.recipe-card__footer {
  margin-top: auto;
}

.recipe-image-wrapper {
  -webkit-mask-image: url('/cdn/shop/files/Papa_s_Rice_blog_mask-box-shadow.png?v=1764013925');
  mask-image: url('/cdn/shop/files/Papa_s_Rice_blog_mask-box-shadow.png?v=1764013925');

  -webkit-mask-size: contain;
  mask-size: contain;

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;

  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* keep shape perfect */
  overflow: hidden;
}

.recipe-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


h3.recipe-title a {
  margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.recipe-description {
  display: none;
}

.recipe-btn {
    padding: 10px 30px;
    text-decoration: none !important;
    font-size: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: Urbane, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif !important;
    font-weight: 500;
    background: transparent;
    background-image: url(/cdn/shop/files/Papa_s_Rice_-_btn_red_sm.png?v=1763989216);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
}

.recipe-btn:hover {
  opacity: 0.85;
}

/******** ARROWS ********/
.recipes-slider__arrow {
  z-index: 7;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.recipes-slider__arrow--prev {
  left: -30px;
}

.recipes-slider__arrow--next {
  right: -30px;
}

.recipes-arrow-img {
  width: 40px;
  height: 40px;
}

/******** BULLET DOTS ********/
.recipes-slider__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

@media screen and (max-width: 749px) {
  .recipes-slider__dots {
    display: flex;
  }
  .recipes-slider__arrow {
    display: none;
  }
  .recipes-blog__heading a {
    font-size: 30px;
        line-height: 40px;
        margin-bottom: 15px;
        padding: 0 0 !important;
        text-decoration: none;
  }
    .recipes-blog__heading {
        padding: 0 0 !important;
      
  .recipes-blog {
  padding: 60px 0;
  position: relative;
}
}

.recipes-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #aa1f23;
  opacity: .35;
  border: none;
  cursor: pointer;
  padding: 0;
}

.recipes-slider__dot.is-active {
  width: 10px;
  background: #aa1f23;
  opacity: 1;
  transform: scale(1.2);
}

/* Disabled arrow */
.recipes-slider__arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}
