.shopify-catalog-intro {
  max-width: 760px;
  margin: -10px auto 42px;
  text-align: center;
}

.shopify-catalog-intro p {
  margin-bottom: 14px;
  color: #666;
  font-size: 18px;
  line-height: 1.7;
}

.shopify-cart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  color: #7d3f31;
  background: #fbe6df;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
}

.shopify-cart-count {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  color: #fff;
  background: #1c191b;
  line-height: 1;
}

.shopify-product-card {
  height: 100%;
}

.shopify-product-card .inner-box {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.shopify-product-card .image-box {
  position: relative;
  overflow: hidden;
  background: #f8f6f2;
}

.shopify-product-card .image {
  display: grid;
  width: 100%;
  aspect-ratio: 1 / 1;
  place-items: center;
  padding: 28px;
}

.shopify-product-image-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.shopify-product-card .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}

.shopify-product-image-button:hover img,
.shopify-product-image-button:focus-visible img {
  transform: scale(1.035);
}

.shopify-product-card .catalog-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  color: #fff;
  background: #1c191b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.shopify-product-card .catalog-status.is-available {
  background: #617466;
}

.shopify-product-card .content-box {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
  text-align: left;
}

.shopify-product-card .catalog-vendor {
  margin-bottom: 6px;
  color: #9b695d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.shopify-product-card .title {
  min-height: 58px;
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.35;
}

.shopify-product-card .title button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.shopify-product-card .title button:hover,
.shopify-product-card .title button:focus-visible {
  color: #9b695d;
}

.shopify-product-card .catalog-type,
.shopify-product-card .catalog-sizes {
  color: #74706e;
  font-size: 14px;
  line-height: 1.55;
}

.shopify-product-card .catalog-sizes {
  margin: 9px 0 20px;
}

.shopify-product-card .catalog-price {
  margin: 10px 0 15px;
  color: #1c191b;
  font-family: var(--title-font, inherit);
  font-size: 20px;
  font-weight: 700;
}

.shopify-view-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding: 12px 18px;
  border: 1px solid #1c191b;
  border-radius: 999px;
  color: #1c191b;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.shopify-view-product:hover,
.shopify-view-product:focus-visible {
  color: #fff;
  background: #1c191b;
  transform: translateY(-1px);
}

.shopify-view-product i {
  font-size: 13px;
}

.shopify-product-card .catalog-coming-soon {
  width: 100%;
  margin-top: auto;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #d98f7d;
  font-weight: 700;
  cursor: not-allowed;
  opacity: .8;
}

.shopify-catalog-empty {
  width: 100%;
  padding: 70px 20px;
  text-align: center;
}

.shopify-catalog-empty h3 {
  margin-bottom: 12px;
}

.shopify-product-overlay {
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(20, 17, 19, .62);
  opacity: 0;
  backdrop-filter: blur(3px);
  transition: opacity .25s ease;
}

.shopify-product-overlay[hidden],
.shopify-product-modal [hidden] {
  display: none;
}

.shopify-product-modal {
  position: fixed;
  z-index: 10001;
  top: 50%;
  left: 50%;
  overflow: auto;
  width: min(980px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(20, 17, 19, .3);
  opacity: 0;
  transform: translate(-50%, -46%) scale(.98);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.shopify-product-open {
  overflow: hidden;
}

.shopify-product-open .shopify-product-overlay {
  opacity: 1;
}

.shopify-product-open .shopify-product-modal {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.shopify-product-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #e3ddd8;
  border-radius: 50%;
  color: #1c191b;
  background: rgba(255, 255, 255, .94);
  font-size: 19px;
  cursor: pointer;
}

.shopify-product-modal-grid {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) 1.08fr;
  min-height: 600px;
}

.shopify-product-modal-media {
  display: grid;
  min-height: 600px;
  place-items: center;
  padding: 55px;
  color: #a89e98;
  background: #f7f3ed;
}

.shopify-product-modal-media img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
}

.shopify-product-modal-placeholder {
  display: grid;
  place-items: center;
}

.shopify-product-modal-content {
  display: flex;
  flex-direction: column;
  padding: 70px 58px 54px;
}

.shopify-product-modal-vendor {
  margin-bottom: 7px;
  color: #9b695d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.shopify-product-modal-content h2 {
  margin: 0 50px 8px 0;
  color: #1c191b;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.shopify-product-modal-type {
  color: #77716e;
  font-size: 14px;
}

.shopify-product-modal-description {
  margin: 24px 0 28px;
  color: #625d5a;
  font-size: 15px;
  line-height: 1.75;
}

.shopify-product-options {
  margin: 0;
  padding: 0;
  border: 0;
}

.shopify-product-options legend {
  margin-bottom: 10px;
  color: #1c191b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.shopify-product-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.shopify-product-variant {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid #ddd6d1;
  border-radius: 999px;
  color: #4f4a47;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
}

.shopify-product-variant strong {
  font-size: 12px;
}

.shopify-product-variant:hover,
.shopify-product-variant:focus-visible,
.shopify-product-variant.is-selected {
  color: #fff;
  border-color: #1c191b;
  background: #1c191b;
}

.shopify-product-purchase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0 18px;
}

.shopify-product-quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d9d2cd;
  border-radius: 999px;
  background: #fff;
}

.shopify-product-quantity button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #1c191b;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.shopify-product-quantity button:hover,
.shopify-product-quantity button:focus-visible {
  background: #f7f3ed;
}

.shopify-product-quantity span {
  min-width: 32px;
  color: #1c191b;
  font-weight: 800;
  text-align: center;
}

.shopify-product-modal-price {
  color: #1c191b;
  font-family: var(--title-font, inherit);
  font-size: 25px;
}

.shopify-product-modal-add {
  width: 100%;
  margin-top: auto;
  padding: 15px 20px;
  border: 0;
  border-radius: 999px;
  color: #1c191b;
  background: #eea28f;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.shopify-product-modal-add:hover,
.shopify-product-modal-add:focus-visible {
  background: #f3b09f;
  transform: translateY(-1px);
}

.shopify-product-modal-add:disabled {
  cursor: wait;
  opacity: .65;
  transform: none;
}

.shopify-cart-overlay {
  position: fixed;
  z-index: 9998;
  inset: 0;
  background: rgba(20, 17, 19, .5);
  opacity: 0;
  transition: opacity .25s ease;
}

.shopify-cart-overlay[hidden] {
  display: none;
}

.shopify-cart-drawer {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  display: flex;
  width: min(440px, 100vw);
  height: 100dvh;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  box-shadow: -15px 0 45px rgba(20, 17, 19, .18);
  transform: translateX(105%);
  transition: transform .28s ease;
}

.shopify-cart-open {
  overflow: hidden;
}

.shopify-cart-open .shopify-cart-overlay {
  opacity: 1;
}

.shopify-cart-open .shopify-cart-drawer {
  transform: translateX(0);
}

.shopify-cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #ece7e3;
}

.shopify-cart-head h2 {
  margin: 2px 0 0;
  font-size: 28px;
}

.shopify-cart-eyebrow {
  color: #9b695d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.shopify-cart-close {
  width: 42px;
  height: 42px;
  border: 1px solid #e1dbd7;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
}

.shopify-cart-message {
  min-height: 22px;
  padding-top: 10px;
  color: #9a4134;
  font-size: 13px;
}

.shopify-cart-lines {
  flex: 1;
  overflow-y: auto;
  padding: 4px 2px 16px 0;
}

.shopify-cart-empty {
  display: grid;
  min-height: 260px;
  place-content: center;
  gap: 12px;
  color: #77716e;
  text-align: center;
}

.shopify-cart-empty i {
  font-size: 44px;
}

.shopify-cart-line {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #ece7e3;
}

.shopify-cart-line-image {
  width: 76px;
  height: 88px;
  border-radius: 9px;
  background: #f8f6f2;
  object-fit: contain;
}

.shopify-cart-line-placeholder {
  display: grid;
  place-items: center;
  color: #a89e98;
}

.shopify-cart-line h3 {
  margin: 0 0 3px;
  font-size: 16px;
  line-height: 1.3;
}

.shopify-cart-line-variant {
  margin: 0 0 10px;
  color: #77716e;
  font-size: 13px;
}

.shopify-cart-quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd6d1;
  border-radius: 999px;
}

.shopify-cart-quantity button {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.shopify-cart-quantity span {
  min-width: 24px;
  text-align: center;
}

.shopify-cart-line-side {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: space-between;
}

.shopify-cart-remove {
  border: 0;
  color: #817875;
  background: transparent;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.shopify-cart-footer {
  padding-top: 18px;
  border-top: 1px solid #ece7e3;
}

.shopify-cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1c191b;
  font-size: 18px;
}

.shopify-cart-footer p {
  margin: 7px 0 16px;
  color: #77716e;
  font-size: 12px;
}

.shopify-checkout-button {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  color: #1c191b;
  background: #eea28f;
  font-weight: 800;
  text-align: center;
}

.shopify-checkout-button:hover {
  color: #1c191b;
  background: #f3b09f;
}

@media (max-width: 767px) {
  .featured-products {
    padding: 80px 0 55px;
  }

  .featured-products .filters .filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    width: 100%;
    padding: 0 4px 12px;
    scrollbar-width: thin;
  }

  .featured-products .filters li {
    flex: 0 0 auto;
    margin: 0;
    padding: 8px 13px;
    border: 1px solid #e4e1d5;
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
  }

  .featured-products .filters li:before {
    display: none;
  }

  .featured-products .filters li.active {
    color: #fff;
    border-color: #1c191b;
    background: #1c191b;
  }

  .shopify-product-card .title {
    min-height: auto;
  }

  .shopify-cart-drawer {
    padding: 22px 18px;
  }

  .shopify-product-modal {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 92dvh;
    border-radius: 22px 22px 0 0;
    transform: translateY(105%);
  }

  .shopify-product-open .shopify-product-modal {
    transform: translateY(0);
  }

  .shopify-product-modal-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .shopify-product-modal-media {
    min-height: 260px;
    max-height: 310px;
    padding: 28px 54px;
  }

  .shopify-product-modal-media img {
    max-height: 250px;
  }

  .shopify-product-modal-content {
    padding: 30px 24px 28px;
  }

  .shopify-product-modal-content h2 {
    margin-right: 36px;
    font-size: 30px;
  }

  .shopify-product-modal-description {
    margin: 16px 0 20px;
  }

  .shopify-product-purchase-row {
    margin-top: 22px;
  }
}
