/** Shopify CDN: Minification failed

Line 166:19 Expected identifier but found whitespace
Line 166:21 Unexpected "{"
Line 166:30 Expected ":"
Line 167:8 Expected identifier but found whitespace
Line 167:10 Unexpected "{"
Line 167:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:swiper-product-slider (INDEX:93, SCOPED:FALSE) */
section#swiper-product-slider {
  max-width: 1200px;
  margin: 0 auto;
}
section#swiper-product-slider p {
    text-align: center;
}
section#swiper-product-slider {
    padding-top: 50px;
    padding-bottom: 50px;
}
section#swiper-product-slider h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #111111;
    text-align: center;
    margin-bottom: 5px;
}
.swiper {
  width: 100%;
  padding: 20px 0 0px;
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.product-card-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  padding: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.product-price {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
}

/* Add to Cart Button */
.add-to-cart-form {
  margin: 10px 15px 15px;
}
form.add-to-cart-form {
    margin: 0px;
}
.add-to-cart-btn {
  width: 100%;
  background: #caf770;
  height: 50px;
  color: black;
  border: none;
  border-radius: 0px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
   background: #caf770;
}

.icon-cart {
  width: 18px;
  height: 18px;
}

/* Pagination */
.swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.swiper-pagination-bullet {
  background: #000;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: #000;
  opacity: 1;
}

/* Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #000;
  color: #fff;
}
/* END_SECTION:swiper-product-slider */

/* START_SECTION:text-box-grid (INDEX:96, SCOPED:FALSE) */
.text-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.text-box-grid{
    max-width: 1200px;
    margin: 0 auto;}
.text-box-grid-item {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background-color: {{ section.settings.box_bg_color }};
  color: {{ section.settings.text_color }};
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}
.text-box-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.text-box-grid-item h3, 
.text-box-grid-item p {
  margin: 0 0 10px 0;
}
/* END_SECTION:text-box-grid */