/** Shopify CDN: Minification failed

Line 2457:16 Expected identifier but found whitespace
Line 2457:18 Unexpected "{"
Line 2457:27 Expected ":"
Line 2458:21 Expected identifier but found whitespace
Line 2458:23 Unexpected "{"
Line 2458:32 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:cart (INDEX:3) */
.cart {
    padding: 4rem 0;
  }

  .cart__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .cart__title {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin: 0 0 3rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
  }

  .cart__items {
    margin-bottom: 3rem;
  }

  .cart__item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    align-items: center;
  }

  .cart__item-image {
    width: 120px;
    height: 160px;
    overflow: hidden;
  }

  .cart__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart__item-title {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .cart__item-title a {
    text-decoration: none;
    color: inherit;
  }

  .cart__item-variant {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 1rem 0;
  }

  .cart__item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .cart__item-quantity label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .cart__quantity-input {
    width: 60px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    text-align: center;
    border-radius: 0;
  }

  .cart__item-price {
    font-size: 1rem;
    font-weight: 500;
  }

  .cart__item-original-price {
    color: #666;
    text-decoration: line-through;
    margin-left: 0.5rem;
  }

  .cart__item-remove {
    text-align: right;
  }

  .cart__remove-link {
    font-size: 0.875rem;
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .cart__remove-link:hover {
    color: #000;
  }

  .cart__summary {
    background: #f9f9f9;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cart__subtotal {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
  }

  .cart__actions {
    display: flex;
    gap: 1rem;
  }

  .cart__update-btn,
  .cart__checkout-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .cart__checkout-btn {
    background: #000;
    color: #fff;
  }

  .cart__checkout-btn:hover {
    background: #333;
  }

  .cart__update-btn:hover {
    background: #000;
    color: #fff;
  }

  .cart__empty {
    text-align: center;
    padding: 4rem 0;
  }

  .cart__empty p {
    font-size: 1.125rem;
    margin: 0 0 2rem 0;
    color: #666;
  }

  .cart__continue-shopping {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }

  .cart__continue-shopping:hover {
    background: #000;
    color: #fff;
  }

  @media (max-width: 768px) {
    .cart {
      padding: 2rem 0;
    }

    .cart__container {
      padding: 0 1rem;
    }

    .cart__item {
      grid-template-columns: 80px 1fr;
      gap: 1rem;
      padding: 1.5rem 0;
    }

    .cart__item-image {
      width: 80px;
      height: 107px;
    }

    .cart__item-remove {
      grid-column: 2;
      text-align: left;
      margin-top: 1rem;
    }

    .cart__summary {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
    }

    .cart__actions {
      width: 100%;
      justify-content: center;
    }

    .cart__update-btn,
    .cart__checkout-btn {
      flex: 1;
      max-width: 200px;
    }
  }
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:4) */
/* Collection Container */
  .essence-collection {
    position: relative;
    min-height: 100vh;
  }

  /* Collection Navigation */
  .essence-collection__nav-wrapper {
    position: relative;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all 0.3s ease;
  }

  /* Size Grid Layout */
  .essence-filter-section__options--grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .essence-filter-option--small {
    justify-content: center;
    padding: 8px;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
  }

  .essence-filter-option--small:has(input:checked) {
    border-color: #000;
    background: #000;
    color: #fff;
  }

  .essence-filter-option__count {
    margin-left: auto;
    color: #757575;
    font-size: 11px;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
  }

  /* Color Swatch */
  .essence-filter-option__swatch {
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid #ddd;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
  }

  .essence-filter-option__swatch[style*="background-color: #FFFFFF"],
  .essence-filter-option__swatch[style*="background-color: #FFF"],
  .essence-filter-option__swatch[style*="background-color: #ffffff"] {
    border-color: #ccc; /* Better visibility for white swatch */
  }

  /* Active State */
  .essence-filter-option.is-active {
    font-weight: 500;
  }

  /* Add this for color swatch sizing */
  .essence-filter-option__swatch {
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid #ddd;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* Stuck state */
  .essence-collection__nav-wrapper.is-stuck {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: top 0.3s ease, background-color 0.3s ease;
  }

  .essence-collection__nav-wrapper.is-stuck.is-header-hidden {
    top: 0 !important;
  }

  @media (max-width: 768px) {
    .essence-collection__nav-wrapper.is-stuck {
      top: 83px;
    }
  }

  .essence-collection__nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .essence-collection__nav::-webkit-scrollbar { display: none; }

  .essence-collection__nav-link {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    height: 25px;
    padding: 2px 8.5px 0px;
    border: 1px solid transparent;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
  }

  .essence-collection__nav-link.active {
    border: 1px solid #000;
  }

  .essence-collection__filter-btn {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    height: 36px;
    padding: 11px 12px 10px;
    color: #000;
  }

  /* Padding for Fixed Header */
  .essence-collection {
    padding-top: 100px;
  }
  @media (max-width: 768px) {
    .essence-collection {
      padding-top: 100px;
    }
  }

  /* Product Grid */
  .essence-collection__grid-wrapper {
    width: 100%;
    padding: 40px 50px;
  }

  .essence-collection__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 4px;
    row-gap: 40px;
  }

  /* Product Card */
  .essence-product-card {
    position: relative;
  }

  .essence-product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .essence-product-card__images {
    position: relative;
    aspect-ratio: 0.75;
    overflow: hidden;
    margin-bottom: 8px;
  }

  .essence-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .essence-product-card__image--secondary {
    opacity: 0;
  }

  .essence-product-card__link:hover .essence-product-card__image--primary {
    opacity: 0;
  }

  .essence-product-card__link:hover .essence-product-card__image--secondary {
    opacity: 1;
  }

  .essence-product-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 12px;
  }

  .essence-product-card__brand {
    font-family: 'Optima', serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.39px;
    text-transform: uppercase;
    margin: 0;
    color: #000;
  }

  .essence-product-card__title {
    font-family: 'Optima', serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.39px;
    margin: 0;
    color: #000;
  }

  .essence-product-card__price {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #757575;
    margin-top: 4px;
    text-transform: uppercase;
  }

  /* Filter Drawer */
  .essence-filter-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 520px;
    height: 100vh;
    background: #fff;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .essence-filter-drawer.is-open {
    transform: translateX(0);
  }

  .essence-filter-drawer__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .essence-filter-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e5e5;
  }

  .essence-filter-drawer__title {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin: 0;
  }

  .essence-filter-drawer__close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .essence-filter-drawer__content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
  }

  .essence-filter-section {
    margin-bottom: 32px;
  }

  .essence-filter-section__title {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin: 0 0 16px 0;
  }

  .essence-filter-section__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .essence-filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .essence-filter-option__checkbox {
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    margin: 0;
    cursor: pointer;
  }

  .essence-filter-option__label {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
  }

  .essence-filter-drawer__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-top: 1px solid #e5e5e5;
  }

  .essence-filter-drawer__clear {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
  }

  .essence-filter-drawer__apply {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    border: none;
    height: 49px;
    width: 200px;
    cursor: pointer;
  }

  /* Filter Backdrop */
  .essence-filter-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .essence-filter-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }

  /* Empty State */
  .essence-collection__empty {
    text-align: center;
    padding: 80px 20px;
    color: #666;
  }

  /* Mobile Responsive */
  @media (max-width: 1400px) {
    .essence-collection__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 1024px) {
    .essence-collection__grid {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 25px;
      row-gap: 50px;
    }
  }

  @media (max-width: 768px) {
    .essence-collection__nav-wrapper {
      padding: 15px 20px;
      top: 83px;
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
    }

    .essence-collection__nav {
      width: 100%;
      justify-content: flex-start;
      padding-bottom: 8px;
      border-bottom: 1px solid #e5e5e5;
    }

    .essence-collection__filter-btn {
      align-self: flex-end;
    }

    .essence-collection__grid-wrapper {
      padding: 30px 20px;
    }

    .essence-collection__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .essence-filter-drawer {
      width: 100%;
    }

    .essence-product-card__info {
      gap: 4px;
    }
  }

  @media (max-width: 480px) {
    .essence-collection__grid {
      grid-template-columns: 1fr;
      gap: 35px;
    }

    .essence-collection__nav-wrapper {
      top: 83px;
    }
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:5) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
    padding: 100px 50px 50px; /* Header Offset + Side Padding */
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: inherit;
  }
  .collection-card__image-wrapper {
    width: 100%;
    aspect-ratio: 3/4; /* Consistent aesthetic */
    overflow: hidden;
    background: #f4f4f4;
    margin-bottom: 20px;
  }
  .collection-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
  }
  h1 {
      display: none; /* ESSENCE usually hides the h1 title on the list page or styles it minimally */
  }
  .collection-card__title {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    font-weight: 500;
  }
/* END_SECTION:collections */

