/** Shopify CDN: Minification failed

Line 197:13 Expected identifier but found whitespace
Line 197:15 Unexpected "{"
Line 197:24 Expected ":"
Line 198:8 Expected identifier but found whitespace
Line 198:10 Unexpected "{"
Line 198:19 Expected ":"
Line 199:14 Expected identifier but found whitespace
Line 199:16 Unexpected "{"
Line 199:25 Expected ":"
Line 199:51 Expected ":"
... and 16 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-slider (INDEX:13) */
.poshaak-slider {
  padding: 50px 10px;
}

.poshaak-wrapper {
  margin: 0;
  position: relative;
}

.poshaak-heading {
  text-align: center;
  font-size: 35px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  margin-top: -10px;
}

.poshaak-card,
.poshaak-card:hover,
.poshaak-card:focus,
.poshaak-card:active {
  text-decoration: none !important;
  color: inherit;
}

.poshaak-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
}

.poshaak-track::-webkit-scrollbar {
  display: none;
}

.poshaak-card {
  min-width: 240px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.poshaak-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.poshaak-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poshaak-img.secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.poshaak-card:hover .secondary {
  opacity: 1;
}

.poshaak-card:hover .primary {
  opacity: 0;
}

.poshaak-info {
  margin-top: 10px;
  min-height: 60px;
}

.poshaak-title {
  font-size: 14px;
  margin-bottom: 4px;
  color: #FF6FA5;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poshaak-price {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.poshaak-compare {
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
}

.poshaak-discount {
  color: red;
  font-size: 13px;
  margin-left: 5px;
}

/* MOBILE */
@media (max-width: 768px) {

  .poshaak-track {
    gap: 12px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .poshaak-slider {
  padding: 30px 5px;
}

  .poshaak-card {
    min-width: 50%;
    max-width: 50%;
  }

  .poshaak-wrapper {
    overflow: hidden;
  }

  .poshaak-title {
    font-size: 13px;
    line-height: 1.3;
    min-height: 34px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .poshaak-info {
    min-height: 55px;
  }

  .poshaak-img-wrap {
    aspect-ratio: 3/4;
  }

  .slider-btn {
    top: 35%;
  }

  .prev-btn { left: 5px; }
  .next-btn { right: 5px; }
}

/* ARROWS */
.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #FF6FA5;
  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:custom-slider */

/* START_SECTION:footer-advanced (INDEX:18) */
.footer-advanced {
  background: {{ section.settings.bg_color }};
  color: {{ section.settings.text_color }};
  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 {
  font-size: {{ section.settings.heading_size }}px;
  margin-bottom:10px;
}

.footer-column a {
  color: inherit;
  text-decoration:none;
  display:block;
  margin-bottom:6px;
  font-size: {{ section.settings.font_size }}px;
}

.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;
}

@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;
  }

  .desktop-title{
    display:none;
  }

}
/* END_SECTION:footer-advanced */