/** Shopify CDN: Minification failed

Line 1026:5 Cannot use type selector "--empty" directly after nesting selector "&"

**/
/* General */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
.article__author-bio h3,
.blog-section .article__image .article__tags {
  text-transform: none;
}

/* pre-footer */
.index-newsletter
  .wrapper--full
  .brick__block:first-child
  .brick__block__text:not(.has-padding) {
  padding-left: 0;
}

@media only screen and (min-width: 750px) {
  .index-newsletter {
    .three-fifty-height-hero {
      min-height: 253px;
    }
  }
}

/* Footer */
.footer__block__title {
  margin: 0;
}

.footer__quicklinks li {
  margin: 0;
}

.footer__quicklinks li:last-child {
  margin-bottom: 0;
}

.footer__quicklinks li a::after {
  height: 0;
  transition: none;
}

.footer__quicklinks--underline-enabled li a::after {
  height: 1px;
  transition: width 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.supporting-menu__copyright {
  --gap-offset: 0;
}

.supporting-menu__copyright li {
  padding: 0;
}

.supporting-menu__payment li {
  padding: 0;
}

@media only screen and (max-width: 479px) {
  .footer__blocks {
    margin: 0;
  }
}

@media only screen and (max-width: 749px) {
  .footer__blocks {
    padding: 0;
  }
}

@media only screen and (min-width: 750px) {
  .footer__block {
    padding: 0;
  }
}
/* Product grid item */
.product-item__info {
  padding: 17px 0px 20px 25px;

  .product-item__title {
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  .product-item__info {
    padding-top: 10px;
    padding-left: 10px;
  }
}

.collection__products .grid {
  padding-top: 5px;
}

/* Collection */
.collection__nav {
  @media only screen and (min-width: 768px) {
    border-bottom: 0;
  }

  .popout--group .popout__toggle,
  .popout--sort .popout__toggle {
    border-right: 0;
    border-left: 0;
    padding: 20px;
  }

  @media only screen and (max-width: 768px) {
    .popout--group .popout__toggle,
    .popout--sort .popout__toggle {
      padding: 10px;
    }
  }

  .popout--group .popout__toggle {
    font-size: 15px;
    font-weight: 500;
  }

  .popout--sort .popout__toggle {
    font-size: 15px;
    font-weight: 400;
  }

  @media only screen and (max-width: 768px) {
    .popout--sort .popout__toggle {
      font-weight: 500;
    }
  }

  .popout__toggle .icon-nav-arrow-down {
    --icon-size: 20px;
    margin-left: 0;
  }
}

.collection__sidebar {
  padding-top: 0;
  @media only screen and (min-width: 750px) {
    .collection__filters {
      --padding: 0;
    }
  }

  .filter-group {
    border-bottom: 1px solid var(--br-black);
    padding-bottom: 16px;
  }

  .filter-group__heading {
    padding-top: 16px;
    padding-bottom: 0px;

    .icon {
      --icon-size: 32px;
      top: 32px;
    }
  }

  ul.collection-nav > li.sidebar__item:first-child {
    margin-top: 0;
  }

  .sidebar__item {
    margin-top: 16px;
  }

  .filter-group__heading {
    border-bottom: none;
  }

  .collection__filters .filter-group {
    margin-top: 0;
  }

  .icon-toggle--minus {
    display: none;
  }

  .icon-toggle--plus {
    display: block;
  }

  details[open] .icon-toggle--plus {
    display: none;
  }

  details[open] .icon-toggle--minus {
    display: block;
  }
}

.collection__sidebar__head {
  padding-bottom: 40px;
  border-bottom: 0;

  @media only screen and (min-width: 768px) {
    padding-right: 30px;
    padding-left: 30px;
  }

  @media only screen and (max-width: 768px) {
    padding-bottom: 20px;
  }

  @media only screen and (min-width: 768px) {
    .collection__sidebar__close {
      right: 20px;
      top: 42%;
      --icon-size: 26px;
    }
  }

  @media only screen and (max-width: 768px) {
    .collection__sidebar__close {
      right: 10px;
    }
  }

  h3 {
    font-family: var(--FONT-STACK-HEADING);
    font-weight: 400;
    font-size: var(--font-heading-large);
  }
}

/* Pagination */

.pagination-custom {
  .is-hidden {
    visibility: visible;
    max-height: 100%;
    overflow: auto;
    opacity: 1;
    transition:
      opacity 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
      visibility 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .pagination-custom__inner {
    margin: 0 40px;

    .pagination-custom__page--active {
      box-shadow: none;
      border-bottom: 1px solid var(--br-black);
    }

    .pagination-custom__page {
      margin: 0 15px;
      &:not(.pagination-custom__page--active) {
        color: var(--br-gray);
      }
    }
  }

  @media only screen and (max-width: 479px) {
    .pagination-custom__prev span,
    .pagination-custom__next span {
      display: block;
    }

    .pagination-custom__inner {
      margin: 0 20px;
    }
  }
}

/* Accordions */

.product__block--accordion {
  details.accordion {
    .accordion__title {
      padding-top: 20px;
      padding-bottom: 20px;
      position: relative;

      .accordion-icon-plus,
      .accordion-icon-minus {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);

        transition: opacity 0.2s ease-in-out;
      }
    }

    &:not([open]) {
      summary {
        .accordion-icon-plus {
          opacity: 1;
          pointer-events: auto;
        }

        .accordion-icon-minus {
          opacity: 0;
          pointer-events: none;
        }
      }
    }

    &[open] {
      summary {
        .accordion-icon-plus {
          opacity: 0;
          pointer-events: none;
        }

        .accordion-icon-minus {
          opacity: 1;
          pointer-events: auto;
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .block-padding {
    margin-bottom: var(--block-padding-bottom-mobile);
  }
}

.product__selectors .radio__fieldset-brosway {
  padding-top: 0;
}

.radio__fieldset-brosway {
  display: flex;
  flex-direction: column;
  gap: 15px;

  .radio__legend__label {
    justify-content: space-between;
  }

  .radio__buttons {
    display: flex;
    gap: 8px;
    margin: 0;
  }

  @media screen and (max-width: 768px) {
    .radio__buttons {
      flex-wrap: wrap;
    }
  }

  .radio__button {
    padding: 0;
    & > label {
      width: 67px;
      height: 40px;
      align-items: center;
      display: flex;
      justify-content: center;

      &:hover {
        background: var(--BTN-ON-LIGHT-HOVER-BG);
        border-color: var(--BTN-ON-LIGHT-HOVER-BORDER);
        color: var(--BTN-ON-LIGHT-HOVER-TEXT);
      }
    }

    input:not(:checked) + label {
      background: var(--btn-bg);
      border-color: var(--br-gray-light);
      color: var(--br-black);
      font-weight: 300;
    }

    input.disabled + label {
      background: var(--btn-bg);
      border: none;
      color: var(--br-gray-mid);
      text-decoration: line-through;
    }

    input:checked + label,
    input:checked ~ label {
      background: var(--btn-bg);
      border-color: var(--btn-border);
      color: var(--br-black);
      font-weight: 500;
    }
  }
}
/* Gallery */

.product__wrapper--grid-brosway {
  padding: 5px;
  margin: 0;

  @media screen and (min-width: 768px) {
    .product__wrapper__inner {
      max-width: none;
    }

    .product__page {
      grid-template-columns: 6fr 4fr;
    }

    .product__images {
      overflow: hidden;
      grid-column: 1 / 2;
    }

    .product__content {
      padding-left: 25px;
      padding-right: 20px;
      grid-column: 2 / 3;
    }

    .product__slides {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 5px;
      width: 100%;

      > * {
        aspect-ratio: 1 / 1;
        overflow: hidden;
        position: relative;
        display: block;

        &:nth-child(3n) {
          grid-column: 1 / -1;
          aspect-ratio: 1 / 1;
        }

        /* Avoid empty hole: if the last item would sit alone in a 2-col
           row (item count ≡ 1 mod 3), make it span the full width. */
        &:last-child:nth-child(3n + 1) {
          grid-column: 1 / -1;
          aspect-ratio: 1 / 1;
        }
      }
    }
  }

  @media screen and (max-width: 768px) {
    .product__content {
      padding-left: 20px;
      padding-right: 20px;
    }

    .product__images--mobile-brosway-slider {
      .product__slides {
        padding-left: 0;
        margin-left: 0;
        margin-right: 0;
  
        > .product__slide {
          aspect-ratio: 1 / 1;
          height: auto;
          position: relative;
          overflow: hidden;
          width: 100%;
  
          .product__photo,
          .image-wrapper,
          img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            aspect-ratio: unset;
            --aspect-ratio: unset;
          }

          img {
            object-fit: cover; 
            object-position: center;
          }
        }
      }
    }
  }

  .image-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .image-slider::-webkit-scrollbar {
    display: none;
  }

  .image-slider img {
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .progress-track {
    width: auto;
    height: 1px;
    background-color: var(--br-gray-soft);
    margin: 5px -5px;
  }

  .progress-indicator {
    height: 100%;
    width: 0%;
    background-color: var(--br-black);
    border-radius: 2px;
    transition: width 0.1s ease-out;
  }
}

/* Product siblings */
.product__siblings  {
  .radio__buttons {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
  
    tooltip-component {
      &:has(.sibling__link--current) {
        order: -1 !important;
      }
    }
  }
  
  .swatch__button--brosway input ~ label,
  .swatch__button--brosway .sibling__link,
  .swatch__button--brosway .swatch__link {
    width: 66px;
    height: 66px;
  }

  .swatch__button--brosway {
    .sibling__link--current {
      width: 66px;
      height: 66px;
      margin: 0;
      padding: 2px;
      border: 1px solid var(--br-black);
    }

    .sibling__link--sold-out {
      content: "";
      transform-origin: none;
    }
  }

  /* Colored hex swatch dots */
  .swatch__button--hex .sibling__link--sold-out::before {
    display: none; /* no sold-out bar on color dots */
  }

  .swatch__button--hex .sibling__link--current::after {
    opacity: 1;
    background: transparent;
    border: 1px solid var(--br-black);
  }
}

/* Customer orders page (templates/page.orders.json) */
.customer-orders__back,
.pi-order-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.pi-order-back {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.pi-order-row {
  cursor: pointer;
}

/* Back in stock drawer - privacy checkbox alignment.
   Overrides .form-field label (absolute/floating) and
   .product__notification label (display:block) which break the inline layout. */
.product__notification .product__notification__privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product__notification .product__notification__privacy input[type="checkbox"] {
  flex: 0 0 auto;
  margin: 2px 0 0;
}

.product__notification .product__notification__privacy label {
  position: static;
  opacity: 1;
  z-index: auto;
  top: auto;
  left: auto;
  display: inline;
  margin: 0;
  padding: 0;
  background: transparent;
  line-height: 1.4;
}



.sliderow__back-button + .sliderow__title {
  cursor: pointer;
  font-family: var(--FONT-STACK-NAV);
  font-style: var(--FONT-STYLE-NAV);
  font-weight: 200;
  letter-spacing: auto;
  padding: 0 calc(var(--inner) + 30px);
}

.sliderow--back .sliderow__title {
  justify-content: left;
  padding-left: 55px;
}

/* Drawer empty */
.drawer__empty {
  .drawer__empty__message {
    font-weight: 400;
    font-size: var(--font-heading-small);
    color: var(--br-black);
  }
}

/* Cart empty */
.cart__empty {
  .cart__title  {
    font-weight: 500;
    font-size: var(--font-heading-medium);
    color: var(--br-black);
  }

  .cart__empty__message {
    font-weight: 400;
    font-size: var(--font-heading-small);
    color: var(--br-black);
  }
}

/* PDP price stays fully visible (no dimming) when the variant is sold out.
   Base theme dims .product__price to 0.3 via .variant--soldout/.variant--unavailable. */
.variant--soldout .product__price,
.variant--unavailable .product__price {
  opacity: 1 !important;
}

/* Newsletter consent checkboxes — transparent bg, inherited (white) border */
.newsletter-consent__checkbox {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  margin: 4px 0 0 !important;
  flex-shrink: 0;
  cursor: pointer;
  color: inherit;
  background: transparent !important;
  border: 1px solid currentColor !important;
  border-radius: 0 !important;
}
.newsletter-consent__checkbox:checked {
  background: currentColor !important;
}

/* Accordion technical details (metals -> technical_detail metaobject) */
.tech-detail + .tech-detail {
  margin-top: 16px;
}
.tech-detail__title {
  margin: 0 0 4px;
}
.tech-detail__desc {
  color: var(--text);
}

/* Shop the look skeleton (loading placeholder) */
.stl-skel {
  position: relative;
  overflow: hidden;
  background: var(--bg-accent, #e9e5dd);
  border-radius: 2px;
}
.stl-skel::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(98deg, var(--bg-accent, #e9e5dd) 16%, var(--bg-accent-lighten, #f3efe8) 32%, var(--bg-accent, #e9e5dd) 48%);
  animation: shimmer 1.6s linear infinite forwards;
}

/* Cart drawer */
/* Cart items must scroll when taller than available space.
   Base .drawer__body is overflow:hidden; the body is the intended
   scroller (flex:1, min-height:0, data-scroll-lock-scrollable). */
.drawer--cart .drawer__body {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer__inner {
  background-color: var(--br-white);

  .drawer__head,
  .cart__item {
    padding: 20px 30px;

    @media screen and (max-width: 768px) {
      padding: 20px 15px;
    }
  }

  .cart__item {
    justify-content: space-between;
  }

  .cart__item__image {
    a {
      width: 130px;
      height: 130px;
    }
  }

  .cart__item__title {
    font-weight: 500;
  }

  .cart__price {
    font-weight: 400;
    font-size: var(--font-heading-mini);
  }

  .cart__item__meta {
    font-size: var(--font-heading-mini);
  }

  .cart__quantity-counter {
    height: 100%;
  }

  .cart__quantity {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    
    .cart__quantity-field {
      font-size: 13px;
      border: 0;
      padding: 0;
      font-weight: 400;
    }

    .icon {
      --icon-size: 30px;
      color: var(--br-black);
      stroke: var(--br-black);
      stroke-width: 1px;
    }
  }

  @media only screen and (max-width: 479px) {
    .cart__quantity {
        width: auto;
    }
  }

  .cart__item__content {
    flex: 1;
    width: fit-content;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
  }

  .cart__item__content__right {
    display: flex;
    justify-content: space-between;
  }
  
  .drawer__head.cart-block--top {
    background-color: var(--br-white);
  }

  .cart__item__meta:last-child {
    margin-bottom: 8px;
  }

  .cart__foot__inner {
    padding: 20px;
    border-top: 1px solid var(--br-black);

    .cart__total {
      .cart__total__label {
        font-size: var(--font-heading-small);
        font-weight: 400;
      }
      .cart__total__price {
        font-size: var(--font-heading-small);
        font-weight: 500;
      }
    }

    .cart__note {
      font-size: var(--font-heading-mini);
    }
  }
}

/* Cart */
.cart-holder {
  background-color: var(--br-white);
}

.cart {
  background-color: var(--br-white);
  .cart__item__content {
    display: flex;
  }

  .cart__item__content__left {
    flex: 1;
    align-items: flex-start;

    .cart__item__content-inner {
      width: 100%;
    }
  }

  .cart__quantity-counter {
    height: 100%;
  }

  .cart__quantity {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    
    .cart__quantity-field {
      font-size: 13px;
      border: 0;
      padding: 0;
      font-weight: 400;
    }

    .icon {
      --icon-size: 30px;
      color: var(--br-black);
      stroke: var(--br-black);
      stroke-width: 1px;
    }
  }

  @media only screen and (max-width: 479px) {
    .cart__quantity {
        width: auto;
    }
  }

  .cart__price {
    width: 100%;
    text-align: left;
    padding: 0;
    font-weight: 400;
    font-size: var(--font-heading-mini);
  }

  .cart__item__title {
    font-weight: 500;
  }

  .cart__item__content__right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: stretch;
  }
}

/* 404 */

.page-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  
  .page-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--br-white);
  }
}

/* Rich text — subheading block: raise specificity so section editor utilities beat .hero__subheading tokens (theme.css) */
.index-rte {
  .hero__subheading {
    &.heading-x-mini {
      font-size: var(--font-heading-x-mini);
    }
    &.heading-mini {
      font-size: var(--font-heading-mini);
    }
    &.heading-x-small {
      font-size: var(--font-heading-x-small);
    }
    &.heading-small {
      font-size: var(--font-heading-small);
    }
    &.heading-medium {
      font-size: var(--font-heading-medium);
    }
    &.heading-large {
      font-size: var(--font-heading-large);
    }
    &.heading-x-large {
      font-size: var(--font-heading-x-large);
    }
    &.heading-xx-large {
      font-size: var(--font-heading-xx-large);
    }
    &.font-brother {
      font-family: var(--FONT-STACK-BODY);
    }
    &.font-ivy {
      font-family: var(--FONT-STACK-HEADING);
    }
    &.font-w-light {
      font-weight: 300;
    }
    &.font-w-regular {
      font-weight: 400;
    }
    &.font-w-medium {
      font-weight: 500;
    }
    &.font-w-bold {
      font-weight: 700;
    }
    &:is(.heading-x-mini, .heading-mini, .heading-x-small, .heading-small, .heading-medium, .heading-large, .heading-x-large, .heading-xx-large) {
      letter-spacing: normal;
      text-transform: none;
      font-style: normal;
    }
  }
}

/* Predictive search & search popdown */

.search-outer {
  margin-top: var(--outer);
}

.search-popdown {
  background: var(--br-white, #fff);

  .search-popdown__main {
    padding-inline: var(--outer);
  }

  .search-popdown__submit,
  .search-popdown__close__button {
    color: var(--br-black, #000);
  }


  .predictive-search {
    --results-max-height: calc(
      var(--full-screen, 100vh) - var(--header-height, 0px) - var(--announcement-height, 0px)
    );

    height: auto;
    min-height: 0;
    max-height: var(--results-height, var(--results-max-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    @media only screen and (min-width: 990px) {
      --results-max-height: min(
        75vh,
        calc(
          var(--full-screen, 100vh) - var(--header-height, 0px) - var(--announcement-height, 0px)
        )
      );
    }

    &--empty {
      display: none;
    }
  }

  .predictive-search__products__list {
    &.grid-outer {
      --gap: 5px;
      padding: 5px;
    }

    .grid {
      gap: 5px;
      padding: 0;

      @media only screen and (max-width: 749px) {
        gap: 12px;
      }
    }
  }

  .predictive-search__heading {
    font-family: var(--FONT-STACK-HEADING);
    font-weight: var(--FONT-WEIGHT-HEADING);
    font-size: var(--font-heading-mini);
    letter-spacing: var(--LETTER-SPACING-HEADING, 0.04em);
    text-transform: uppercase;
    color: var(--br-black, #000);
    margin: 0 0 12px;
    padding: 0 0 8px;
    border-bottom: 1px solid var(--border, #000000);
  }

  .predictive-search__item {
    margin-bottom: 8px;
    font-family: var(--FONT-STACK-BODY);
    font-weight: var(--FONT-WEIGHT-BODY);
    font-size: var(--font-body-small);
  }

  .predictive-search__link {
    display: inline-block;
    padding: 4px 0;
    color: var(--br-black, #000);
    text-decoration: none;
    transition: opacity 0.2s ease;

    &:hover {
      opacity: 0.7;
      text-decoration: underline;
    }

    [aria-label] b,
    [aria-label] strong,
    [aria-label] mark {
      font-weight: var(--FONT-WEIGHT-BODY-BOLD);
      background: transparent;
      color: inherit;
    }
  }

  .predictive-search__actions {
    margin: 16px 0 8px;

    .btn {
      justify-content: center;
      font-family: var(--FONT-STACK-NAV);
      font-weight: var(--FONT-WEIGHT-NAV-BOLD);
    }
  }
}

.js__header__stuck .search-popdown .predictive-search {
  --announcement-height: 0px;
}

main-search .search-box:focus-visible,
.search-form .search-submit:focus-visible,
.search-popdown input[type='search']:focus-visible,
.search-popdown .search-popdown__submit:focus-visible {
  outline: none;
  box-shadow: none;
}

/* Celebrity section */
[data-section-type='celebrity'] {
  .celebrity-grid {
    grid-template-columns: repeat(var(--COLUMNS-MOBILE), minmax(0, 1fr));

    @media only screen and (min-width: 750px) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    @media only screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--COLUMNS-DESKTOP), minmax(0, 1fr));
    }
  }

  .celebrity-card {
    background: var(--bg, transparent);
  }

  .celebrity-card__media {
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .celebrity-card__product {
    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }

  .celebrity-card__link.btn--primary.btn--text {
    --btn-text: var(--br-gray-mid);
    --btn-text-hover: var(--br-gray-mid);
    --link-a70: var(--br-gray-mid);
  }

  .celebrity-drawer {
    .drawer__head h3.drawer__heading.celebrity-drawer__title {
      font-family: var(--FONT-STACK-HEADING);
      font-style: var(--FONT-STYLE-HEADING);
      font-weight: 400;
      font-size: var(--font-heading-large);
      text-transform: none;
    }
  }

  .celebrity-drawer__text {
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
  }
}

.navlink--cart--icon .header__cart__status {
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -35%);
}

@media only screen and (max-width: 749px) {
  .column__image,
  .column__content {
    width: var(--image-width-mobile, var(--image-width, 100%));
  }
}