/* START_SECTION:contact-essence (INDEX:6) */
/* Reset */
  .essence-contact * {
    box-sizing: border-box;
  }

  /* Layout */
  .essence-contact {
    width: 100%;
    padding: 120px 20px 60px;
    min-height: 80vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
  }

  .essence-contact__container {
    width: 100%;
    max-width: 610px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Typography Defaults */
  .essence-contact__heading,
  .essence-contact__subheading,
  .essence-contact__link,
  .essence-contact__text,
  .essence-contact__input,
  .essence-contact__submit,
  .essence-contact__success {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    color: #000000;
    text-transform: uppercase;
    text-align: left;
    width: 100%;
  }

  /* Heading */
  .essence-contact__heading {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0 0 50px 0;
    text-align: center;
  }

  /* Content Groups */
  .essence-contact__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* Subheadings & Links */
  .essence-contact__subheading {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0 0 4px 0;
  }

  .essence-contact__link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
  }
  .essence-contact__link:hover {
    text-decoration: underline;
  }

  /* Text Blocks */
  .essence-contact__text {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .essence-contact__text p {
    margin: 0 0 12px 0;
  }

  .essence-contact__message-intro {
    margin-bottom: 20px;
  }

  /* Form Elements */
  .essence-contact__field {
    margin-bottom: 20px;
  }

  .essence-contact__input {
    display: block;
    width: 100%;
    border: 1px solid #cccccc;
    background: #ffffff;
    border-radius: 0;
    padding: 11.2px 14px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    -webkit-appearance: none;
  }

  .essence-contact__input::placeholder {
    color: #000000;
    opacity: 1;
  }

  .essence-contact__input:focus {
    outline: none;
    border-color: #000000;
  }

  .essence-contact__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='black' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 30px;
  }

  .essence-contact__textarea {
    min-height: 160px;
    resize: vertical;
  }

  .essence-contact__submit {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 10px;
  }

  .essence-contact__submit:hover {
    background: #ffffff;
    color: #000000;
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .essence-contact__success {
    margin-bottom: 20px;
  }

  @media (max-width: 768px) {
    .essence-contact {
        padding-left: 20px;
        padding-right: 20px;
    }
  }
/* END_SECTION:contact-essence */

/* START_SECTION:custom-section (INDEX:7) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:essence-hero (INDEX:8) */
.essence-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 100vh; /* Fallback */
    height: 100svh;
    background: #000;
    overflow: hidden;
  }

  .essence-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
  }

  .essence-hero__slide.is-active {
    opacity: 1;
    z-index: 2;
  }

  .essence-hero__media-container {
    width: 100%;
    height: 100%;
  }

  .essence-hero__video,
  .essence-hero__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  
  .essence-hero__image--mobile { display: none; }
  
  @media (max-width: 768px) {
    .essence-hero__image--desktop { display: none; }
    .essence-hero__image--mobile { display: block; }
    
    .essence-hero__image--desktop:last-child { display: block; } 
  }

  .essence-hero__placeholder {
    width: 100%;
    height: 100%;
    background: #111;
  }

  .essence-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    pointer-events: none;
  }

  .essence-hero__title {
    color: #ffffff;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 20px;
  }

  .essence-hero__actions {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    pointer-events: auto;
  }

  .essence-hero__button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff; 
    min-width: 310px; 
    height: 56px; 
    padding: 0 40px; 
    text-decoration: none;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 16px; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px; 
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  
  .essence-hero__button:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
  }

  @media (max-width: 768px) {
    .essence-hero__title { font-size: 48px; }
    .essence-hero__actions { bottom: 40px; flex-direction: column; align-items: center; gap: 12px; }
    .essence-hero__button { width: 80%; max-width: 300px; text-align: center; }
  }
/* END_SECTION:essence-hero */

