/** Shopify CDN: Minification failed

Line 12:0 Unexpected "<"
Line 71:16 Expected identifier but found whitespace
Line 71:17 Unexpected "'Suave Script Pro'"
Line 183:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .perfume-section-wrapper {
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    background: #fff;
  }
.section-subheading,
.section-heading,
.section-description,
.perfume-card a {
  font-family: var(--heading-font-family) !important;
}

.section-heading {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.section-subheading {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.25;
}

.section-description {
  font-size: .95rem;
  line-height: 1.5;
  margin: .35rem 0 .6rem;
}

.perfume-card a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .section-heading { font-size: 1.35rem; }
  .section-subheading { font-size: 1.1rem; }
  .section-description { font-size: 1rem; }
  .perfume-card a { font-size: 1.05rem; }
}


  /* New Section Header Styling */
  .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
  }

  
    font-family: 'Suave Script Pro';
    color: #c89433;
    font-size: 2.9rem;
    margin: 0 0 8px 0;
  }

  .section-heading {
 
    font-size: 2rem;
    margin: 0 0 12px 0;
    color: #000;
    text-transform: uppercase;
  }

  .section-description {
    font-size: 1rem;
    color: black;
    margin: 0;
  }

  .perfume-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    max-width: 1420px;
    margin: 0 auto;
  }

  .perfume-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 15px;
    background: #fff;
    /* box-shadow: 0 2px 8px rgb(0 0 0 / 10%); */

    border: 1px solid #eee;

    align-items: center;
  }
  .perfume-content{
    text-align: center;
  }

  .perfume-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
  }

  .perfume-content h4 {
    font-family: 'Suave Script Pro';
    font-size: 1.1rem;
    margin: 0;
    color: #c89433;
  }

  .perfume-content h3 {
    font-family: 'Marseille Regular';
    font-size: 1.1rem;
    margin: 6px 0;
    text-transform: uppercase;
    color: #000;
  }

  .perfume-content p {
    font-size: 0.85rem;
    margin: 0 0 8px;
    color: #333;
  }

  .perfume-content a {
    font-size: 0.8rem;
    color: #c89433;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }

  .perfume-content a:hover {
    border-color: #c89433;
  }

  /* Responsive layout */
  @media screen and (max-width: 990px) {
    .perfume-section {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (max-width: 600px) {
    .perfume-section {
      grid-template-columns: 1fr;
    }

    .perfume-card {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .perfume-card img {
      width: 100%;
      height: auto;
      max-height: 220px;
      margin-bottom: 10px;
    }

    .perfume-content {
      text-align: center;
    }


  }
</style>