/** Shopify CDN: Minification failed

Line 12:0 Unexpected "<"
Line 179:0 Unexpected "<"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-footer (INDEX:13, SCOPED:FALSE) */
<style>
  #custom-footer {
    background: black;
    color: white;
    overflow: hidden;
  }

  .footer-wraper {
    max-width: 1400px;
    margin: auto;
    padding: 40px 20px;
    overflow: hidden;
  }
  .footer-logo img {
    max-width: 100px;
    margin: 0 auto;
    display: block;
  }
  .footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
  }
  .footer-column {
    width: 100%;
    max-width: 200px;
    margin-bottom: 30px;
  }
  .footer-column h4 {
    color: #FFE9E5;
    font-weight: 600;
    margin-bottom: 17px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    border-bottom: 2px solid #FFE9E5;
    padding-bottom: 4px;
  }
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  .footer-column ul li a {
    font-size: 15px;
    display: block;
    margin: 5px 0;
    color: #ccc;
  }
  .newletter-social-wraper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
  .footer-newsletter {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-newsletter form {
    display: flex;
    align-items: center;
  }
  .footer-newsletter input {
    padding: 10px;
    border: none;
    width: 100%;
    flex-grow: 1;
  }
  .footer-newsletter button {
    background-color: #f7ddd6;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 50%;
  }
  .footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  .footer-socials a {
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  .footer-bottom {
    margin-top: 30px;
    font-size: 12px;
    text-align: center;
    color: #888;
  }

  /* Responsive styles for tablet and mobile */
  @media (max-width: 1024px) {
    .footer-columns {
      flex-direction: column;
      align-items: center;
    }
    .footer-column {
      max-width: none;
      width: 80%;
      margin-bottom: 20px;
      text-align: center;
    }
    .newletter-social-wraper {
      flex-direction: column;
      gap: 25px;
      align-items: center;
    }
    .footer-newsletter form {
      flex-direction: column;
      width: 100%;
      padding: 0px 20px;
    }
    .footer-newsletter input {
      width: 100%;
      margin-bottom: 10px;
    }
    .footer-newsletter button {
      width: 100%;
    }
    .footer-socials {
      justify-content: center;
      margin-top: 10px;
      gap: 10px;
    }
  }

  @media (max-width: 600px) {
    .footer-wraper {
      padding: 30px 15px;
    }
    .footer-logo img {
      max-width: 80px;
    }
    .footer-column h4 {
      font-size: 14px;
    }
    .footer-column ul li a {
      font-size: 14px;
    }
    .footer-newsletter p {
      font-size: 14px;
      padding: 0 10px;
    }
    .footer-socials a {
      width: 40px;
      height: 40px;
      font-size: 18px;
      border-width: 1.5px;
    }
    .footer-bottom {
      font-size: 11px;
      padding: 0 10px;
    }
  }
</style>
/* END_SECTION:custom-footer */

/* START_SECTION:custom-tab (INDEX:22, SCOPED:FALSE) */
ul.custom--tabs {
  list-style-type: none;
  width: 1400px;
  max-width: 100%;
  display: flex !important;
  flex-wrap: wrap !important;
  padding-left: 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #f2e7e6;
}

.custom--tabs .tab__list {
  background-color: transparent;
  display: inline-block;
  margin-right: 10px;
}

.tab__list h6.custom-tab {
  size: 22px;
  display: inline-block !important;
  padding: 12px 15px !important;
  cursor: pointer !important;
  margin: 0 !important;
  font-weight: normal;
  border-bottom: 3px solid transparent;
  transition: border-bottom 0.3s ease, color 0.3s ease;
  color: black;
}

.tab__list h6.custom-tab.active {
  font-weight: bold;
  color: black !important;
  border-bottom: 3px solid #cfa2a1 !important; /* Soft pink underline */
  background-color: transparent !important;
}

.custom__tab-content {
  display: none;
}

.custom__tab-content.active {
  display: block;
}

.active-always {
  display: block !important;
}

/* Responsive styling for mobile */
@media only screen and (max-width: 576px) {
  ul.custom--tabs {
    flex-direction: column !important;
    align-items: flex-start;
  }

  .custom--tabs .tab__list {
    width: 100%;
  }

  .custom--tabs .tab__list .custom-tab {
    width: 100%;
    text-align: left;
    border-bottom: none !important;
    padding: 10px 0 !important;
  }

  .custom__tab-content.active {
    padding: 0 15px;
  }
}
/* END_SECTION:custom-tab */