/* START_SECTION:faq-essence (INDEX:9) */
/* Reset */
  .essence-faq * { box-sizing: border-box; }
  
  .essence-faq {
    width: 100%;
    padding: 120px 20px 60px; 
    min-height: 80vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
  }

  .essence-faq__container {
    width: 100%;
    max-width: 840px; 
    display: grid;
    grid-template-columns: 200px 1fr; 
    gap: 40px;
  }

  /* SIDEBAR */
  .essence-faq__sidebar {
    position: relative;
  }
  
  .essence-faq__nav {
    list-style: none;
    padding: 0;
    margin: 0;
    position: sticky;
    top: 140px; 
  }

  .essence-faq__nav-item { margin-bottom: 12px; }

  .essence-faq__nav-link {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    display: block;
    transition: opacity 0.2s;
  }
  .essence-faq__nav-link:hover { opacity: 0.6; }

  /* CONTENT */
  .essence-faq__content { width: 100%; }

  .essence-faq__header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid transparent; 
  }

  .essence-faq__expand-all {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  
  /* Category */
  .essence-faq__category {
    margin-top: 60px; 
    margin-bottom: 20px;
    scroll-margin-top: 140px; 
  }
  .essence-faq__category:first-of-type { margin-top: 0; }

  .essence-faq__category-title {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 2.3px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
  }

  /* Accordion */
  .essence-faq__item {
    border-bottom: 1px solid #F1F1F1;
  }

  .essence-faq__question {
    list-style: none; 
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .essence-faq__question::-webkit-details-marker { display: none; }

  .essence-faq__question h3 {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    margin: 0;
  }

  .essence-faq__icon {
    width: 10px;
    height: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .essence-faq__icon svg { display: block; position: absolute; transition: opacity 0.3s ease; }
  .essence-faq__icon .icon-minus { opacity: 0; transform: rotate(-90deg); }
  .essence-faq__icon .icon-plus { opacity: 1; }

  details[open] .essence-faq__icon .icon-plus { opacity: 0; transform: rotate(90deg); }
  details[open] .essence-faq__icon .icon-minus { opacity: 1; transform: rotate(0); }

  .essence-faq__answer {
    padding-bottom: 24px;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 300; 
    line-height: 1.5; 
    letter-spacing: 1.54px;
    text-transform: uppercase;
    color: #000;
  }
  
  .essence-faq__answer p { margin: 0 0 1em 0; }
  .essence-faq__answer p:last-child { margin: 0; }

  @media (max-width: 768px) {
    .essence-faq__container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .essence-faq__nav {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #f1f1f1;
        margin-bottom: 20px;
    }
    
    .essence-faq__nav-item { margin-bottom: 0; white-space: nowrap; }
  }
/* END_SECTION:faq-essence */

/* START_SECTION:footer (INDEX:10) */
/* Container & Layout */
  .essence-footer {
    background-color: #ffffff;
    color: #000000;
    padding: 52px 50px 30px; /* Reference padding */
    width: 100%;
    border-top: 1px solid transparent;
  }

  .essence-footer__container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .essence-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    flex-wrap: nowrap; /* Prevent unnecessary wrapping on desktop */
  }

  /* Newsletter Styles */
  .essence-footer__newsletter {
    align-items: flex-start;
    width: 22.5vw; /* Exact match request */
    min-width: 300px; /* Fallback for smaller screens */
    flex-shrink: 0;
  }

  .essence-footer__label {
    font-family: 'Optima-FG', sans-serif;
    font-size: 15px; /* Reference size */
    letter-spacing: 0.45px;
    text-transform: none;
    margin-bottom: 27px; /* Visual spacing */
    display: block;
    color: #000;
    line-height: 1;
  }

  .essence-footer__input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000;
    padding-bottom: 4px;
  }

  .essence-footer__input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px; /* Reference size */
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #000;
    outline: none;
    box-shadow: none;
    height: 32px; /* Fixed height for consistency */
  }

  .essence-footer__input::placeholder {
     color: #000;
     opacity: 1;
  }

  .essence-footer__input:focus {
    outline: none;
    box-shadow: none;
  }

  .essence-footer__submit {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 0 0 10px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .essence-footer__submit svg {
      width: 10px; /* Smaller, sleeker arrow */
      height: 10px;
  }

  /* Navigation Styles */
  .essence-footer__nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 4px; /* Align baseline with input border */
  }

  .essence-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 35px; /* Spacing between links */
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .essence-footer__link {
    text-decoration: none;
    color: #000;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    font-weight: 600; /* Slightly bolder */
  }

  .essence-footer__link:hover {
    opacity: 0.6;
  }

  .essence-footer__success {
      font-size: 10px;
      margin-top: 5px;
      color: green;
  }

  /* Legal & Localization Bottom */
  .essence-footer__bottom {
    margin-top: 60px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #000;
  }

  .essence-footer__legal {
    text-transform: uppercase;
  }

  .essence-footer__localization {
    position: relative;
  }

  .localization-form__button {
    background: none;
    border: none;
    padding: 0;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .localization-form__button .icon {
    width: 10px;
    height: 6px;
    transition: transform 0.2s ease;
  }

  .localization-form__button[aria-expanded="true"] .icon {
    transform: rotate(180deg);
  }

  .localization-form__list {
    position: absolute;
    bottom: calc(100% + 15px);
    right: 0;
    background: #fff;
    border: 1px solid #f0f0f0;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 240px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
  }

  .localization-form__item {
    margin: 0;
  }

  .localization-form__option {
    display: block;
    width: 100%;
    padding: 12px 20px;
    text-align: right;
    background: none;
    border: none;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #757575;
    cursor: pointer;
    transition: color 0.2s;
  }

  .localization-form__option:hover,
  .localization-form__option.is-active {
    color: #000;
  }

  /* Responsive Mobile */
  @media (max-width: 768px) {
    .essence-footer {
        padding: 40px 20px;
    }

    .essence-footer__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 3rem;
    }

    .essence-footer__newsletter {
        width: 100%;
        max-width: 100%;
    }

    .essence-footer__nav {
        width: 100%;
        justify-content: flex-start;
    }

    .essence-footer__menu {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .essence-footer__bottom {
      flex-direction: column-reverse;
      align-items: flex-start;
      gap: 20px;
      margin-top: 40px;
    }

    .localization-form__list {
      left: 0;
      right: auto;
      width: 100%;
    }

    .localization-form__option {
      text-align: left;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:11) */
/* Reset & Base */
  .header ul { list-style: none; margin: 0; padding: 0; }
  button { background: none; border: none; font: inherit; color: inherit; cursor: pointer; padding: 0; }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px; /* FOG Height */
    display: flex;
    align-items: center;

    background: transparent;
    transition: background-color 0.2s ease, transform 0.3s ease;
    z-index: 1100; /* Higher than any common section */
  }

  /* Solid State and Inner Pages */
  .header.header--solid,
  .header.header--light,
  .header.header--toggled {
    background: #ffffff !important;
  }

  /* Solid State on Scroll */
  .header.header--solid {
    background: #ffffff;
  }
  
  /* Text Colors */
  .header__nav-link,
  .header__action-btn,
  .header__action-link,
  .header__icon-btn,
  .header__mobile-toggle,
  .header__logo-text {
    color: #fff;
    transition: color 0.2s ease;
  }

  .header.header--solid .header__nav-link,
  .header.header--solid .header__action-btn,
  .header.header--solid .header__action-link,
  .header.header--solid .header__logo-text,
  .header.header--solid .header__icon-btn,
  .header.header--solid .header__mobile-toggle,
  .header.header--light .header__nav-link,
  .header.header--light .header__action-btn,
  .header.header--light .header__action-link,
  .header.header--light .header__logo-text,
  .header.header--light .header__icon-btn,
  .header.header--light .header__mobile-toggle,
  .header.header--toggled .header__nav-link,
  .header.header--toggled .header__action-btn,
  .header.header--toggled .header__action-link,
  .header.header--toggled .header__logo-text,
  .header.header--toggled .header__icon-btn,
  .header.header--toggled .header__mobile-toggle,
  .header.header--solid .mobile-menu__link,
  .header.header--light .mobile-menu__link,
  .header.header--toggled .mobile-menu__link,
  .header.header--solid .mobile-menu__sublink,
  .header.header--light .mobile-menu__sublink,
  .header.header--toggled .mobile-menu__sublink,
  .header.header--solid .mobile-menu__grandlink,
  .header.header--light .mobile-menu__grandlink,
  .header.header--toggled .mobile-menu__grandlink,
  .header.header--solid .mobile-menu__back,
  .header.header--light .mobile-menu__back,
  .header.header--toggled .mobile-menu__back {
    color: #000000;
  }
  
  .header.header--solid .mobile-menu,
  .header.header--light .mobile-menu,
  .header.header--toggled .mobile-menu,
  .header.header--solid .mobile-menu__submenu,
  .header.header--light .mobile-menu__submenu,
  .header.header--toggled .mobile-menu__submenu {
    background: #ffffff;
  }
  
  .header.header--solid .mobile-menu__arrow-icon path,
  .header.header--light .mobile-menu__arrow-icon path,
  .header.header--toggled .mobile-menu__arrow-icon path,
  .header.header--solid .mobile-menu__back-icon path,
  .header.header--light .mobile-menu__back-icon path,
  .header.header--toggled .mobile-menu__back-icon path {
    stroke: #000000;
  }

  .header__inner {
    max-width: 100%; /* Full width */
    width: 100%;
    margin: 0 auto;

    padding: 0 50px; /* FOG Padding */
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
  }

  /* --- Navigation --- */
  .header__nav--left { height: 100%; display: flex; align-items: center; }
  .header__nav-list { display: flex; gap: 36px; height: 100%; align-items: center; } /* FOG Gap */
  .header__nav-item { height: auto; display: flex; align-items: center; position: static; } /* Height auto restricts hover to text */

  .header__nav-link {
    text-decoration: none;
    font-size: 13px;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-weight: 500; /* FOG Medium Weight */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    
    position: relative;
    z-index: 20; /* Keep links above the mega menu */
  }

  .header__nav-item:hover .header__nav-link {
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  /* Mega Menu - BLURRED TRANSPARENT | Full Header Cover */
  .mega-menu {
    position: absolute;
    top: 0; /* Starts at very top of screen/header */
    left: 0;
    width: 100%;
    background: transparent; /* Controlled by header state */
    padding: 50px 50px 60px; /* Top padding clears 68px header */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-5%); /* Slide down start pos */
    transition: 
      opacity 0.12s cubic-bezier(0.075, 0.82, 0.165, 1),
      transform 0.12s cubic-bezier(0.075, 0.82, 0.165, 1),
      visibility 0.12s;
    z-index: 10;
  }

  .header__nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0); /* Slide to position */
  }
  
  .mega-menu__inner {
    max-width: 100%; /* Use full width to align with header padding */
    margin: 0;
    padding-left: 0; /* Remove extra padding to align with "FEATURED" */
    display: flex;
    justify-content: space-between;
    color: #ffffff;
  }

  .mega-menu__links { flex: 0 0 25%; padding-top: 25px; }
  .mega-menu__sublist { display: flex; flex-direction: column; gap: 12px; }

  .mega-menu__sublink, .mega-menu__grandchild-link {
    text-decoration: none;
    color: #ffffff; /* FOG uses pure white */
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px; /* Increased to 12px */
    text-transform: uppercase;
    letter-spacing: 0.15em; /* Increased spacing */
    font-weight: 500;
    display: block;
    transition: opacity 0.2s ease;
  }
  
  .mega-menu__sublink:hover, .mega-menu__grandchild-link:hover {
     opacity: 0.7; /* FOG style hover decay */
  }

  .mega-menu__editorial { flex: 0 0 70%; display: flex; gap: 40px; justify-content: flex-end; }
  .mega-menu__promo { display: flex; flex-direction: column; padding-top: 25px; gap: 12px; text-decoration: none; width: 260px; /* Reduces width to match FOG */ }
  .mega-menu__promo-image { width: 100%; height: auto; object-fit: cover; aspect-ratio: 3/4; /* Vertical aspect ratio */ opacity: 1; transition: opacity 0.2s; }
  .mega-menu__promo:hover .mega-menu__promo-image { opacity: 1; }
  .mega-menu__promo-text { font-family: 'HelveticaNeueLTPro-Cn', sans-serif; font-size: 11px; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; }

  /* Mega-menu appearance based on header state */
  .header--transparent.header--hovered .mega-menu {
    background: rgba(0,0,0,0.30);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
  }

  .header--toggled .mega-menu,
  .header--light .mega-menu {
    background: #ffffff;
    color: #000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
    color: #000 !important;
  }

  /* Dropdown (small submenus) follow same rules */
  .header__nav-item .header__dropdown { background: transparent; }
  .header--transparent.header--hovered .header__nav-item .header__dropdown { background: rgba(0,0,0,0.30); color: #fff; }
  .header--toggled .header__nav-item .header__dropdown,
  .header--light .header__nav-item .header__dropdown { background: #fff; color: #000; }

  /* Force dropdown text colors when scrolled */
  .header--toggled .header__nav-item .header__dropdown { background: #fff !important; color: #000 !important; }
  .header--toggled .header__nav-item .header__dropdown .header__dropdown-link { color: #000 !important; }

  /* --- Logo --- */
  .header__logo { justify-self: center; position: relative; z-index: 20; /* Keep above mega menu */ }
  .header__logo-link img { height: 20px; display: block; }
  .header__logo-link { text-decoration: none !important; border: none; color: inherit; }
  .header__logo-text { font-size: 20px; font-family: 'Optima-FG', sans-serif; font-weight: 400; letter-spacing: 0.15em; text-decoration: none !important; white-space: nowrap; border-bottom: none !important; color: inherit; }

  /* --- Actions --- */
  .header__actions--right { justify-self: end; display: flex; gap: 24px; align-items: center; position: relative; z-index: 20; /* Keep above mega menu */ }
  .header__action-btn, .header__action-link { text-decoration: none; font-size: 13px; padding:  0 6px; font-family: 'HelveticaNeueLTPro-Cn', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

  /* --- Search Overlay (Premium Glassmorphism) --- */
  .search-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 400px; /* Desktop height */
    background: rgba(0, 0, 0, 0.85); /* Deep dark with transparency */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    z-index: 3000; /* Highest priority */
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-overlay.is-open { transform: translateY(0); }
  
  .search-overlay__inner { 
    width: 100%; 
    max-width: 800px; 
    padding: 0 40px; 
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
  }
  
  .search-overlay.is-open .search-overlay__inner {
    opacity: 1;
    transform: translateY(0);
  }

  .search-overlay__form { display: flex; flex-direction: column; gap: 32px; }
  .search-overlay__label { 
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif; 
    font-size: 11px; 
    letter-spacing: 0.2em; 
    text-transform: uppercase; 
    color: rgba(255, 255, 255, 0.9); /* Higher visibility */
    font-weight: 500;
  }
  
  .search-overlay__input-wrapper { 
    display: flex; 
    border-bottom: 2px solid rgba(255, 255, 255, 0.3); /* Thicker border */
    padding-bottom: 20px; 
    justify-content: space-between; 
    align-items: center; 
    transition: border-color 0.3s ease;
  }
  
  .search-overlay__input-wrapper:focus-within {
    border-color: rgba(255, 255, 255, 1);
  }

  .search-overlay__input { 
    background: none; 
    border: none; 
    outline: none; 
    color: #ffffff; /* Bright white */
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif; 
    font-size: 24px; 
    letter-spacing: 0.05em; 
    width: 100%; 
    text-transform: uppercase; 
    font-weight: 400;
  }
  
  .search-overlay__input::placeholder { 
    color: rgba(255, 255, 255, 0.5); /* Higher visibility */
    font-size: 16px; 
    text-transform: none; 
    letter-spacing: 0.1em; 
  }

  .search-overlay__submit { 
    color: #ffffff; 
    font-size: 28px; 
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1); 
  }
  
  .search-overlay__submit:hover { 
    transform: translateX(8px); 
  }
  
  .search-overlay__close { 
    position: absolute; 
    top: -100px; 
    right: 40px; 
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif; 
    font-size: 11px; 
    letter-spacing: 0.2em; 
    text-transform: uppercase;
    color: #ffffff; /* Pure white */
    opacity: 1; /* Full opacity */
    transition: opacity 0.3s ease;
  }
  .search-overlay__close:hover { opacity: 0.4; }

  @media (max-width: 768px) {
    .search-overlay {
        height: 100dvh;
        align-items: flex-start;
        padding-top: 140px;
    }
    .search-overlay__inner {
        max-width: 100%;
        padding: 0 32px;
    }
    .search-overlay__input {
        font-size: 18px;
    }
    .search-overlay__close {
        top: -80px; 
        right: 32px;
    }
  }

  /* --- Cart Drawer --- */
  .cart-drawer-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100dvh;
    background: rgba(0,0,0,0.5); z-index: 1100;
    opacity: 0; visibility: hidden; transition: opacity 0.3s;
  }
  .cart-drawer-backdrop.is-open { opacity: 1; visibility: visible; }

  .cart-drawer {
    position: fixed; top: 0; right: 0; width: 600px; max-width: 100%; height: 100dvh;
    background: #fff; z-index: 1101;
    transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column;
  }
  .cart-drawer.is-open { transform: translateX(0); }

  .cart-drawer__header { 
    padding: 30px 40px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-bottom: none; 
  }
  .cart-drawer__title { 
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif; 
    font-size: 11px; 
    letter-spacing: 0.1em; 
    text-transform: uppercase; 
    margin: 0; 
    font-weight: 400; 
    color: #000;
  }
  .cart-drawer__close { 
    font-size: 24px; 
    line-height: 1; 
    cursor: pointer;
    font-weight: 200;
  }

  .cart-drawer__items { flex: 1; overflow-y: auto; padding: 0 40px 40px; }
  .cart-drawer__empty { text-align: left; font-family: 'HelveticaNeueLTPro-Cn', sans-serif; font-size: 12px; text-transform: uppercase; color: #999; }

  .cart-drawer__item { 
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 32px; 
    margin-bottom: 30px; 
    align-items: start;
  }
  .cart-drawer__item-image img { width: 100%; height: auto; object-fit: cover; }
  
  .cart-drawer__item-main { display: flex; flex-direction: column; gap: 4px; }
  .cart-drawer__item-title { 
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 13px; 
    font-weight: 600; 
    margin: 0; 
    text-transform: none;
    letter-spacing: 0.02em;
  }
  .cart-drawer__item-variant { 
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px; 
    color: #444; 
    margin: 0; 
    text-transform: none;
  }
  
  .cart-drawer__item-right { text-align: right; display: flex; flex-direction: column; gap: 8px; }
  .cart-drawer__item-price { 
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 13px; 
    margin: 0; 
    font-weight: 400;
  }
  .cart-drawer__item-remove { 
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px; 
    color: #000; 
    text-decoration: underline; 
    text-underline-offset: 2px;
  }

  /* --- Quantity Selectors (Refined) --- */
  .cart-drawer__quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px;
  }
  .cart-drawer__qty-label { color: #000; }
  .cart-drawer__qty-btn {
    background: none;
    border: none;
    padding: 0 4px;
    cursor: pointer;
    font-size: 14px;
    color: #000;
  }
  .cart-drawer__qty-input {
    width: 20px;
    text-align: center;
    border: none;
    background: none;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 13px;
    pointer-events: none;
    -moz-appearance: textfield;
  }
  .cart-drawer__qty-input::-webkit-outer-spin-button,
  .cart-drawer__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

  .cart-drawer__footer { padding: 40px; border-top: 1px solid #f2f2f2; background: #fff; }
  .cart-drawer__subtotal { 
    display: flex; 
    justify-content: space-between; 
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif; 
    font-size: 11px; 
    text-transform: uppercase; 
    margin-bottom: 30px; 
    font-weight: 400; 
    letter-spacing: 0.1em;
  }
  
  .cart-drawer__checkout-btn { 
    width: 100%; 
    background: #000; 
    color: #fff; 
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif; 
    font-size: 11px; 
    letter-spacing: 0.2em; 
    text-transform: uppercase; 
    border: none; 
    cursor: pointer; 
    margin-bottom: 12px; 
  }
  .cart-drawer__continue-btn { 
    width: 100%; 
    background: #000; 
    color: #fff; 
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif; 
    font-size: 11px; 
    letter-spacing: 0.2em; 
    text-transform: uppercase; 
    text-decoration: none; 
  }

  /* Dropdown Styles */
  .header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
  }
  .header__nav-item:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header__dropdown-list { list-style: none; padding: 10px 0; margin: 0; }
  .header__dropdown-link {
    display: block;
    padding: 8px 20px;
    text-decoration: none;
    color: #000;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .header__dropdown-link:hover { background: #f9f9f9; }

  /* Action Icon */
  .header__action-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
  }
  .header__action-btn, .header__action-link {
    display: flex;
    align-items: center;
  }

  .header__actions--mobile { display: none; }
  .header__icon-btn { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; position: relative; color: inherit; }
  .header__icon-btn svg { width: 20px; height: 20px; display: block; }
  .header__cart-dot { position: absolute; top: 0; right: 0; width: 6px; height: 6px; background: red; border-radius: 50%; }

  @media (max-width: 768px) {
    .header__nav--left { display: none; }
    .header__actions--right { display: none; }
    .essence-hero__image { height: 100%}

    /* Show Mobile Elements */
    .header__mobile-toggle { display: flex !important; }
    .header__actions--mobile { display: flex !important; gap: 16px; align-items: center; justify-self: end; }

    .cart-drawer { width: 100%; }
    
    /* Layout: Menu | Logo | Icons */
    .header__inner { 
      grid-template-columns: 1fr auto 1fr; 
      padding: 0 20px; 
    }
    
    .header { height: 83px; } /* FOG Mobile Height */
    
    /* Center Logo */
    .header__logo { 
        margin: 0 auto; 
        grid-column: 2; 
        justify-self: center;
    }
    
    /* Left Align Menu Toggle */
    .header__mobile-toggle { justify-self: start; }
  }

  

  /* --- Mobile Components --- */
  .header__mobile-close { 
    display: none; 
    width: 20px; /* FOG exact */
    height: 20px; /* FOG exact */
    align-items: center; 
    justify-content: center; 
    color: inherit;
    position: fixed; /* FOG positioning */
    top: 24px; /* FOG exact */
    right: 20px; /* FOG exact */
    z-index: 1225; /* Above mobile menu */
    padding: 0;
  }
  
  .header__mobile-toggle {
    display: none;
    align-items: center;
    justify-content: flex-start;
    z-index: 1002;
    color: inherit;
    width: 36px;
    height: 36px;
    padding: 0;
  }
  
  /* Menu Open State Styles */
  body.is-mobile-menu-open .header__mobile-toggle { display: none !important; }
  body.is-mobile-menu-open .header__icon-btn { display: none !important; }
  body.is-mobile-menu-open .header__mobile-close { display: flex !important; }

  /* Close button colors for menu states */
  .header--transparent.header--hovered .header__mobile-close { color: #fff !important; }
  .header--toggled .header__mobile-close,
  .header--light .header__mobile-close { color: #000 !important; }
  
  .icon-menu {
    width: 14px;
    height: 14px;
    display: block;
    overflow: visible; /* Ensure path is visible */
  }
  .icon-menu path {
    stroke: currentColor;
    vector-effect: non-scaling-stroke; /* Keeps stroke crisp */
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4); /* Darker for better visibility */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1205;
    display: flex;
    flex-direction: column;
    padding-top: 83px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; }
  
  .mobile-menu__inner { 
    width: 100%; height: 100%; 
    padding: 0 24px 60px 24px; /* FOG padding: 24px sides */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .mobile-menu__main {
    flex: 1; /* Takes available space */
    overflow-y: auto;
  }

  .mobile-menu__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
  
  .mobile-menu__link {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #fff; /* White text directly */
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 38px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
  }
  
  .mobile-menu__arrow-icon { 
    display: block;
    width: 6px;
    height: 10px;
  }

  .mobile-menu__submenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1005;
    padding: 83px 24px 60px 24px;
    overflow-y: auto;
  }
  .mobile-menu__submenu.is-open { transform: translateX(0); }
  
  .mobile-menu__back {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: #fff; /* White text */
    position: fixed;
    top: 14px;
    left: 20px;
    z-index: 1006;
    display: flex;
    align-items: center;
    background: none; 
    border: none; 
    padding: 0; 
    cursor: pointer;
    width: 40px;
    height: 40px;
    transition: color 0.2s ease;
  }
  
  /* Bottom Menu */
  .mobile-menu__bottom {
    margin-top: 40px;
    border-top: 0px solid rgba(255,255,255,0.1);
    padding-top: 0;
  }
  .mobile-menu__bottom-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
  .mobile-menu__bottom-link {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
  }
  
  .mobile-menu__sublist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
  .mobile-menu__sublink { font-family: 'HelveticaNeueLTPro-Cn', sans-serif; font-size: 16px; color: #fff; text-decoration: none; text-transform: uppercase; }
  .mobile-menu__grandlink { font-family: 'HelveticaNeueLTPro-Cn', sans-serif; font-size: 14px; color: #999; text-decoration: none; text-transform: uppercase; padding-left: 10px; margin-top: 4px; display: block; }

  /* Prevent body scroll when menu is open */
  body.is-mobile-menu-open { overflow: hidden; }

  /* New Header States */
  .header.header--hidden { transform: translateY(-100%); }
  .header.header--visible { transform: translateY(0); }

  /* 
     Transparent Mode (Home):
     - Default: Transparent BG, White Text
     - Toggled/Hover: Solid White, Black Text (Standard FOG beahvior?)
     Actually FOG often stays dark or goes solid. Let's assume Solid White + Black text on Toggle for now.
  */

  .header--transparent { background: transparent; color: #fff; }
  .header--toggled { background: #fff !important; color: #000 !important; }

  /* Hover state for transparent header: glossy translucent black
     Only apply when header is NOT in the scrolled/toggled state so
     scroll (solid white) always takes precedence. */
  .header--transparent.header--hovered:not(.header--toggled) {
    background-color: rgba(0,0,0,0.30) !important;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(60px);
    color: #fff !important;
  }

  .header--transparent.header--hovered:not(.header--toggled) .header__nav-link,
  .header--transparent.header--hovered:not(.header--toggled) .header__mobile-toggle,
  .header--transparent.header--hovered:not(.header--toggled) .header__action-btn,
  .header--transparent.header--hovered:not(.header--toggled) .header__action-link,
  .header--transparent.header--hovered:not(.header--toggled) .header__logo-text { color: #fff !important; }

  /* Mobile menu appearance based on header state */
  .mobile-menu { transition: background 0.2s ease, backdrop-filter 0.2s ease; }
  .mobile-menu.is-open { background: transparent; }
  .header--transparent.header--hovered .mobile-menu.is-open { background-color: rgba(0,0,0,0.30); backdrop-filter: blur(6px); color: #fff; }
  .header--toggled .mobile-menu.is-open,
  .header--light .mobile-menu.is-open { background: #fff; color: #000; }
  .header--toggled .mobile-menu.is-open, .header--light .mobile-menu.is-open { background: #fff !important; color: #000 !important; }

  /* Ensure all menu links and promotional texts are black on white menus */
  .header--toggled .mega-menu,
  .header--light .mega-menu,
  .header--toggled .header__nav-item .header__dropdown,
  .header--light .header__nav-item .header__dropdown,
  .header--toggled .mobile-menu.is-open,
  .header--light .mobile-menu.is-open {
    color: #000 !important;
  }

  .header--toggled .mega-menu a,
  .header--light .mega-menu a,
  .header--toggled .mega-menu .mega-menu__sublink,
  .header--light .mega-menu .mega-menu__sublink,
  .header--toggled .mega-menu .mega-menu__grandchild-link,
  .header--light .mega-menu .mega-menu__grandchild-link,
  .header--toggled .mega-menu .mega-menu__promo-text,
  .header--light .mega-menu .mega-menu__promo-text,
  .header--toggled .header__nav-item .header__dropdown .header__dropdown-link,
  .header--light .header__nav-item .header__dropdown .header__dropdown-link,
  .header--toggled .mobile-menu.is-open a,
  .header--light .mobile-menu.is-open a,
  .header--toggled .mobile-menu.is-open .mobile-menu__sublink,
  .header--light .mobile-menu.is-open .mobile-menu__sublink,
  .header--toggled .mobile-menu.is-open .mobile-menu__grandlink,
  .header--light .mobile-menu.is-open .mobile-menu__grandlink {
    color: #000 !important;
  }

  /* FORCE: Ensure mega-menu and its inner containers are white when header is toggled (scrolled) */
  .header--toggled .mega-menu,
  .header--light .mega-menu {
    background: #ffffff !important;
    color: #000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .header--toggled .mega-menu .mega-menu__inner,
  .header--toggled .mega-menu .mega-menu__links,
  .header--toggled .mega-menu .mega-menu__editorial,
  .header--toggled .mega-menu .mega-menu__promo {
    background: transparent !important;
    color: #000 !important;
  }

  .header--toggled .mega-menu a,
  .header--toggled .mega-menu .mega-menu__sublink,
  .header--toggled .mega-menu .mega-menu__grandchild-link,
  .header--toggled .mega-menu .mega-menu__promo-text {
    color: #000 !important;
  }

  /* Force mobile menu inner container to white when scrolled */
  .header--toggled .mobile-menu.is-open,
  .header--light .mobile-menu.is-open {
    background: #fff !important;
    color: #000 !important;
  }

  .header--toggled .mobile-menu.is-open .mobile-menu__inner,
  .header--toggled .mobile-menu.is-open .mobile-menu__main,
  .header--toggled .mobile-menu.is-open .mobile-menu__bottom {
    background: transparent !important;
    color: #000 !important;
  }

  .header--toggled .mobile-menu.is-open a,
  .header--toggled .mobile-menu.is-open .mobile-menu__sublink,
  .header--toggled .mobile-menu.is-open .mobile-menu__grandlink {
    color: #000 !important;
  }
  
  /* Update children based on parents */
  .header--transparent .header__nav-link,
  .header--transparent .header__mobile-toggle,
  .header--transparent .header__action-btn,
  .header--transparent .header__action-link,
  .header--transparent .header__logo-text { color: #fff; }
  
  .header--toggled .header__nav-link,
  .header--toggled .header__mobile-toggle,
  .header--toggled .header__action-btn,
  .header--toggled .header__action-link,
  .header--toggled .header__logo-text { color: #000; }

  /* Logo Switching */
  .header__logo-image { height: 20px; width: auto; display: none !important; }
  
  /* Transparent header (home page) - show light logo by default */
  .header--transparent .header__logo-image--light { display: block !important; }
  .header--transparent .header__logo-image--dark { display: none !important; }
  
  /* When transparent header is toggled (scrolled/hovered) - show dark logo */
  .header--transparent.header--toggled .header__logo-image--light { display: none !important; }
  .header--transparent.header--toggled .header__logo-image--dark { display: block !important; }
  
  /* Light header (inner pages) - always show dark logo */
  .header--light .header__logo-image--light { display: none !important; }
  .header--light .header__logo-image--dark { display: block !important; }
  
  .header--light { background: #fff; color: #000; }
  .header--light .header__nav-link,
  .header--light .header__mobile-toggle,
  .header--light .header__action-btn,
  .header--light .header__action-link,
  .header--light .header__logo-text { color: #000; }
/* END_SECTION:header */

/* START_SECTION:hero (INDEX:12) */
.hero {
    position: relative;
    /* break out of any centered container to be truly full-bleed */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    /* allow hero to sit under the fixed header by pulling it up */
    margin-top: -72px;
    padding-top: 72px;
    height: var(--hero-height, 100vh);
    min-height: 600px;
    overflow: hidden;
    display: block;
  }

  .hero__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    --image-fit: {{ section.settings.image_fit | default: 'cover' }};
    --image-position: {{ section.settings.image_position | default: 'center' }};
  }

  .hero__background img,
  .hero__image {
    width: 100%;
    height: 100%;
    object-fit: var(--image-fit);
    object-position: var(--image-position);
  }
  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45));
    z-index: 0;
  }

  .hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    color: #fff;
  }

  .hero__title {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: clamp(48px, 8vw, 112px);
    line-height: 0.98;
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
  }

  .hero__subtitle {
    display: none;
  }

  .hero__ctas {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    z-index: 3;
  }

  .hero__cta {
    display: inline-block;
    padding: 14px 42px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.6);
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .hero__cta--outline:hover {
    background: rgba(255,255,255,0.95);
    color: #000;
    border-color: rgba(255,255,255,0.95);
  }

  @media (max-width: 1024px) {
    .hero__title { font-size: clamp(36px, 10vw, 72px); }
    .hero__ctas { bottom: 28px; gap: 12px; }
    .hero__cta { padding: 10px 22px; font-size: 12px; }
  }

  @media (max-width: 768px) {
    .hero {
      height: var(--hero-height-mobile, 100vh);
      min-height: 400px;
    }
    .hero__title { font-size: clamp(28px, 12vw, 40px); }
    .hero__ctas { flex-direction: column; bottom: 20px; }
  }
/* END_SECTION:hero */

/* START_SECTION:lookbook (INDEX:13) */
.lookbook {
    padding: 4rem 0;
  }

  .lookbook__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .lookbook__title {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin: 0 0 3rem 0;
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }

  .lookbook__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .lookbook__item {
    position: relative;
    overflow: hidden;
  }

  .lookbook__item--wide {
    grid-column: span 2;
  }

  .lookbook__item--tall {
    grid-row: span 2;
  }

  .lookbook__image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
  }

  .lookbook__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .lookbook__item:hover .lookbook__image img {
    transform: scale(1.05);
  }

  .lookbook__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
  }

  .lookbook__item-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }

  .lookbook__item-subtitle {
    font-size: 0.875rem;
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
  }

  .lookbook__button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
  }

  .lookbook__button:hover {
    background: white;
    color: black;
  }

  @media (max-width: 768px) {
    .lookbook__container {
      padding: 0 1rem;
    }

    .lookbook__grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .lookbook__item--wide,
    .lookbook__item--tall {
      grid-column: span 1;
      grid-row: span 1;
    }

    .lookbook__content {
      padding: 1.5rem;
    }

    .lookbook__item-title {
      font-size: 1.25rem;
    }
  }
/* END_SECTION:lookbook */

/* START_SECTION:main-policy-essence (INDEX:16) */
/* Reset */
  .essence-policy * { box-sizing: border-box; }

  .essence-policy {
    width: 100%;
    padding: 120px 20px 60px; 
    min-height: 80vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
  }

  .essence-policy__container {
    width: 100%;
    max-width: 838px; 
    padding: 0;
  }

  /* Header */
  .essence-policy__header {
    margin-bottom: 24px;
    border-bottom: 1px solid #000; 
    padding-bottom: 16px;
  }

  .essence-policy__title {
    display: block;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 23px;
    font-weight: 500; 
    letter-spacing: 2.3px;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    text-align: left; 
  }

  /* Content Body */
  .essence-policy__content {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 300; 
    line-height: 14px;
    letter-spacing: 1.54px;
    color: #000000;
  }

  /* Rich Text Elements overrides */
  .essence-policy__content p { margin: 0 0 22px 0; }
  .essence-policy__content h1,
  .essence-policy__content h2,
  .essence-policy__content h3,
  .essence-policy__content h4,
  .essence-policy__content h5,
  .essence-policy__content h6 {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    margin: 30px 0 10px;
    font-size: 13px; 
    letter-spacing: 1.5px;
  }

  .essence-policy__content a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
  }
  .essence-policy__content a:hover { text-decoration: underline; }

  .essence-policy__content ul, 
  .essence-policy__content ol { margin: 0 0 22px 20px; padding: 0; }
  .essence-policy__content li { margin-bottom: 5px; }
  
  .essence-policy__content strong { font-weight: 700; }

  @media (max-width: 768px) {
    .essence-policy {
        padding-left: 20px;
        padding-right: 20px;
    }
    .essence-policy__content p {
      margin-bottom: 14px; /* reduced from 22px for tighter mobile spacing */
      line-height: 1.4;
    }
  }
/* END_SECTION:main-policy-essence */

/* START_SECTION:main-policy-sidebar-essence (INDEX:17) */
/* Reset and Base */
  .essence-policy-sidebar-wrapper * { box-sizing: border-box; }
  
  .essence-policy-sidebar-wrapper {
    width: 100%;
    padding: 120px 40px 60px; 
    min-height: 80vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
  }

  .essence-policy-sidebar__container {
    width: 100%;
    max-width: 1200px; 
    display: flex;
    flex-direction: row;
    position: relative;
  }

  /* --- Sidebar (Desktop) --- */
  .essence-policy-sidebar__menu-container {
    width: 151px; 
    flex-shrink: 0;
    margin-right: 130px; 
    padding-top: 10px; 
  }

  .essence-policy-sidebar__nav {
    position: sticky;
    top: 140px; 
  }

  .essence-policy-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .essence-policy-sidebar__item {
    margin-bottom: 8px;
  }

  .essence-policy-sidebar__link {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: #999; 
    letter-spacing: 1.2px;
    line-height: 18px;
    display: block;
    transition: color 0.2s;
  }

  .essence-policy-sidebar__link.active,
  .essence-policy-sidebar__link:hover {
    color: #000; 
  }

  /* --- Content (Desktop) --- */
  .essence-policy-sidebar__content {
    flex: 1;
    max-width: 838px; 
  }

  .essence-policy-sidebar__header {
    margin-bottom: 24px;
    border-bottom: 1px solid #000;
    padding-bottom: 16px;
  }

  .essence-policy-sidebar__title {
    display: block;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 2.3px;
    text-transform: uppercase;
    color: #000;
    margin: 0;
    line-height: 1.2;
  }

  .essence-policy-sidebar__body {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 300;
    line-height: 14px;
    letter-spacing: 1.54px;
    color: #000;
  }
  
  .essence-policy-sidebar__body p { margin-bottom: 22px; }
  .essence-policy-sidebar__body a { color: #000; text-decoration: none; border-bottom: 1px solid #000; }

  /* --- Mobile Responsive --- */
  @media (max-width: 768px) {
    .essence-policy-sidebar-wrapper {
        padding: 0; 
        display: block;
    }

    .essence-policy-sidebar__container {
        flex-direction: column;
        max-width: 100%;
        padding-top: 83px; 
    }

    /* Mobile Sticky Menu */
    .essence-policy-sidebar__menu-container {
        width: 100%;
        margin-right: 0;
        position: sticky;
        top: 83px; 
        background: #fff;
        z-index: 900;
        padding: 10px 20px;
        border-bottom: 1px solid #eee;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        
        -ms-overflow-style: none; 
        scrollbar-width: none; 
    }
    .essence-policy-sidebar__menu-container::-webkit-scrollbar { 
        display: none; 
    }

    .essence-policy-sidebar__nav { position: static; }

    .essence-policy-sidebar__list {
        display: flex;
        gap: 20px;
        flex-wrap: nowrap;
    }

    .essence-policy-sidebar__item { margin-bottom: 0; }
    
    .essence-policy-sidebar__link {
        font-size: 12px;
        white-space: nowrap;
        padding: 4px 0;
    }

    /* Content adjustments */
    .essence-policy-sidebar__content {
        padding: 40px 20px;
        max-width: 100%;
    }
    .essence-policy-sidebar__body p {
      margin-bottom: 14px; /* reduced from 22px for tighter mobile spacing */
      line-height: 1.4;
    }
  }
/* END_SECTION:main-policy-sidebar-essence */

/* START_SECTION:product-grid (INDEX:21) */
.product-grid {
    padding: 4rem 0;
  }

  .product-grid__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .product-grid__title {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin: 0 0 3rem 0;
    text-transform: uppercase;
    letter-spacing: -0.01em;
  }

  .product-grid__grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-columns, 4), 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .product-card {
    position: relative;
  }

  .product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .product-card__image {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .product-card__link:hover .product-card__image img {
    transform: scale(1.05);
  }

  .product-card__title {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .product-card__price {
    font-size: 0.875rem;
    font-weight: 400;
  }

  .product-card__price--sale {
    color: #d32f2f;
    font-weight: 500;
  }

  .product-card__price--original {
    text-decoration: line-through;
    color: #666;
    margin-left: 0.5rem;
  }

  .product-grid__footer {
    text-align: center;
  }

  .product-grid__button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid black;
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
  }

  .product-grid__button:hover {
    background: black;
    color: white;
  }

  @media (max-width: 1024px) {
    .product-grid__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .product-grid__container {
      padding: 0 1rem;
    }

    .product-grid__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .product-grid__title {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }
  }

  @media (max-width: 480px) {
    .product-grid__grid {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:product-grid */

/* START_SECTION:product-recommendations (INDEX:22) */
.product-recommendations {
    padding: 100px 50px;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .product-recommendations__title {
    font-family: 'Optima-FG', sans-serif;
    font-size: 15px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
  }

  .product-recommendations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .product-card__image-wrapper {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f4f4f4;
    margin-bottom: 20px;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
  }

  .product-card__title {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 400;
  }

  .product-card__price {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    color: #757575;
  }

  @media (max-width: 768px) {
    .product-recommendations {
      padding: 60px 20px;
    }
    .product-recommendations__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
/* END_SECTION:product-recommendations */

/* START_SECTION:product (INDEX:23) */
/* --- Fonts --- */
  @font-face {
    font-family: 'Optima';
    src: url('OPTIMA.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'HelveticaNeueLTPro-Cn';
    src: url('HelveticaNeueLTPro-Cn.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  /* --- Layout & Grid --- */
  .product {
    padding-bottom: 0;
  }

  .product__container {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    align-items: start;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* --- Gallery --- */
  .product__gallery {
    padding: 0 40px 100px 50px;
    margin-top: 50px;
  }

  .product__gallery-scroller {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  @media (min-width: 769px) {
    /* Desktop: show only the active gallery image to avoid page scrolling */
    .product__gallery-scroller { display: block; }
    .product__image { display: none; }
    .product__image.active { display: block; }
    .product__gallery-dots { position: relative; }
  }

  .product__image {
    width: 100%;
    display: block;
    overflow: visible; /* Prevent any accidental clipping */
  }

  .product__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensure full image is shown within container width */
    max-height: none; /* No height restriction to prevent cropping */
  }

  .product__gallery-dots { display: none; }

  /* --- Details Column --- */
  .product__info {
    margin-top: 13vh;
    padding: 0 50px 100px 40px;
    position: relative;
  }

  .product__info-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    max-width: 516px;
    margin-left: auto;
    margin-right: auto;
    height: fit-content;
  }

  .product__header {
    margin-bottom: 24px;
    z-index: 10;
    position: relative;
  }

  .product__vendor {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.1px;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    color: #000 !important;
    display: block !important;
  }

  .product__collection {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.1px;
    margin: 4px 0 16px 0;
    text-transform: uppercase;
  }
  .product__collection a { color: #000; text-decoration: none; }
  .product__tags {
    margin: 4px 0 16px 0;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
  }
  .product__tag { color: #000; text-decoration: none; margin-right: 8px; }
  .product__tag:hover { text-decoration: underline; }

  .product__title {
    font-family: 'Optima', serif;
    font-size: 22.25px;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 12px 0;
    text-transform: none;
    color: #000 !important;
    display: block !important;
  }

  .product__price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
  }

  .product__price {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11.8px;
    font-weight: 400;
    color: #757575;
    text-transform: uppercase;
  }

  .product__tax-note {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 9px;
    color: #757575;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .product__description {
    margin-top: 40px;
    font-family: 'Optima', serif;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 60px;
    max-width: 440px;
    color: #000;
  }

  /* Short description (SEO-friendly teaser under title) */
  .product__short-description {
    font-family: 'Optima', serif;
    font-size: 14px;
    line-height: 20px;
    margin-top: 8px;
    margin-bottom: 18px;
    max-width: 520px;
    color: #222;
  }
  .product__short-description p { margin: 0; }

  /* --- Forms & Selectors --- */
  /* Side-by-side Selectors */
  .product__selectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
    border: 1px solid #e5e5e5;
  }

  .product__form-wrapper {
      margin-bottom: 8px; /* Reduced for size chart alignment */
  }

  .product__selector {
    padding: 14px 16px;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: background 0.2s;
  }
  .product__selector:hover { background: #f9f9f9; }

  .product__selector--color { border-right: 1px solid #e5e5e5; }
  .product__selector--full { grid-column: span 2; border-right: none; }

  .product__selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
  }

  .product__selector-label {
    display: block;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 10px;
    color: #757575;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .product__selector-value-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .product__selector-value {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
  }

  .product__selector-chevron {
    width: 10px;
    height: 6px;
    color: #000;
  }

  /* Size Chart Wrapper */
  .product__size-chart-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
  }

  .product__size-guide-trigger {
    background: none;
    border: none;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 10px;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 0;
  }

  /* Side Drawers Styling */
  .product-drawer-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100dvh;
    background: rgba(0,0,0,0.5); z-index: 1200;
    opacity: 0; visibility: hidden; transition: opacity 0.3s;
    backdrop-filter: blur(5px);
  }
  .product-drawer-backdrop.is-open { opacity: 1; visibility: visible; }

  .product-drawer {
    position: fixed; top: 0; right: 0; width: 450px; max-width: 100%; height: 100dvh;
    background: #fff; z-index: 1201;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column;
  }
  .product-drawer.is-open { transform: translateX(0); }

  .product-drawer__header { padding: 30px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; }
  .product-info-drawer-header { padding: 24px 30px; border-bottom: none; }
  .product-drawer__title { font-family: 'HelveticaNeueLTPro-Cn', sans-serif; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0; font-weight: 500; }
  .product-info-drawer-header .product-drawer__title { font-family: 'Optima', serif; font-size: 14px; letter-spacing: 0.5px; font-weight: 400; }
  .product-drawer__close { font-size: 30px; line-height: 1; background: none; border: none; cursor: pointer; }

  /* Tab Navigation inside Drawer */
  .product-drawer__tabs-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 30px 15px;
    border-bottom: 1px solid #eee;
  }
  .product-drawer__tab-btn {
    background: none;
    border: none;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #999;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .product-drawer__tab-btn:hover { color: #000; }
  .product-drawer__tab-btn.active {
    color: #000;
  }
  .product-drawer__tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
  }

  .product-drawer__content { flex: 1; overflow-y: auto; padding: 20px 0; }

  .product-drawer__tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
  }
  .product-drawer__tab-panel.active {
    display: block;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .product-drawer__tab-inner {
    padding: 30px;
  }

  .product-drawer__panel-title {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: #757575;
    margin-bottom: 24px;
    text-transform: uppercase;
  }

  .product-drawer__tab-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .product-drawer__tab-header .product-drawer__panel-title { margin-bottom: 0; }

  /* Unit Switcher Styling */
  .product-drawer__unit-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 10px;
    color: #999;
  }
  .unit-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font: inherit;
    transition: color 0.2s;
  }
  .unit-btn.active {
    color: #000;
    font-weight: 500;
  }
  .unit-separator { color: #eee; }

  .product-drawer__measure-text {
    font-size: 11px;
    line-height: 1.6;
    color: #757575;
    max-width: 320px;
  }

  /* Size Guide Table Styles - Aggressive Overrides */
  .product-drawer__tab-panel table,
  .size-chart-table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif !important;
    margin-bottom: 30px !important;
    background: #fff;
  }

  .product-drawer__tab-panel th,
  .size-chart-table th {
    text-align: center;
    padding: 14px 10px;
    font-size: 9px;
    letter-spacing: 1px;
    font-weight: 400;
    color: #999;
    border-bottom: 1px solid #f2f2f2;
    text-transform: uppercase;
  }

  .product-drawer__tab-panel th:first-child,
  .size-chart-table th:first-child { text-align: left; padding-left: 0; }

  .product-drawer__tab-panel td,
  .size-chart-table td {
    padding: 18px 10px;
    font-size: 11px;
    color: #000;
    text-align: center;
    border-bottom: 1px solid #f7f7f7;
    font-weight: 400;
  }

  .product-drawer__tab-panel td:first-child,
  .size-chart-table td:first-child {
    text-align: left;
    padding-left: 0;
    font-weight: 400;
    color: #757575;
    width: 100px;
  }

  .product-drawer__tab-panel tr:last-child td,
  .size-chart-table tr:last-child td { border-bottom: none; }

  /* RTE cleanup inside drawer */
  .product-drawer__tab-panel .rte p {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
  }

  .product-drawer__options { display: flex; flex-direction: column; }
  .product-drawer__option {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s;
  }
  .product-drawer__option:hover { background: #f9f9f9; }
  .product-drawer__option.selected { background: #f5f5f5; font-weight: 600; }
  .product-drawer__option.disabled { opacity: 0.4; cursor: not-allowed; }
  .product-drawer__option-status { font-size: 10px; color: #757575; }

  /* Add to Cart */
   .product__add-to-cart {
    width: 100%;
    margin-top: 24px;
    height: 50px;
    background-color: #000;
    color: #fff;
    border: none;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .product__add-to-cart:hover:not(:disabled) {
     background-color: #333;
  }
  .product__add-to-cart:disabled {
     background-color: #B2B2B2; /* Matching FOG reference grey */
     color: #fff;
     cursor: not-allowed;
  }

  /* Accordions & Tabs */
  .product__blocks { margin-top: 40px; border-top: 1px solid #e5e5e5; }

  .product__accordion {
    border-bottom: 1px solid #e5e5e5;
  }

  .product__accordion summary {
    padding: 16px 0;
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #000;
  }

  .product__accordion-title {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: inherit;
  }

  /* Use Optima for accordion titles for visual consistency */
  .product__accordion-title {
    font-family: 'Optima', serif;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
  }

  .product__accordion-toggle {
    margin-left: 8px; /* keep toggle close to title */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 4px;
    font-size: 16px;
    color: #000;
  }

  .product__accordion-toggle::before {
    content: '+';
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1), font-size 0.35s cubic-bezier(0.2, 0, 0, 1);
    font-weight: 600;
  }

  .product__accordion[open] .product__accordion-toggle::before {
    content: '-';
    transform: scale(1.1);
    font-size: 18px;
  }

  /* Smooth open/close for accordion content */
  .product__accordion .product__accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.45s cubic-bezier(0.2, 0, 0, 1), opacity 0.45s cubic-bezier(0.2, 0, 0, 1), transform 0.45s cubic-bezier(0.2, 0, 0, 1);
  }
  .product__accordion[open] .product__accordion-content {
    max-height: 1000px; /* large enough for most content */
    opacity: 1;
    transform: translateY(0);
  }

  .product__accordion summary::-webkit-details-marker { display: none; }
  .product__accordion summary span { font-size: 14px; color: #757575; }

  .product__accordion-content {
      padding-bottom: 24px;
      font-family: 'Optima', serif;
      font-size: 14px;
      line-height: 21px;
      color: #000;
  }

  .product__share-links {
    display: flex;
    gap: 24px;
  }
  .product__share-link {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.1em;
  }
  .product__share-link:hover { text-decoration: underline; }

  .product__details-item {
    margin-bottom: 8px;
  }
  .product__details-item strong {
    font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
    font-size: 11px;
    letter-spacing: 0.05em;
    font-weight: 500;
  }

  /* --- MOBILE RESPONSIVE --- */
  @media (max-width: 768px) {
    .product__container {
      grid-template-columns: 1fr;
      display: block;
    }

    .product__gallery {
      padding: 0;
      margin-top: 80px;
    }

    .product__gallery-scroller {
      flex-direction: row;
      overflow-x: scroll;
      scroll-snap-type: x mandatory;
      gap: 0;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .product__gallery-scroller::-webkit-scrollbar { display: none; }

    .product__image {
      min-width: 100vw;
      width: 100vw;
      scroll-snap-align: start;
    }

    .product__info {
      margin-top: 30px;
      padding: 0 20px 180px;
    }
    .product__info-inner {
      position: static;
      max-width: 100%;
    }

    .product__vendor { font-size: 11px; margin-bottom: 8px; }
    .product__title { font-size: 21px; line-height: 26px; }
    .product__price { margin-bottom: 30px; }

    /* STICKY BOTTOM BAR */
    .product__form-sticky-bar {
       position: fixed;
       bottom: 0;
       left: 0;
       width: 100%;
       z-index: 1000;
       background: rgba(237, 237, 237, 0.85);
       backdrop-filter: blur(10px);
       -webkit-backdrop-filter: blur(10px);
       padding-bottom: env(safe-area-inset-bottom);
       border-top: 1px solid rgba(0,0,0,0.05);
    }

    .product__selectors {
       border: none;
       border-bottom: 1px solid rgba(0,0,0,0.05);
       background: transparent;
    }
    .product__selector {
      background: transparent;
      border: none;
      padding: 16px 20px;
    }
    .product__selector--color {
      border-right: 1px solid rgba(0,0,0,0.05);
    }

    .product__add-to-cart {
       height: 60px;
       font-size: 12px;
       background: #AFAFAF;
       border: none;
       letter-spacing: 2px;
    }

    /* Mobile Size Sheet */
    .product__selector--size.active .product__size-grid {
        display: block;
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        border: none;
        background: #fff;
        padding: 0 0 env(safe-area-inset-bottom);
        animation: slideUp 0.3s ease;
        z-index: 1100;
    }

    .product__size-header-mobile {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 20px;
       border-bottom: 1px solid #eee;
       font-family: 'HelveticaNeueLTPro-Cn', sans-serif;
       font-size: 11px;
       letter-spacing: 1px;
       color: #000;
    }

    .product__size-close {
      font-size: 28px;
      background: none;
      border: none;
      padding: 0;
      line-height: 1;
      cursor: pointer;
    }

    .product__size-option {
       padding: 20px;
       border-bottom: 1px solid #eee;
    }

    .product__size-backdrop.active {
       display: block;
       position: fixed;
       top: 0; left: 0; width: 100%; height: 100vh;
       background: rgba(0,0,0,0.4);
       z-index: 1050;
    }

    @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

    @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

    .product__size-guide-trigger { font-size: 9px; }
    /* Visually hide short description on mobile but keep it in the DOM
       so search engines and screen readers can still access the content. */
    .product__short-description {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0 0 0 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }
  }
/* END_SECTION:product */

/* START_SECTION:recently-viewed (INDEX:24) */
.recently-viewed {
    padding: 100px 50px;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .recently-viewed__title {
    font-family: 'Optima-FG', sans-serif;
    font-size: 15px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
  }

  .recently-viewed__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  @media (max-width: 768px) {
    .recently-viewed {
      padding: 60px 20px;
    }
    .recently-viewed__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
/* END_SECTION:recently-viewed */

/* START_SECTION:search (INDEX:25) */
.search {
    padding: 100px 0 4rem;
  }

  .search__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .search__title {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin: 0 0 3rem 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
  }

  .search__form {
    display: flex;
    max-width: 600px;
    margin: 0 auto 3rem;
    border-bottom: 1px solid #000;
    padding-bottom: 1rem;
  }

  .search__input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.125rem;
    padding: 0.5rem 0;
    outline: none;
  }

  .search__input::placeholder {
    color: #666;
  }

  .search__button {
    border: none;
    background: transparent;
    color: #000;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0.5rem 0;
  }

  .search__results-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .search__results-header p {
    font-size: 1rem;
    color: #666;
    margin: 0;
  }

  .search__results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .search-result {
    display: flex;
    flex-direction: column;
  }

  .search-result__image {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1rem;
    text-decoration: none;
    display: block;
  }

  .search-result__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .search-result__image:hover img {
    transform: scale(1.05);
  }

  .search-result__title {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .search-result__title a {
    text-decoration: none;
    color: inherit;
  }

  .search-result__price {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .search-result__price--sale {
    color: #000;
  }

  .search-result__price--original {
    color: #666;
    text-decoration: line-through;
    margin-left: 0.5rem;
  }

  .search-result__excerpt {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

  .search__no-results {
    text-align: center;
    padding: 4rem 0;
  }

  .search__no-results p {
    font-size: 1.125rem;
    color: #666;
    margin: 0 0 2rem 0;
  }

  .search__browse-all {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
  }

  .search__browse-all:hover {
    background: #000;
    color: #fff;
  }

  .search__pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }

  @media (max-width: 768px) {
    .search {
      padding: 2rem 0;
    }

    .search__container {
      padding: 0 1rem;
    }

    .search__title {
      font-size: 1.5rem;
    }

    .search__form {
      flex-direction: column;
      gap: 1rem;
      max-width: 100%;
    }

    .search__results {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1.5rem;
    }
  }
/* END_SECTION:search */

/* START_SECTION:shop-the-look (INDEX:26) */
.stl-section {
    width: 100%;
    background-color: #ffffff;
    /* border-bottom removed to fix gap */
  }

  .stl-container {
    display: flex;
    width: 100%;
    height: auto; 
    min-height: 700px;
  }

  /* Left Column */
  .stl-image-container {
    width: 42%; /* FOG Ratio */
    position: relative;
    overflow: hidden;
    background-color: #f4f4f4;
  }

  .stl-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    display: block; /* Fixes sub-pixel gap */
    vertical-align: middle; /* Ensures no baseline gap */
    aspect-ratio: 2/3; 
  }

  /* Right Column */
  .stl-products-container {
    width: 58%; /* Remaining width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 64px; /* FOG Column Gap */
    padding-right: 0;
    position: relative;
  }

  .stl-heading {
    font-family: 'Optima-FG', sans-serif;
    font-size: 25px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
    color: #000;
  }

  /* Carousel/Grid Wrapper */
  .stl-carousel-wrapper {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
  }

  .stl-carousel {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
  }
  
  .stl-carousel::-webkit-scrollbar {
    display: none;
  }

  .stl-carousel__track {
    display: flex;
    gap: 8px; /* FOG Tight Grid */
    padding-bottom: 20px;
  }

  .stl-card {
    flex: 0 0 500px; 
    min-width: 300px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stl-card__image-wrapper {
    width: 100%;
    aspect-ratio: 3/4; /* Taller product cards */
    background-color: #f4f4f4;
    margin-bottom: 20px;
    overflow: hidden;
  }

  .stl-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
  }

  .stl-card__info {
    text-align: center;
  }

  .stl-card__title {
    font-family: 'Optima-FG', sans-serif; 
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    color: #000;
  }
  
  .placeholder {
      background-color: #eee;
      color: #999;
  }

  /* Arrows */
  .stl-arrow {
      background: none;
      border: none;
      cursor: pointer;
      color: #000;
      padding: 10px;
      z-index: 2;
      opacity: 0.5;
      transition: opacity 0.2s;
      flex-shrink: 0;
  }
  .stl-arrow:hover { opacity: 1; }
  .stl-arrow--left { margin-right: 10px; }
  .stl-arrow--right { margin-left: 10px; }


  /* Mobile */
  @media (max-width: 768px) {
    .stl-container {
      flex-direction: column;
      height: auto;
      max-height: none;
    }
    
    /* Ensure image shows first */
    .stl-image-container {
      order: -1; 
      width: 100%;
      height: auto; 
    }
    .stl-image {
        height: auto;
        aspect-ratio: auto;
    }

    .stl-products-container {
      width: 100%;
      padding: 40px 20px;
    }

    .stl-card {
      flex: 0 0 75%; 
    }
    
    /* Hide arrows on mobile, let touch scroll */
    .stl-arrow { display: none; }
  }
/* END_SECTION:shop-the-look */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:27) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:28) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:31) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */