/** Shopify CDN: Minification failed

Line 208:14 Expected identifier but found whitespace
Line 208:16 Unexpected "{"
Line 208:25 Expected ":"
Line 208:51 Expected ":"
Line 209:17 Expected identifier but found whitespace
Line 209:19 Unexpected "{"
Line 209:28 Expected ":"
Line 209:57 Expected ":"
Line 215:6 Expected identifier but found whitespace
Line 215:8 Unexpected "{"
... and 2 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:elaisha-slider (INDEX:13) */
.elaisha-slider {
  padding: 50px 10px;
}

.elaisha-wrapper {
  margin: 0;
}

.elaisha-heading {
  text-align: center;
  font-size: 35px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  margin-top: -10px;
}

.elaisha-wrapper {
  position: relative;
}
.elaisha-card,
.elaisha-card:hover,
.elaisha-card:focus,
.elaisha-card:active {
  text-decoration: none !important;
  color: inherit;
}
.elaisha-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
}

.elaisha-track::-webkit-scrollbar {
  display: none;
}

.elaisha-card {
  min-width: 240px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ALIGN FIX */
}

.elaisha-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4; /* FIXED HEIGHT */
}

.elaisha-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* IMPORTANT */
}
.elaisha-img.secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.elaisha-card:hover .secondary {
  opacity: 1;
}

.elaisha-card:hover .primary {
  opacity: 0;
}

.elaisha-info {
  margin-top: 10px;
  min-height: 60px; /* FIX alignment */
}

.elaisha-title {
  font-size: 14px;
  margin-bottom: 4px;
   color: #C2185B;

  display: -webkit-box;
  -webkit-line-clamp: 2; /* max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.elaisha-price {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.elaisha-compare {
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
}

.elaisha-discount {
  color: red;
  font-size: 13px;
  margin-left: 5px;
}

@media (max-width: 768px) {
.elaisha-card {
  min-width: 220px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ALIGN FIX */
}

  .elaisha-track {
    gap: 12px;
  }

  .elaisha-card {
    min-width: 50%;  /* 👈 THIS FIXES CUT */
    max-width: 50%;
  }
  .elaisha-wrapper {
    overflow: hidden;
  }

  .elaisha-title {
    font-size: 13px;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-line-clamp: 2; /* max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 34px; /* SAME HEIGHT */
  }
  
  
  .elaisha-info {
    min-height: 55px; /* align all cards */
  }
  .elaisha-img-wrap {
    aspect-ratio: 3/4;
  }
  .elaisha-track {
    overflow-x: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .slider-btn {
    top: 35%;
  }

  .prev-btn { left: 5px; }
  .next-btn { right: 5px; }


 
}

/* ARROWS */
.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #C2185B;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  color: #fff;
}

.prev-btn { left: 5px; }
.next-btn { right: 5px; }
/* END_SECTION:elaisha-slider */

/* START_SECTION:footer-advanced (INDEX:18) */
.footer-advanced {
  background: #C2185B;
  color: #fff;
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.footer-grid {
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: {{ section.settings.column_gap }}px;
}

.footer-column h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}

.footer-column a {
  color: inherit;
  text-decoration:none;
  display:block;
  margin-bottom:6px;
  font-size: 15px;
}

.newsletter-center {
  text-align:center;
  margin-top:40px;
}

.footer-bottom {
  margin-top:30px;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:15px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

.footer-accordion-toggle {
  display:none;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #C2185B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #F4C20D;
  color: #000;
}

@media(max-width:768px){

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-accordion-toggle{
    display:block;
    cursor:pointer;
  }

  .footer-column-content{
    display:none;
  }

  .footer-column.active .footer-column-content{
    display:block;
  }

}
/* END_SECTION:footer-advanced */