/** Shopify CDN: Minification failed

Line 18:21 Expected identifier but found whitespace
Line 18:23 Unexpected "{"
Line 18:32 Expected ":"
Line 196:21 Expected identifier but found whitespace
Line 196:23 Unexpected "{"
Line 196:32 Expected ":"
Line 197:10 Expected identifier but found whitespace
Line 197:12 Unexpected "{"
Line 197:21 Expected ":"

**/


/* CSS from section stylesheet tags */
.collection-header-custom {
    background-color: {{ section.settings.background_color }};
    display: flex;
    align-items: stretch;
    overflow: hidden;
  }
  .collection-header-custom .page-width {
    width: 70%;
    padding-left: 5%;
    display: flex;
    align-items: center;
  }
  .collection-header-custom__content {
    width: 100%;
  }
  .collection-header-custom__text {
    max-width: 100%;
  }
  .collection-header-custom__image {
    width: 30%;
    height: 100%;
  }
  .collection-header-custom__image-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .collection-header-custom__title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left !important;
  }
  .collection-header-custom__description {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 450px;
  }
  @media (max-width: 768px) {
    .collection-header-custom {
      flex-direction: column-reverse;
    }
    .collection-header-custom .page-width {
      width: 100%;
      padding: 40px 5%;
    }
    .collection-header-custom__image {
      width: 100%;
      height: 300px;
    }
  }
.book-appointment {
    padding: 60px 20px;
    background-color: #f8f8f8;
  }
  .appointment-details {
    max-width: 100px;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .appointment-details h2 {
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .appointment-details .description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    text-align: center;
    max-width: 650px;
  }
  .cta__btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .appointment-details .button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border: 4px double;
    background-color: transparent;
    color: black;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }

  .appointment-details .button:hover {
    color: #fff;
    background-color: #341D75;
  }

  @media screen and (max-width: 768px) {
    .book-appointment {
      flex-direction: column;
      padding: 20px;
    }
    .appointment-details {
      width: 100%;
    }
    .appointment-details {
      margin-top: 30px;
    }
    .appointment-details .description {
      text-align: left;
    }
    .appointment-details .button {
      display: block;
      width: 100%;
      text-align: center;
    }
  }
.new-jewelry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: #f8f8f8;
  }
  .jewelry-image {
    width: 45%;
  }
  .jewelry-image img {
    width: 100%;
    height: auto;
    /* border: 1px solid #ddd; */
    padding: 10px;
    background-color: #fff;
  }
  .jewelry-details {
    width: 50%;
  }
  .jewelry-details h2 {
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .jewelry-details .description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  .jewelry-details .button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border: 4px double;
    background-color: transparent;
    color: black;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  .jewelry-details .button:hover {
    color: #fff;
    background-color: #341D75;
  }
@media screen and (max-width: 768px) {
  .new-jewelry {
    flex-direction: column;
    padding: 20px;
  }
  .jewelry-image,
  .jewelry-details {
    width: 100%;
  }
  .jewelry-details {
    margin-top: 30px;
  }
}
.appointment-cta {
    background-color: {{ section.settings.background_color }};
    color: {{ section.settings.text_color }};
    text-align: center;
    padding: 60px 20px;
  }

  .appointment-cta__title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .appointment-cta__description {
    max-width: 800px;
    margin: 0 auto 30px;
  }

  .appointment-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .appointment-cta__button {
    border: 4px solid !important;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-style: double !important;
    background: transparent !important;
    color: black;
    border-radius: 5px !important;
    padding: 10px 40px;
  }

  .appointment-cta__button:hover {
    color: white !important;
    background: #341D75 !important;
  }
.collection-list-container {
    padding: 40px;
  }

  .collection-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .collection-item {
    flex: 1 1 300px;
    text-align: center;
    padding: 20px;
    border: 1px solid currentColor;
    border-radius: 10px;
  }

  .collection-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .collection-item p {
    margin: 0;
  }
.store-location {
    padding: 4rem 0;
    max-width: 1480px;
    margin: 0 auto;
  }

  .store-location__wrapper {
    display: flex;
    gap: 2rem;
  }

  .store-location__content {
    padding-left: 30px;
  }

  .store-location__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .store-location__address {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .store-location__hours {
    margin-bottom: 1.5rem;
  }

  .store-location__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .store-location__button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }

  .store-location__button:hover {
    background-color: #333;
    color: #fff;
  }

  .store-location__image img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 767px) {
    .store-location__wrapper {
      flex-direction: column;
    }

    .store-location__content,
    .store-location__image {
      width: 100%;
    }
  }