/** Shopify CDN: Minification failed

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

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-slider (INDEX:14) */
.custom-slider {
  padding: 30px 20px;
  background-color: #fff;
}

.custom-wrapper {
  margin: 0;
}

.custom-heading {
  text-align: center;
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  margin-top: -10px;
  font-weight: 400;
  font-family: Jost, sans-serif;
  color:#A97966;
}

.custom-wrapper {
  position: relative;
}

.custom-card,
.custom-card:hover,
.custom-card:focus,
.custom-card:active {
  text-decoration: none !important;
  color: inherit;
}

.custom-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
}

.custom-track::-webkit-scrollbar {
  display: none;
}

.custom-card {
  min-width: 240px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.custom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .4s ease;
}

.custom-img{
  transition: transform .4s ease;
}

.custom-card:hover .custom-img{
  transform: scale(1.05);
}

.custom-info {
  margin-top: 10px;
  min-height: 60px;
}

.custom-title {
  font-size: 14px;
  margin-bottom: 4px;
  color: #9a6c5aff;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.custom-price {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.custom-compare {
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
}

.custom-discount {
  color: red;
  font-size: 13px;
  margin-left: 5px;
}

@media (max-width:768px) {

  .custom-slider{
    overflow:hidden;
    padding:20px 0;
  }

  .custom-wrapper{
    overflow:hidden;
    padding-left:8px;
  }

  .custom-heading {
  font-size: 22px;
}

  .custom-track{

    display:flex;
    flex-wrap:nowrap !important;

    gap:10px;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-behavior:smooth;

    -webkit-overflow-scrolling:touch;

    padding:0 10px 8px 0;

    scrollbar-width:none;
  }

  .custom-track::-webkit-scrollbar{
    display:none;
  }

  /* EXACT 2 CARDS */

  .custom-card{

    flex:0 0 calc(50% - 5px) !important;

    min-width:calc(50% - 5px) !important;
    max-width:calc(50% - 5px) !important;

    width:calc(50% - 5px) !important;
  }

  .custom-img-wrap{
    aspect-ratio:0.78;
    border-radius:16px;
  }

  .custom-img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .custom-info{
    padding-top:8px;
    min-height:auto;
  }

  .custom-title{
    font-size:13px;
    line-height:1.3;
    margin-bottom:4px;
  }

  .custom-price{
    font-size:13px;
  }

  /* HIDE ARROWS MOBILE */

  .slider-btn{
    display:none;
  }

}

/* ARROWS */

.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #A97966;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  color: #fff;
}

.prev-btn { left: 5px; }
.next-btn { right: 5px; }

/* ADD TO CART BUTTON */

.custom-atc-btn{
  position:absolute;
  left:50%;
  bottom:14px;

  transform:translateX(-50%) translateY(12px);

  border:none;
  background:#fff;
  color:#9a6c5aff;

  height:48px;

  border-radius:10px;

  cursor:pointer;

  z-index:5;

  transition:all .35s ease;

  opacity:0;
  visibility:hidden;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:15px;
  font-weight:500;

  letter-spacing:.3px;

  box-shadow:
  0 4px 15px rgba(0,0,0,.12);
}

/* DESKTOP BUTTON */

.desktop-atc-text{
  display:flex;
  align-items:center;
  justify-content:center;

  width:180px;
}

/* MOBILE ICON HIDE */

.mobile-atc-icon{
  display:none;
}

/* DESKTOP ONLY HOVER */

@media(min-width:769px){

  .custom-card:hover .custom-atc-btn{
    opacity:1;
    visibility:visible;

    transform:
    translateX(-50%)
    translateY(0);
  }

   .custom-atc-btn{
    height:42px;
    border-radius:8px;
    font-size:14px;
    bottom:10px;
  }

}

/* BUTTON HOVER */

.custom-atc-btn:hover{
  background:#9a6c5aff;
  color:#fff;
}

/* MOBILE */

@media(max-width:768px){

  .custom-atc-btn{
    opacity:1;
    visibility:visible;

    display:flex;
    align-items:center;
    justify-content:center;

    width:130px;   /* smaller than desktop */
    height:38px;

    border-radius:8px;

    left:50%;
    right:auto;
    bottom:10px;

    transform:translateX(-50%);

    padding:0 12px;

    background:#fff;
    color:#9a6c5aff;

    font-size:13px;
    font-weight:500;

    box-shadow:
      0 4px 12px rgba(0,0,0,.12);
  }

  /* SHOW TEXT ON MOBILE */

  .desktop-atc-text{
    display:flex;
  }

  /* HIDE ICON ON MOBILE */

  .mobile-atc-icon{
    display:none;
  }

}
/* END_SECTION:custom-slider */

/* START_SECTION:footer-advanced (INDEX:19) */
.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: 16px;
  margin-bottom:10px;
  color:#653929;
}

.footer-column a {
  color: inherit;
  text-decoration:none;
  display:block;
  margin-bottom:6px;
  font-size: 16px;
}

.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;
  }

}
/* END_SECTION:footer-advanced */