/** Shopify CDN: Minification failed

Line 4221:0 Unexpected "{"
Line 4221:1 Expected identifier but found "%"
Line 4225:2 Unexpected "{"
Line 4225:3 Expected identifier but found "%"
Line 4332:0 Unexpected "{"
Line 4332:1 Expected identifier but found "%"
Line 4336:2 Unexpected "{"
Line 4336:3 Expected identifier but found "%"
Line 6457:0 Unexpected "{"
Line 6457:1 Expected identifier but found "%"
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
.error-404 {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: #ffffff;
}

.error-404__container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.error-404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.error-404__title {
  margin: 0;
  font-size: clamp(48px, 8vw, 64px);
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.error-404__description {
  margin: 0;
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  max-width: 480px;
}

.error-404__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.error-404__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.error-404__button--primary {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #1a1a1a;
}

.error-404__button--primary:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

.error-404__button--secondary {
  background-color: #ffffff;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.error-404__button--secondary:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}



@media (max-width: 768px) {
  .error-404 {
    padding: 60px 20px;
  }

  .error-404__title {
    font-size: 48px;
  }

  .error-404__description {
    font-size: 14px;
  }

  .error-404__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .error-404__button {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .error-404 {
    padding: 50px 16px;
  }

  .error-404__title {
    font-size: 42px;
  }

  .error-404__description {
    font-size: 13px;
  }

  .error-404__button {
    padding: 11px 28px;
  }
}
.packaging-content {
    background: #ffffff;
    padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 40px);
  }

  .packaging-content__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .packaging-content__intro {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
  }

  .packaging-content__heading {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #111111;
  }

  .packaging-content__description {
    margin: 0;
    font-size: clamp(16px, 2vw, 18px);
    color: #666666;
    line-height: 1.6;
  }

  .packaging-content__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: clamp(48px, 8vw, 80px);
  }

  .packaging-content__feature {
    text-align: center;
    padding: 24px;
  }

  .packaging-content__feature-title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    color: #111111;
  }

  .packaging-content__feature-text {
    margin: 0;
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
  }

  .packaging-content__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: clamp(48px, 8vw, 80px);
  }

  .packaging-content__gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
  }

  .packaging-content__gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .packaging-content__gallery-item:hover .packaging-content__gallery-img {
    transform: scale(1.05);
  }

  .packaging-content__includes {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
  }

  .packaging-content__includes-title {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    text-align: center;
  }

  .packaging-content__includes-list {
    margin: 0;
    padding-left: 24px;
    font-size: 16px;
    color: #333333;
    line-height: 2;
  }

  .packaging-content__includes-list li {
    margin-bottom: 8px;
  }
.packaging-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .packaging-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .packaging-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .packaging-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  }

  .packaging-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
  }

  .packaging-hero__title {
    margin: 0 0 16px;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
  }

  .packaging-hero__subtitle {
    margin: 0;
    font-size: clamp(16px, 2.5vw, 20px);
    color: #ffffff;
    opacity: 0.95;
  }
.cart-page {
    background: #ffffff;
  }

  .cart-page__hero {
    position: relative;
  }

  .cart-page__hero-image-wrapper {
    position: relative;
    min-height: 140px;
    max-height: 180px;
    overflow: hidden;
  }

  .cart-page__hero-image {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    display: block;
  }

  .cart-page__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 100%);
  }

  .cart-page__hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    text-align: center;
    color: #ffffff;
  }

  .cart-page__hero-title {
    margin: 0;
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 600;
  }

  .cart-page__content {
    padding: clamp(48px, 6vw, 80px) clamp(20px, 6vw, 80px);
  }

  .cart-page__form {
    width: 100%;
  }

  .cart-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
  }

  .cart-page__items {
    background: #ffffff;
    border-radius: 8px;
    padding: clamp(24px, 3vw, 40px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }


  .cart-page__items-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .cart-page__item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    padding: 24px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
  }

  .cart-page__item-media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    aspect-ratio: 1;
  }

  .cart-page__item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cart-page__item-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    text-align: center;
    color: #777777;
    font-size: 14px;
  }

  .cart-page__item-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cart-page__item-header {
    margin-bottom: 12px;
  }

  .cart-page__item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.4;
  }

  .cart-page__item-title:hover {
    color: #666666;
  }

  .cart-page__item-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }

  .cart-page__item-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .cart-page__item-quantity-input {
    width: 60px;
    height: 40px;
    padding: 0 8px;
    border-radius: 8px;
    border: 1px solid #000000;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    color: #1a1a1a;
    background: #ffffff;
    -moz-appearance: textfield;
  }

  .cart-page__item-quantity-input::-webkit-outer-spin-button,
  .cart-page__item-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart-page__item-unit-price {
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.4;
    font-weight: 400;
  }

  .cart-page__item-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .cart-page__item-total {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    white-space: nowrap;
  }

  .cart-page__item-remove {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .cart-page__item-remove:hover {
    transform: scale(1.1);
  }

  .cart-page__item-remove svg {
    width: 100%;
    height: 100%;
  }

  .cart-page__summary {
    position: sticky;
    top: 100px;
  }

  .cart-page__summary-card {
    background: #ffffff;
    border-radius: 8px;
    padding: clamp(24px, 3vw, 40px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .cart-page__summary-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1a1a;
  }

  .cart-page__summary-list {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cart-page__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #1a1a1a;
  }

  .cart-page__summary-row dt {
    font-weight: 400;
  }

  .cart-page__summary-row dd {
    margin: 0;
    font-weight: 400;
  }

  .cart-page__summary-row--total {
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid #e5e5e5;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .cart-page__summary-row--total dt,
  .cart-page__summary-row--total dd {
    font-weight: 600;
  }

  .cart-page__summary-note {
    margin: 0;
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
  }

  .cart-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    font-family: inherit;
    width: 100%;
  }

  .cart-page__button--primary {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
  }

  .cart-page__button--primary:hover {
    background: #333333;
    border-color: #333333;
  }

  .cart-page__button--secondary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
  }

  .cart-page__button--secondary:hover {
    background: #000000;
    color: #ffffff;
  }

  .cart-page__additional-checkout {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .cart-page__empty {
    padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .cart-page__empty-title {
    margin: 0;
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 600;
    color: #111111;
  }

  .cart-page__empty-subtitle {
    margin: 0;
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    max-width: 520px;
  }

  @media (max-width: 1024px) {
    .cart-page__layout {
      grid-template-columns: 1fr;
    }

    .cart-page__summary {
      position: static;
    }
  }

  @media (max-width: 768px) {
    .cart-page__item {
      grid-template-columns: 120px 1fr;
      gap: 16px;
      padding: 16px;
    }

    .cart-page__item-info-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .cart-page__item-right {
      align-self: flex-end;
      width: 100%;
      justify-content: space-between;
    }
  }

  @media (max-width: 540px) {
    .cart-page__item {
      grid-template-columns: 1fr;
    }

    .cart-page__item-media {
      height: 200px;
      aspect-ratio: unset;
    }

    .cart-page__hero-title {
      font-size: 24px;
    }
  }
.collection-page {
  background: #ffffff;
  padding: 0;
}

.collection-page__hero {
  position: relative;
  background: #ffffff;
}

.collection-page__hero-image-wrapper {
  position: relative;
  min-height: 120px;
  max-height: 120px;
  overflow: hidden;
  background: #1a1a1a;
}

.collection-page__hero-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.collection-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.collection-page__hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: #ffffff;
  gap: 6px;
}

.collection-page__hero-title {
  margin: 0;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 600;
  text-transform: uppercase;
}

.collection-page__hero-description,
.collection-page__hero-button {
  display: none;
}

.collection-page__wrapper {
  display: flex;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.collection-page__sidebar {
  width: 280px;
  flex-shrink: 0;
  padding: 40px 32px;
  position: sticky;
  top: 0;
  align-self: flex-start;
  max-height: 100vh;
  overflow-y: auto;
  background: #ffffff;
}

.collection-page__sidebar-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: #666666;
  z-index: 10;
}

.collection-page__sidebar-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.collection-page__sidebar-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.collection-page__sidebar-section--clear {
  padding-top: 0;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.collection-page__clear-filters {
  display: inline-block;
  color: #666666;
  text-decoration: underline;
  font-size: 13px;
  text-transform: none;
  transition: color 0.2s ease;
  cursor: pointer;
  font-weight: 400;
}

.collection-page__clear-filters:hover {
  color: #1a1a1a;
}

.collection-page__sidebar-section--collapsible .collection-page__sidebar-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: 0;
  padding: 0 0 12px;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.collection-page__sidebar-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 450;
  color: #000000;
  text-transform: none;
  letter-spacing: normal;
}

.collection-page__sidebar-section--collapsible .collection-page__sidebar-title {
  margin: 0;
  font-size: 16px;
  font-weight: 550;
  color: #000000;
  text-transform: none;
  letter-spacing: normal;
  flex: 1;
}

.collection-page__sidebar-title-wrapper {
  padding-bottom: 12px;
}

.collection-page__sidebar-arrow {
  transition: transform 0.2s ease;
  color: #666666;
  flex-shrink: 0;
  margin-left: 12px;
}

.collection-page__sidebar-arrow.is-collapsed {
  transform: rotate(-180deg);
}

.collection-page__sidebar-toggle[aria-expanded="false"] + .collection-page__filter-content {
  display: none;
}

.collection-page__sidebar-toggle[aria-expanded="false"] .collection-page__sidebar-arrow {
  transform: rotate(-180deg);
}

.collection-page__sort-form {
  margin: 0;
}

.collection-page__sort-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.collection-page__sort-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #6d6d6d;
  text-transform: none;
  letter-spacing: normal;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.collection-page__sort-radio:hover {
  color: #000000;
}

.collection-page__sort-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1a1a1a;
  flex-shrink: 0;
}

.collection-page__filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.collection-page__filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #6d6d6d;
  text-transform: none;
  letter-spacing: normal;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.collection-page__filter-checkbox:hover {
  color: #000000;
}

.collection-page__filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1a1a1a;
  flex-shrink: 0;
}

.collection-page__filter-label-text {
  flex: 1;
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #6d6d6d;
}

.collection-page__filter-content {
  margin-top: 16px;
}

.collection-page__filter-price {
  margin-top: 8px;
}

.collection-page__filter-price-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.collection-page__filter-price-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
  color: #6d6d6d;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.collection-page__filter-price-label input {
  padding: 10px 12px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
}

.collection-page__no-filters {
  margin: 0;
  font-size: 14px;
  color: #999999;
  text-align: center;
  padding: 20px 0;
}

.collection-page__main {
  flex: 1;
  padding: 40px;
  min-width: 0;
}

.collection-page__results-count {
  margin-bottom: 16px;
  font-size: 15px;
  color: #666;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.collection-page__products-grid {
  display: grid;
  gap: 48px 32px;
  margin-bottom: 48px;
}

.collection-page__products-grid--grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.collection-page__products-grid--feed {
  grid-template-columns: 1fr;
  gap: 32px;
}

.collection-page__products-grid--feed .collection-page__product {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.collection-page__product {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  gap: 16px;
}

.collection-page__product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 0;
  border: 1px solid #f3f3f3;
  border-radius: 16px;
  padding: 12px;
}

.collection-page__product-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.collection-page__product-image-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.collection-page__product-image-link.is-active {
  opacity: 1;
  z-index: 2;
}

.collection-page__product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.collection-page__product:hover .collection-page__product-image {
  opacity: 0.9;
}

.collection-page__product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 14px;
}

.collection-page__product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a;
  transition: all 0.3s ease;
  z-index: 2;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.collection-page__product:hover .collection-page__product-wishlist {
  opacity: 1;
  pointer-events: auto;
}

.collection-page__product-wishlist:hover,
.collection-page__product-wishlist.is-active {
  background: #ffffff;
}

.collection-page__product-wishlist.is-active svg {
  fill: #1a1a1a;
  stroke: #1a1a1a;
}

.collection-page__product-wishlist svg {
  width: 18px;
  height: 18px;
}

.collection-page__product-gallery {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a;
  transition: all 0.3s ease;
  z-index: 3;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.collection-page__product-gallery:hover {
  background: #ffffff;
}

.collection-page__product-gallery svg {
  width: 18px;
  height: 18px;
}

.collection-page__product:hover .collection-page__product-gallery {
  opacity: 1;
  pointer-events: auto;
}

.collection-page__product-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.collection-page__product-progress-bar {
  height: 100%;
  width: 0%;
  background: #1a1a1a;
  transition: width 0.3s ease;
}

.collection-page__products-grid--feed .collection-page__product-media {
  margin-bottom: 0;
}

.collection-page__product-info {
  display: flex;
  flex-direction: column;
  padding: 0;
  flex-grow: 1;
  min-height: 0;
  text-align: center;
  gap: 6px;
}

.collection-page__product-info-content {
  flex-grow: 1;
}

.collection-page__product-button-wrapper {
  display: none;
}

.collection-page__product-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.collection-page__product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.collection-page__product-title a:hover {
  color: #666666;
}

.collection-page__product-sku {
  margin: 0 0 10px;
  font-size: 12px;
  color: #8a8a8a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-page__product-details {
  margin: 0 0 8px;
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.collection-page__product-price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  flex-wrap: wrap;
}

.collection-page__product-price {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}

.collection-page__product-price--sale {
  color: #111111;
}

.collection-page__product-price--original {
  color: #999999;
  text-decoration: line-through;
  font-weight: 400;
}

.collection-page__product-description {
  display: none;
}

.collection-page__products-grid--feed .collection-page__product-description {
  display: block;
}

.collection-page__product-description-text {
  margin: 8px 0;
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
}

.collection-page__product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 62px;
  background-color: rgba(0, 0, 0, 0.92);
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.92);
  text-transform: uppercase;
  font-size: 13px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  min-width: 200px;
  border-radius: 8px;
  width: 100%;
  margin-top: 0;
}

.collection-page__product-button:hover {
  background-color: #ffffff;
  color: #0f0f0f;
  border-color: #ffffff;
}

.collection-page__load-more {
  margin-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.collection-page__load-more-text {
  margin: 0;
  font-size: 13px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.collection-page__load-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s ease, opacity 0.2s ease;
  border: 0;
  cursor: pointer;
}

.collection-page__load-more-button:hover {
  background: #333333;
  opacity: 0.95;
}

.collection-page__empty {
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.collection-page__empty-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
}

.collection-page__empty-text {
  margin: 0;
  font-size: 16px;
  color: #666666;
}

.collection-page__empty-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  transition: background 0.2s ease, color 0.2s ease;
}

.collection-page__empty-button:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10000;
  pointer-events: none;
}

.toast {
  background: rgba(17, 17, 17, 0.95);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.toast--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .collection-page__products-grid--grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
}

@media (max-width: 1024px) {
  .collection-page__hero-image-wrapper {
    min-height: 100px;
    max-height: 100px;
  }

  .collection-page__hero-image {
    height: 100px;
  }

  .collection-page__hero-title {
    font-size: clamp(18px, 3.5vw, 26px);
  }

  .collection-page__wrapper {
    flex-direction: column;
  }

  .collection-page__sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 60px 32px 40px;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  }

  .collection-page__sidebar.is-open {
    transform: translateX(0);
  }

  .collection-page__sidebar.is-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  .collection-page__sidebar-close {
    display: block;
  }

  .collection-page__main {
    padding: 32px 24px;
  }

  .collection-page__products-grid--grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
  }

  .collection-page__products-grid--feed .collection-page__product {
    grid-template-columns: 180px 1fr;
    gap: 24px;
  }

  .collection-page__product {
    padding: 14px;
    gap: 12px;
  }

  .collection-page__product-title {
    font-size: 14px;
  }

  .collection-page__product-price {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .collection-page__hero-image-wrapper {
    min-height: 80px;
    max-height: 80px;
  }

  .collection-page__hero-image {
    height: 80px;
  }

  .collection-page__hero-title {
    font-size: clamp(16px, 3vw, 20px);
  }

  .collection-page__hero-content {
    padding: 12px;
  }

  .collection-page__sidebar {
    max-width: 100%;
    padding: 60px 24px 32px;
  }

  .collection-page__main {
    padding: 24px 20px;
  }

  .collection-page__results-count {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .collection-page__products-grid {
    gap: 24px 12px;
    margin-bottom: 40px;
  }

  .collection-page__products-grid--grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-page__products-grid--feed .collection-page__product {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .collection-page__products-grid--feed .collection-page__product-media {
    aspect-ratio: 1 / 1;
  }

  .collection-page__product {
    padding: 12px;
    gap: 10px;
    border-radius: 16px;
  }

  .collection-page__product-media {
    border-radius: 12px;
    padding: 10px;
  }

  .collection-page__product-title {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .collection-page__product-sku {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .collection-page__product-price {
    font-size: 14px;
  }

  .collection-page__product-wishlist,
  .collection-page__product-gallery {
    width: 32px;
    height: 32px;
  }

  .collection-page__product-wishlist svg,
  .collection-page__product-gallery svg {
    width: 16px;
    height: 16px;
  }

  .collection-page__load-more {
    margin-top: 40px;
    gap: 12px;
  }

  .collection-page__load-more-text {
    font-size: 12px;
  }

  .collection-page__load-more-button {
    padding: 10px 28px;
    font-size: 11px;
  }

  .collection-page__empty {
    padding: 60px 20px;
  }

  .collection-page__empty-title {
    font-size: 20px;
  }

  .collection-page__empty-text {
    font-size: 14px;
  }

  .toast-container {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .toast {
    padding: 10px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .collection-page__hero-image-wrapper {
    min-height: 70px;
    max-height: 70px;
  }

  .collection-page__hero-image {
    height: 70px;
  }

  .collection-page__hero-title {
    font-size: 16px;
  }

  .collection-page__main {
    padding: 20px 16px;
  }

  .collection-page__products-grid {
    gap: 20px 10px;
  }

  .collection-page__product {
    padding: 10px;
    gap: 8px;
  }

  .collection-page__product-media {
    padding: 8px;
  }

  .collection-page__product-title {
    font-size: 12px;
  }

  .collection-page__product-sku {
    font-size: 10px;
  }

  .collection-page__product-price {
    font-size: 13px;
  }

  .collection-page__product-wishlist {
    opacity: 1;
    pointer-events: auto;
  }

  .collection-page__product-gallery {
    opacity: 1;
    pointer-events: auto;
  }
}
/* Mobile-first base styles */
.collections-showcase {
  padding: clamp(40px, 12vw, 56px) clamp(16px, 8vw, 32px);
  background-color: #ffffff;
  width: 100%;
  max-width: 100%;
}

.collections-showcase__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.collections-showcase__header {
  text-align: center;
  margin-bottom: clamp(32px, 8vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 4vw, 24px);
}

.collections-showcase__title {
  font-size: clamp(22px, 5.5vw, 32px);
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
  line-height: 1.3;
  max-width: 100%;
}

.collections-showcase__subtitle {
  margin: 0;
  max-width: 100%;
  color: #4a4a4a;
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.6;
  word-wrap: break-word;
}

.collections-showcase__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  padding: 0;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  background-color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.collections-showcase__cta:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.collections-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 6vw, 40px);
}

.collections-showcase__card {
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.collections-showcase__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: clamp(16px, 4vw, 24px);
}

.collections-showcase__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform: scale(1.1);
}

.collections-showcase__card:hover .collections-showcase__image,
.collections-showcase__card:focus-within .collections-showcase__image {
  transform: scale(1.3);
}

.collections-showcase__content {
  padding: clamp(20px, 5vw, 32px) clamp(16px, 4vw, 24px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 16px);
  flex-grow: 1;
}

.collections-showcase__card-title {
  margin: 0;
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  word-wrap: break-word;
}

.collections-showcase__card-text {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  color: #6D6D6D;
  line-height: 1.5;
  font-size: clamp(15px, 3.75vw, 19px);
  flex-grow: 1;
  word-wrap: break-word;
}

.collections-showcase__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 60px;
  padding: 0;
  background-color: #ffffff;
  color: #1a1a1a;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #1a1a1a;
  transition: background-color 0.2s ease, color 0.2s ease;
  align-self: center;
  white-space: nowrap;
}

.collections-showcase__card-button:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.collections-showcase__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: clamp(24px, 6vw, 40px);
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  color: #5c5c5c;
}

/* Tablet and up */
@media (min-width: 768px) {
  .collections-showcase {
    padding: clamp(48px, 6vw, 50px) clamp(16px, 5vw, 64px);
  }

  .collections-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .collections-showcase__title {
    max-width: 750px;
  }

  .collections-showcase__subtitle {
    max-width: 560px;
  }
}

/* Responsive buttons below large breakpoint */
@media (max-width: 1023px) {
  .collections-showcase__cta {
    width: clamp(160px, 40vw, 200px);
    height: clamp(48px, 12vw, 60px);
    font-size: clamp(14px, 3.5vw, 20px);
    padding: 0 clamp(16px, 4vw, 24px);
  }

  .collections-showcase__card-button {
    width: clamp(160px, 40vw, 210px);
    height: clamp(48px, 12vw, 60px);
    font-size: clamp(13px, 3.25vw, 16px);
    padding: 0 clamp(16px, 4vw, 24px);
  }
}

/* Desktop and up */
@media (min-width: 1024px) {
  .collections-showcase__header {
    margin-bottom: 48px;
    gap: 24px;
  }

  .collections-showcase__content {
    padding: 32px 24px;
    gap: 16px;
  }

}
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.coming-soon-simple {
  min-height: 70vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.coming-soon-simple__wrapper {
  text-align: center;
}

.coming-soon-simple__title {
  margin: 0;
  font-size: clamp(25px, 12vw, 45px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000000;
  text-transform: uppercase;
}
.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;
  }
.site-footer {
  background-color: #0d0d0d;
  color: #f2f2f2;
  padding: 48px 24px 32px;
  margin-top: auto;
}

.site-footer__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 60px);
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #828280;
}

.site-footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.site-footer__list a {
  color: #FCFDFF;
  font-size: 16px;
  font-weight:400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__list a:hover {
  color: #ffffff;
}

.site-footer__column--support {
  gap: 24px;
}

.site-footer__list--support li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
}

.site-footer__icon-img {
  width: 21px;
  height: 21px;
  display: block;
  object-fit: contain;
}

.site-footer__social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer__social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__social-heading {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #f7f4f2;
}

.site-footer__social-list {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__social-link:hover {
  opacity: 0.8;
}

.site-footer__social-icon {
  width: 23px;
  height: 23px;
  display: block;
  object-fit: contain;
}

.site-footer__copyright {
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 34px;
}

@media (max-width: 900px) {
  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
  }
}
.gifts-content {
    width: 100%;
    background: #ffffff;
    padding: clamp(60px, 10vw, 100px) 0;
  }

  .gifts-content__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
  }

  .gifts-content__header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
  }

  .gifts-content__title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    margin: 0 0 5px 0;
    color: #000;
  }

  .gifts-content__description {
    font-size: clamp(21px, 2vw, 24px);
    font-weight: 300;
    color: #6D6D6D;
    margin: 0 auto;
    max-width: 1200px;
    line-height: 1.7;
  }

  .gifts-content__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(30px, 4vw, 50px);
  }

  .gifts-content__card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
  }

  .gifts-content__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
  }

  .gifts-content__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .gifts-content__card:hover .gifts-content__image {
    transform: scale(1.05);
  }

  .gifts-content__card-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    flex: 1;
  }

  .gifts-content__card-title {
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 700;
    margin: 0;
    color: #000;
  }

  .gifts-content__card-text {
    font-size: clamp(19px, 2vw, 24px);
    font-weight: 400;
    color: #6D6D6D;
    margin: 0;
  }

  .gifts-content__button {
    display: inline-block;
    padding: 18px 46px;
    background: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .gifts-content__button:hover {
    background: #000;
    color: #ffffff;
  }

  @media (max-width: 768px) {
    .gifts-content {
      padding: 50px 0;
    }

    .gifts-content__grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .gifts-content__image-wrapper {
      border-radius: 12px;
    }

    .gifts-content__card-content {
      gap: 12px;
    }
  }
.gifts-hero {
    width: 100%;
    background: #ffffff;
  }

  .gifts-hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
  }

  .gifts-hero__banner {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gifts-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .gifts-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(40px, 6vw, 80px);
  }

  .gifts-hero__content {
    max-width: 500px;
    color: #ffffff;
  }

  .gifts-hero__eyebrow {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 300;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
  }

  .gifts-hero__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin: 0 0 16px 0;
    line-height: 1.2;
  }

  .gifts-hero__description {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .gifts-hero__banner {
      min-height: 300px;
      border-radius: 16px;
    }

    .gifts-hero__overlay {
      padding: 30px;
    }

    .gifts-hero__content {
      max-width: 100%;
    }
  }
:root {
    --header-height: 140px;
  }

  @keyframes header-slide-down {
    0% {
      opacity: 0;
      transform: translateY(-32px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes header-logo-slide-down {
    0% {
      opacity: 0;
      transform: translateX(-50%) translateY(-32px);
    }
    100% {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  @keyframes header-slide-left {
    0% {
      opacity: 0;
      transform: translateX(32px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }



  .zaivor-header {
    background: #ffffff;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: block !important;
    visibility: visible !important;
  }

  .zaivor-header.has-motion:not(.is-ready) .header__menu-toggle,
  .zaivor-header.has-motion:not(.is-ready) .header__logo,
  .zaivor-header.has-motion:not(.is-ready) .header__actions > *,
  .zaivor-header.has-motion:not(.is-ready) .nav__item > .nav__link {
    opacity: 0;
    transition: none;
  }

  .zaivor-header.has-motion:not(.is-ready) .header__menu-toggle {
    transform: translateY(-32px);
  }

  .zaivor-header.has-motion:not(.is-ready) .nav__item > .nav__link {
    transform: translateY(-32px);
  }

  .zaivor-header.has-motion:not(.is-ready) .header__logo {
    transform: translateX(-50%) translateY(-32px);
  }

  .zaivor-header.has-motion:not(.is-ready) .header__actions > * {
    transform: translateX(32px);
  }

  .zaivor-header.has-motion.is-ready .header__menu-toggle {
    animation: header-slide-down 0.8s ease-out forwards;
  }

  .zaivor-header.has-motion.is-ready .header__logo {
    animation: header-logo-slide-down 0.8s ease-out forwards;
  }

  .zaivor-header.has-motion.is-ready .header__actions > * {
    animation: header-slide-left 0.8s ease-out forwards;
  }

  .zaivor-header.has-motion.is-ready .nav__item > .nav__link {
    animation: header-slide-down 0.8s ease-out forwards;
  }

  @media (prefers-reduced-motion: reduce) {
    .zaivor-header.has-motion .header__menu-toggle,
    .zaivor-header.has-motion .header__logo,
    .zaivor-header.has-motion .header__actions > *,
    .zaivor-header.has-motion .nav__item {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
  }

  .header__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
  }

  /* Top Header Section */
  .header__top {
    margin-top: 30px;
    padding: 20px 0;
    border-bottom: none;
    display: block !important;
    visibility: visible !important;
  }

  .header__top .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }



  /* Mobile Menu Toggle */
  .header__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: 0;
    cursor: pointer;
    z-index: 1002;
    position: relative;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }
  
  .header__menu-toggle:active {
    opacity: 0.7;
  }

  .header__menu-icon {
    position: relative;
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
  }

  .header__menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000000;
    transition: all 0.3s ease;
    transform-origin: center;
    pointer-events: none;
  }

  .zaivor-header.is-menu-open .header__menu-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .zaivor-header.is-menu-open .header__menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .zaivor-header.is-menu-open .header__menu-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Logo Styles - Centered */
  .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex: 0 0 auto;
    display: block !important;
    visibility: visible !important;
    z-index: 1000;
    pointer-events: none;
  }
  
  .header__logo .logo-link {
    pointer-events: auto;
  }

  .logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.2s ease;
  }

  .logo-link:hover {
    opacity: 0.8;
  }

  .logo-link:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 4px;
    border-radius: 2px;
  }

  .logo-image {
    height: auto;
    max-height: 60px;
    width: auto;
    display: block;
  }

  /* Header Actions (Icons) - Right aligned */
  .header__actions {
    display: flex !important;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    visibility: visible !important;
    z-index: 1001;
    position: relative;
  }

  .header__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
    border: 0;
    background: none;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .header__icon:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
  }

  .header__icon:hover {
    color: #666666;
  }

  .header__icon img {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
  }

  .header__icon svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    display: block;
    flex-shrink: 0;
  }

  .search-drawer {
    position: fixed;
    inset: 0;
    z-index: 1150;
    pointer-events: none;
  }

  .search-drawer.is-open {
    pointer-events: auto;
  }

  .search-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .search-drawer.is-open .search-drawer__overlay {
    opacity: 1;
  }

  .search-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(520px, 92vw);
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 24px clamp(18px, 4vw, 30px);
    box-shadow: -24px 0 48px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    gap: 16px;
  }

  .search-drawer.is-open .search-drawer__panel {
    transform: translateX(0);
  }

  .search-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .search-drawer__title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .search-drawer__close {
    background: none;
    border: 0;
    color: #555555;
    font-size: 26px;
    cursor: pointer;
    padding: 4px;
  }

  .search-drawer__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 auto;
  }

  .search-drawer__form {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .search-drawer__field {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .search-drawer__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    padding: 4px 6px 4px 16px;
    background: #fafafa;
    gap: 8px;
  }

  .search-drawer__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 18px;
    font-size: 16px;
    outline: none;
  }

  .search-drawer__input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
  }

  .search-drawer__clear {
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    color: #999999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .search-drawer__clear.is-visible {
    display: inline-flex;
  }

  .search-drawer__clear:hover {
    color: #555555;
    background: rgba(0, 0, 0, 0.04);
  }

  .search-drawer__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #111111;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .search-drawer__submit:hover {
    background: #222222;
  }

  .search-drawer__hint {
    margin: 0;
    font-size: 13px;
    color: #888888;
  }

  .search-drawer__popular {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .search-drawer__popular-title {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666666;
  }

  .search-drawer__popular-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .search-drawer__popular-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #d8d8d8;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: #333333;
    transition: border-color 0.2s ease, color 0.2s ease;
  }

  .search-drawer__popular-link:hover {
    border-color: #111111;
    color: #111111;
  }

  .search-drawer__results {
    flex: 1 1 auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .search-drawer__results-empty {
    font-size: 13px;
    color: #888888;
    text-align: center;
    padding: 24px 12px;
    border: 1px dashed #e0e0e0;
    border-radius: 12px;
  }

  .search-drawer__results-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .search-drawer__results-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    background: #ffffff;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }

  .search-drawer__results-item:hover {
    border-color: #d0d0d0;
  }

  .search-drawer__results-media {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    background: #fafafa;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .search-drawer__results-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .search-drawer__results-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }

  .search-drawer__results-title {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #111111;
  }

  .search-drawer__results-meta {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a8a;
  }

  .search-drawer__results-price {
    margin: 0;
    font-size: 13px;
    color: #111111;
    font-weight: 600;
  }

  .search-drawer__results-view-all {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.4);
    padding: 8px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .search-drawer__results-view-all:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
  }

  @media (max-width: 768px) {
    .search-drawer__panel {
      width: min(100%, 94vw);
      padding: 20px 18px;
      max-height: 100vh;
    }

    .search-drawer__title {
      font-size: 18px;
    }

    .search-drawer__input {
      font-size: 16px;
      padding: 10px 16px;
    }

    .search-drawer__submit {
      padding: 10px 18px;
      font-size: 12px;
    }

    .search-drawer__submit span {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .search-drawer__panel {
      width: 100vw;
      padding: 18px 14px;
    }

    .search-drawer__header {
      margin-bottom: 8px;
    }

    .search-drawer__title {
      font-size: 16px;
    }

    .search-drawer__input-wrapper {
      padding: 4px;
    }

    .search-drawer__input {
      padding: 10px 14px;
      font-size: 16px;
    }

    .search-drawer__submit {
      padding: 10px 16px;
      min-width: 44px;
    }

    .search-drawer__results-item {
      padding: 10px;
      gap: 12px;
    }

    .search-drawer__results-media {
      width: 60px;
      height: 60px;
    }

    .search-drawer__results-title {
      font-size: 13px;
    }

    .search-drawer__results-meta,
    .search-drawer__results-price {
      font-size: 11px;
    }
  }

  .header__icon--badge {
    position: relative;
  }

  .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #dc2626;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
  }

  .badge * {
    margin: 0;
    padding: 0;
    line-height: 1;
    display: inline-block;
  }

  /* Mobile Menu Styles */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.35s, opacity 0.35s ease;
  }

  .mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transition: visibility 0s 0s, opacity 0.35s ease;
  }

  .mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-menu.is-open .mobile-menu__overlay {
    opacity: 1;
  }

  .mobile-menu__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
  }

  .mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 6px 12px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 20px;
  }

  .mobile-menu__close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0;
    color: #000000;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: background 0.2s ease;
  }

  .mobile-menu__close:hover {
    background: #f5f5f5;
  }

  .mobile-menu__close:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
  }

  .mobile-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu__item {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
  }

  .mobile-menu__link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
    min-height: 56px;
  }

  .mobile-menu__link:hover,
  .mobile-menu__link:focus-visible {
    background: #fafafa;
    outline: none;
  }

  .mobile-menu__item--has-dropdown .mobile-menu__link {
    padding-right: 56px;
  }

  .mobile-menu__toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0;
    color: #000000;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.2s ease;
  }

  .mobile-menu__item.is-open .mobile-menu__toggle {
    transform: translateY(-50%) rotate(90deg);
  }

  .mobile-menu__toggle:hover {
    background: #f5f5f5;
  }

  .mobile-menu__toggle:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
  }

  .mobile-menu__submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
  }

  .mobile-menu__item.is-open .mobile-menu__submenu {
    max-height: 1000px;
  }

  .mobile-menu__subitem {
    border-top: 1px solid #f0f0f0;
  }

  .mobile-menu__sublink {
    display: block;
    padding: 14px 20px 14px 40px;
    font-size: 14px;
    color: #555555;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .mobile-menu__sublink:hover,
  .mobile-menu__sublink:focus-visible {
    background: #f0f0f0;
    color: #000000;
    outline: none;
  }

  /* Main Navigation */
  .header__nav {
    border-bottom: none;
    display: block !important;
    visibility: visible !important;
  }

  .nav__list {
    display: flex !important;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    visibility: visible !important;
    flex-wrap: nowrap;
  }

  .nav__item {
    position: relative;
  }

  .nav__link {
    display: block;
    padding: 32px 12px;
    padding-bottom: 38px;
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
  }

  .nav__link:hover {
    color: #000000;
  }

  .nav__link::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: #dc2626;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.95s ease;
  }

  /* Only show underline on hover/active */
  .nav__item:hover .nav__link::after,
  .nav__item:focus-within .nav__link::after,
  .nav__link--active::after,
  .nav__item.nav__item--has-dropdown.is-active .nav__link::after {
    transform: scaleX(1);
  }

  /* Dropdown Styles - Centered on page */
  .nav__item--has-dropdown {
    --nav-dropdown-delay: 0s;
  }

  .nav__item--has-dropdown:hover {
    --nav-dropdown-delay: 0.25s;
  }

  .nav__item--has-dropdown:focus-within,
  .nav__item--has-dropdown.is-active {
    --nav-dropdown-delay: 0s;
  }

  .nav__dropdown {
    --nav-dropdown-product-size: 220px;
    position: fixed;
    top: calc(var(--nav-dropdown-offset, var(--header-height, 140px)) + 0px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition-property: opacity, transform;
    transition-duration: 0.3s, 0.3s;
    transition-timing-function: ease, ease;
    transition-delay: 0s, 0s;
    z-index: 1001;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

  .nav__item--has-dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: var(--nav-dropdown-delay), var(--nav-dropdown-delay);
  }

  .nav__item--has-dropdown:focus-within .nav__dropdown,
  .nav__item--has-dropdown.is-active .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s, 0s;
  }

  .nav__dropdown-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 48px;
  }

  .nav__dropdown-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
    width: 100%;
  }

  /* Sub-categories - centered and horizontal */
  .nav__dropdown-categories {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
    padding: 0 0 24px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px;
  }

  .nav__dropdown-category {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s ease;
    text-align: center;
    white-space: nowrap;
  }

  .nav__dropdown-category::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: #dc2626;
    margin: 0 auto;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
  }

  .nav__dropdown-category:hover,
  .nav__dropdown-category--active {
    color: #000000;
  }

  /* Only show underline on hover/active */
  .nav__dropdown-category:hover::after,
  .nav__dropdown-category--active::after {
    transform: scaleX(1);
  }

  /* Product images - full width below categories */
  .nav__dropdown-products {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
  }

  .nav__dropdown-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0s;
  }

  .nav__dropdown-grid.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.25s;
  }

  .nav__dropdown-product {
    display: flex;
    flex-direction: column;
  }

  .nav__dropdown-product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: opacity 0.2s ease;
  }

  .nav__dropdown-product-link:hover {
    opacity: 0.8;
  }

  .nav__dropdown-product-image {
    width: min(100%, var(--nav-dropdown-product-size, 220px));
    aspect-ratio: 1;
    object-fit: cover;
    background: #f5f5f5;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
  }

.nav__dropdown-product-image--placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #f5f5f5;
  border: 1px dashed #d9d9d9;
}

  .nav__dropdown-product-title {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
  }

  /* VIEW ALL button */
  .nav__dropdown-footer {
    display: flex;
    justify-content: center;
    padding-top: 8px;
  }

  .nav__dropdown-view-all {
    display: inline-block;
    padding: 10px 32px;
    border: 1px solid #000000;
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    background: transparent;
  }

  .nav__dropdown-view-all:hover {
    background: #000000;
    color: #ffffff;
  }

  @media (max-width: 1280px) {
    .nav__dropdown {
      --nav-dropdown-product-size: 180px;
    }
  }

  @media (max-width: 1024px) {
    .nav__dropdown {
      --nav-dropdown-product-size: 150px;
    }
  }

  @media (max-width: 900px) {
    :root {
      --header-height: 100px;
    }

    .header__menu-toggle {
      display: flex;
    }

    .header__nav {
      display: none !important;
    }

    .header__actions {
      gap: 8px;
      flex-wrap: wrap;
    }

    .nav__dropdown {
      --nav-dropdown-product-size: 130px;
    }
  }

  button,
  input[type='submit'],
  .button,
  .btn,
  .wishlist__cta,
  .nav__dropdown-view-all,
  .shopify-payment-button__button,
  .shopify-payment-button__more-options {
    border-radius: 8px;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    :root {
      --header-height: 120px;
    }

    .header__container {
      padding: 0 20px;
    }

    .header__top {
      margin-top: 20px;
      padding: 16px 0;
    }

    .header__top .header__container {
      gap: 12px;
    }

    .header__actions {
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .header__icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
    }

    .header__icon img {
      width: 22px;
      height: 22px;
      min-width: 22px;
      min-height: 22px;
    }

    .header__icon svg {
      width: 22px;
      height: 22px;
    }

    .header__icon--location {
      display: none;
    }

    .nav__list {
      justify-content: center;
      flex-wrap: nowrap;
      gap: 0;
      padding: 0 12px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .nav__list::-webkit-scrollbar {
      display: none;
    }

    .nav__link {
      padding: 22px 10px;
      padding-bottom: 32px;
      font-size: 12px;
      letter-spacing: 0.2px;
    }

    .nav__link::after {
      left: 14px;
      right: 14px;
      bottom: 20px;
    }

    .nav__dropdown {
      --nav-dropdown-product-size: 150px;
    }

    .nav__dropdown-inner {
      padding: 26px 20px;
    }

    .nav__dropdown-wrapper {
      flex-direction: column;
      gap: 20px;
    }

    .nav__dropdown-categories {
      gap: 18px;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
    }

    .nav__dropdown-categories::-webkit-scrollbar {
      height: 4px;
    }

    .nav__dropdown-categories::-webkit-scrollbar-thumb {
      background: #d0d0d0;
      border-radius: 2px;
    }

    .nav__dropdown-grid {
      grid-template-columns: repeat(5, minmax(120px, 1fr));
      gap: 12px;
    }
  }

  @media (max-width: 768px) {
    :root {
      --header-height: 100px;
    }

    .header__container {
      padding: 0 16px;
    }

    .header__top {
      margin-top: 16px;
      padding: 12px 0;
    }

    .header__menu-toggle {
      display: flex;
    }

    .header__logo {
      left: 50%;
      transform: translateX(-50%);
    }

    .logo-image {
      max-height: 36px;
    }

    .header__nav {
      display: none !important;
    }

    .header__actions {
      gap: 6px;
    }

    .header__icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
    }

    .header__icon img {
      width: 22px;
      height: 22px;
      min-width: 22px;
      min-height: 22px;
    }

    .header__icon svg {
      width: 22px;
      height: 22px;
    }

    .badge {
      top: 0;
      right: 0;
      min-width: 16px;
      height: 16px;
      font-size: 9px;
      padding: 0 4px;
    }

    .nav__dropdown-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .nav__dropdown-categories {
      gap: 12px;
      padding-bottom: 16px;
      margin-bottom: 16px;
    }

    .nav__dropdown-inner {
      padding: 24px 16px;
    }

    .nav__dropdown-category {
      font-size: 12px;
      padding: 6px 0;
    }
  }

  @media (max-width: 480px) {
    :root {
      --header-height: 88px;
    }

    .header__top {
      margin-top: 12px;
      padding: 10px 0;
    }

    .header__container {
      padding: 0 12px;
    }

    .logo-image {
      max-height: 32px;
    }

    .header__actions {
      gap: 4px;
    }

    .header__icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
    }

    .header__icon img {
      width: 20px;
      height: 20px;
      min-width: 20px;
      min-height: 20px;
    }

    .header__icon svg {
      width: 20px;
      height: 20px;
    }

    .header__icon--account {
      display: none;
    }

    .nav__dropdown-inner {
      padding: 20px 12px;
    }

    .nav__dropdown-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .nav__dropdown-categories {
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      padding-bottom: 12px;
      margin-bottom: 12px;
    }

    .nav__dropdown-category {
      font-size: 11px;
      padding: 4px 0;
    }

    .mobile-menu__panel {
      width: min(280px, 90vw);
    }

    .mobile-menu__link {
      padding: 14px 16px;
      font-size: 15px;
      min-height: 52px;
    }

    .mobile-menu__sublink {
      padding: 12px 16px 12px 36px;
      font-size: 13px;
    }
  }

  .cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
  }

  .cart-drawer.is-open {
    pointer-events: auto;
  }

  .cart-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .cart-drawer.is-open .cart-drawer__overlay {
    opacity: 1;
  }

  .cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(450px, 92vw);
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    padding: 20px 24px 24px;
    gap: 18px;
    border-left: 1px solid #e8e8e8;
  }

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

  .cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
  }

  .cart-drawer__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #111111;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .cart-drawer__close {
    background: none;
    border: 0;
    color: #555555;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
  }

  .cart-drawer__items {
    flex: 1 1 auto;
    overflow-y: auto;
    margin: 0;
    padding: 12px 0 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #f1f1f1;
  }

.cart-drawer__items.is-hidden,
.cart-drawer__footer.is-hidden,
.cart-drawer__empty.is-hidden {
  display: none;
}

  .cart-drawer__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0 16px;
    border-bottom: 1px solid #f0f0f0;
  }

  .cart-drawer__item-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 auto;
  }

  .cart-drawer__item-image {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .cart-drawer__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cart-drawer__item-title {
    font-size: 14px;
    font-weight: 600;
    color: #0f0f0f;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2px;
  }

  .cart-drawer__item-title:hover {
    color: #666666;
  }

  .cart-drawer__item-variant,
  .cart-drawer__item-quantity,
  .cart-drawer__item-price {
    margin: 0 0 2px 0;
    font-size: 13px;
    color: #4a4a4a;
  }

  .cart-drawer__item-quantity {
    font-weight: 500;
  }

  .cart-drawer__item-price {
    font-weight: 500;
    color: #111111;
    margin-bottom: 0;
  }

  .cart-drawer__remove-form {
    display: flex;
    align-self: flex-start;
  }

  .cart-drawer__remove-btn {
    background: none;
    border: 0;
    color: #999999;
    cursor: pointer;
    padding: 2px;
    transition: opacity 0.2s ease;
  }

  .cart-drawer__remove-btn:hover {
    opacity: 0.75;
  }

  .cart-drawer__remove-icon {
    width: 16px;
    height: 16px;
    display: block;
  }

  .cart-drawer__footer {
    border-top: 1px solid #f1f1f1;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cart-drawer__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
  }

  .cart-drawer__summary-label {
    color: #000;
    font-size: 24px;
    font-weight: 700;
  }

  .cart-drawer__summary-value {
    color: #000;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
  }

  .cart-drawer__note {
    margin: 0;
    font-size: 12px;
    color: #777777;
    letter-spacing: 0.02em;
  }

  .cart-drawer__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cart-drawer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .cart-drawer__button--secondary {
    background: #111111;
    color: #ffffff;
    border: 1px solid #111111;
  }

  .cart-drawer__button--secondary:hover {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  }

  .cart-drawer__button--primary {
    background: #ffffff;
    color: #111111;
    border: 1px solid #111111;
  }

  .cart-drawer__button--primary:hover {
    background: #111111;
    color: #ffffff;
  }

  .cart-drawer__empty {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    font-size: 16px;
    color: #555555;
    padding: 40px 20px;
    gap: 16px;
  }

  .cart-drawer__empty-message {
    margin: 0;
  }

  .cart-drawer__button--link {
    background: transparent;
    color: #111111;
    border: 1px solid #111111;
    width: 100%;
  }

  .cart-drawer__button--link:hover {
    background: #111111;
    color: #ffffff;
  }

  @media (max-width: 768px) {
    .cart-drawer__panel {
      width: min(100%, 92vw);
      padding: 20px;
      max-height: 100vh;
    }

    .cart-drawer__item {
      gap: 12px;
      align-items: flex-start;
    }

    .cart-drawer__item-image {
      width: 60px;
      height: 60px;
    }

    .cart-drawer__item-title {
      font-size: 14px;
    }

    .cart-drawer__item-variant,
    .cart-drawer__item-quantity,
    .cart-drawer__item-price {
      font-size: 13px;
    }

    .cart-drawer__actions {
      grid-template-columns: 1fr;
    }

    .cart-drawer__button {
      padding: 12px 16px;
      font-size: 14px;
    }

    .cart-drawer__button--link {
      font-size: 13px;
    }

    .cart-drawer__summary {
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .cart-drawer__panel {
      width: 100vw;
      padding: 16px;
    }

    .cart-drawer__item {
      gap: 10px;
    }

    .cart-drawer__item-image {
      width: 64px;
      height: 64px;
    }

    .cart-drawer__header {
      padding-bottom: 12px;
    }

    .cart-drawer__title {
      font-size: 18px;
    }

    .cart-drawer__item-title {
      font-size: 13px;
    }

    .cart-drawer__item-variant,
    .cart-drawer__item-quantity,
    .cart-drawer__item-price {
      font-size: 12px;
    }
  }
.page-content {
    min-height: 60vh;
    padding: 40px 24px;
  }
.hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero-section[data-hero-reveal].is-animatable {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-section[data-hero-reveal].is-animatable.is-visible {
  opacity: 1;
}

.hero-section__media {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 800px;
}

.hero-section__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

{% comment %} .hero-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.35) 100%);
} {% endcomment %}

.hero-section .hero-section__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end !important;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 6vw, 64px) 24px;
}

.hero-section__copy {
  max-width: min(720px, 90vw);
  color: #ffffff;
}

.hero-section__heading {
  font-size: clamp(26px, 7vw, 48px);
  text-transform: uppercase;
  margin: 0 0 22px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-section__subheading {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.65;
  margin: 0 auto 32px;
}

.hero-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.92);
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  min-width: 200px;
  border-radius: 8px;
  white-space: nowrap;
}

.hero-section__button:hover {
  background-color: #ffffff;
  color: #0f0f0f;
}

/* Responsive styles below large breakpoint */
@media (max-width: 1023px) {
  .hero-section__button {
    width: clamp(160px, 40vw, 200px);
    height: clamp(48px, 12vw, 60px);
    font-size: clamp(14px, 3.5vw, 20px);
    min-width: clamp(160px, 40vw, 200px);
    padding: 0 clamp(16px, 4vw, 24px);
  }
}

@media (max-width: 768px) {
  .hero-section__media {
    height: 600px;
  }
}

@media (max-width: 480px) {
  .hero-section__media {
    height: 480px;
  }
}
.hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero-section[data-hero-reveal].is-animatable {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-section[data-hero-reveal].is-animatable.is-visible {
  opacity: 1;
}

.hero-section__media {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 800px;
}

.hero-section__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

{% comment %} .hero-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.35) 100%);
} {% endcomment %}

.hero-section--mens .hero-section__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end !important;
  justify-content: center;
  text-align: center;
  padding: clamp(24px, 6vw, 64px) 24px;
}

.hero-section__copy {
  max-width: min(720px, 90vw);
  color: #ffffff;
}

.hero-section__heading {
  font-size: clamp(26px, 7vw, 48px);
  text-transform: uppercase;
  margin: 0 0 22px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-section__subheading {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.65;
  margin: 0 auto 32px;
}

.hero-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.92);
  color: #ffffff;
  border: none;
  text-transform: uppercase;
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  min-width: 200px;
  border-radius: 8px;
  white-space: nowrap;
}

.hero-section__button:hover {
  background-color: #ffffff;
  color: #0f0f0f;
}

.hero-section--mens {
  margin-top: 64px;
}

/* Responsive styles below large breakpoint */
@media (max-width: 1023px) {
  .hero-section__button {
    width: clamp(160px, 40vw, 200px);
    height: clamp(48px, 12vw, 60px);
    font-size: clamp(14px, 3.5vw, 20px);
    min-width: clamp(160px, 40vw, 200px);
    padding: 0 clamp(16px, 4vw, 24px);
  }
}

@media (max-width: 768px) {
  .hero-section__media {
    height: 600px;
  }

  .hero-section--mens {
    margin-top: 48px;
  }
}

@media (max-width: 480px) {
  .hero-section__media {
    height: 480px;
  }

  .hero-section--mens {
    margin-top: 32px;
  }
}
.newsletter-section {
  background-color: #ffffff;
  padding: 70px 24px;
  width: 100%;
  border-top: 1px solid #e5e5e5;
}

.newsletter-section__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.newsletter-section__title {
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.newsletter-section__description {
  font-size: 19px;
  font-weight: 300;
  color: #7a7a7a;
  line-height: 1.6;
  margin: 0;
  max-width: 580px;
}

.newsletter-section__form {
  width: 100%;
  max-width: 560px;
  margin-top: 12px;
}

.newsletter-section__form-wrapper {
  display: flex;
  gap: 10px;
  width: 100%;
}

.newsletter-section__input {
  flex: 1;
  padding: 15px 20px;
  font-size: 15px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  background-color: #ffffff;
  color: #000000;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.newsletter-section__input::placeholder {
  color: #a8a8a8;
}

.newsletter-section__input:focus {
  border-color: #000000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.newsletter-section__button {
  padding: 15px 40px;
  background-color: #000000;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border: 1px solid #000000;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.newsletter-section__button:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

.newsletter-section__success {
  margin-top: 20px;
  padding: 16px 24px;
  background-color: #f0f9f4;
  color: #0d5c2e;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #c3e6cd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.newsletter-section__error {
  margin-top: 20px;
  padding: 16px 24px;
  background-color: #fef2f2;
  color: #991b1b;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #fecaca;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 50px 20px;
  }

  .newsletter-section__title {
    font-size: 26px;
  }

  .newsletter-section__description {
    font-size: 16px;
  }

  .newsletter-section__form {
    max-width: 100%;
  }
}

.newsletter-section__subscribed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-section__subscribed-text {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .newsletter-section__title {
    font-size: 22px;
  }

  .newsletter-section__description {
    font-size: 15px;
  }

  .newsletter-section__form-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-section__button {
    width: 100%;
    padding: 14px 24px;
  }

  .newsletter-section__subscribed {
    padding: 18px 15px;
  }

  .newsletter-section__subscribed-text {
    font-size: 14px;
  }
}
.packaging-content {
    background: #ffffff;
    padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 40px);
  }

  .packaging-content__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .packaging-content__intro {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
  }

  .packaging-content__heading {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #111111;
  }

  .packaging-content__description {
    margin: 0;
    font-size: clamp(16px, 2vw, 18px);
    color: #666666;
    line-height: 1.6;
  }

  .packaging-content__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: clamp(48px, 8vw, 80px);
  }

  .packaging-content__feature {
    text-align: center;
    padding: 24px;
  }

  .packaging-content__feature-title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    color: #111111;
  }

  .packaging-content__feature-text {
    margin: 0;
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
  }

  .packaging-content__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: clamp(48px, 8vw, 80px);
  }

  .packaging-content__gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
  }

  .packaging-content__gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .packaging-content__gallery-item:hover .packaging-content__gallery-img {
    transform: scale(1.05);
  }

  .packaging-content__includes {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
  }

  .packaging-content__includes-title {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 600;
    color: #111111;
    text-align: center;
  }

  .packaging-content__includes-list {
    margin: 0;
    padding-left: 24px;
    font-size: 16px;
    color: #333333;
    line-height: 2;
  }

  .packaging-content__includes-list li {
    margin-bottom: 8px;
  }
.packaging-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .packaging-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .packaging-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .packaging-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  }

  .packaging-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
  }

  .packaging-hero__title {
    margin: 0 0 16px;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
  }

  .packaging-hero__subtitle {
    margin: 0;
    font-size: clamp(16px, 2.5vw, 20px);
    color: #ffffff;
    opacity: 0.95;
  }
.product-page {
  background: #ffffff;
}

.product-page__banner {
  position: relative;
  width: 100%;
  min-height: 120px;
  max-height: 120px;
  overflow: hidden;
}

.product-page__banner-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.product-page__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.product-page__banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-page__banner-title {
  margin: 0;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 600;
  color: #ffffff;
  text-align: center;
}

.product-page__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) clamp(20px, 4vw, 40px);
  width: 100%;
  box-sizing: border-box;
}

.product-page__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  margin-bottom: clamp(48px, 8vw, 80px);
}

.product-page__images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-page__image-main {
  flex: 1;
  width: 100%;
  max-width: 472px;
  height: 484px;
  background: #ffffff;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 472 / 484;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.product-page__image-main::before,
.product-page__image-main::after {
  display: none !important;
  content: none !important;
}

.product-page__image {
  width: 100%;
  height: 100%;
  max-width: 472px;
  max-height: 484px;
  object-fit: cover;
  display: block;
  border: none;
  outline: none;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
}

.product-page__media-gallery {
  width: 100%;
  max-width: 472px;
  position: relative;
}

.product-page__media-slide {
  display: none;
  width: 100%;
  min-height: 484px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.product-page__media-slide.is-active {
  display: block;
}

.product-page__model-viewer,
.product-page__media-slide model-viewer {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
}

.product-page__video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #000;
}

.product-page__image::before,
.product-page__image::after {
  display: none !important;
  content: none !important;
}

.product-page__image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.product-page__image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-radius: 8px;
}

.product-page__placeholder-svg {
  width: 60%;
  height: 60%;
  opacity: 0.3;
}

.product-page__thumbnails {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.product-page__thumbnail {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.2s ease;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.product-page__thumbnail::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.2s ease;
  pointer-events: none;
  opacity: 0;
}

.product-page__thumbnail:hover::after {
  border-color: #d0d0d0;
  opacity: 1;
}

.product-page__thumbnail.active::after {
  border-color: #111111;
  opacity: 1;
}

.product-page__thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.product-page__thumbnail-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  border-radius: 999px;
}

.product-page__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 0;
}

.product-page__sku {
  margin: 0 0 8px;
  font-size: 14px;
  color: #8a8a8a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-page__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: #111111;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.product-page__price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

.product-page__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.product-page__price-current {
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 700;
  color: #111111;
}

.product-page__price-compare {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #999999;
  text-decoration: line-through;
  font-weight: 400;
}

.product-page__product-id {
  margin: 0;
  font-size: 13px;
  color: #666666;
  letter-spacing: 0.04em;
}

.product-page__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
}

.product-page__purchase {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-page__quantity-wrapper {
  flex: 0 0 auto;
}

.product-page__quantity-input {
  width: 80px;
  padding: 12px;
  border: 1px solid #111111;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
  color: #111111;
  background: #ffffff;
}

.product-page__quantity-input:focus {
  outline: none;
  border-color: #111111;
}

.product-page__add-to-cart {
  flex: 1;
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page__add-to-cart:hover:not(:disabled) {
  background: #111111;
  color: #ffffff;
}

.product-page__add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-page__buy-now {
  width: 100%;
  padding: 14px 24px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page__buy-now:hover {
  background: #333333;
}

.product-page__ar-button {
  width: 100%;
  margin-top: 8px;
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #111111;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-page__ar-button:hover {
  background: #111111;
  color: #ffffff;
}

.product-page__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8e8e8;
  margin-top: 0;
}

.product-page__meta-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  background: none;
  border: none;
  font-size: 20px;
  font-family: var(--font-body-family, inherit);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #000;
  cursor: pointer;
  transition: color 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
  text-decoration: none;
}

.product-page__meta-button:hover {
  color: #111111;
}

.product-page__wishlist-icon {
  transition: all 0.3s ease;
}

.product-page__meta-button[data-wishlist-active="true"] .product-page__wishlist-icon path {
  fill: #dc2626;
  stroke: #dc2626;
}

.product-page__meta-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}



.product-page__description {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
}

.product-page__description-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px;
  line-height: 1.6;
}

.product-page__description-content {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  transition: max-height 0.3s ease;
  flex: 1 1 auto;
}

.product-page__description[data-collapsed="true"] .product-page__description-content {
  max-height: 166px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  width: 100%;
}

.product-page__description[data-collapsed="false"] .product-page__description-content {
  max-height: none;
  overflow: visible;
  display: block;
}

.product-page__description-toggle {
  padding: 0;
  margin: 0;
  margin-left: 4px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: inline;
  vertical-align: baseline;
  line-height: 1.6;
}

.product-page__description-toggle:hover {
  color: #000000;
}

.product-page__description-toggle-text {
  display: inline;
}

.product-page__description-toggle:hover {
  color: #666666;
}

.product-page__packaging {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}

.product-page__packaging-options {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.product-page__packaging-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.product-page__packaging-input {
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
  cursor: pointer;
  accent-color: #111111;
  flex-shrink: 0;
}

.product-page__packaging-label {
  font-size: 20px;
  font-weight: 400;
  color: #111111;
  cursor: pointer;
}

.product-page__packaging-details {
  margin-top: 16px;
}

.product-page__packaging-title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 16px 0;
}

.product-page__packaging-list {
  margin: 0;
  padding-left: 20px;
  list-style-type: decimal;
}

.product-page__packaging-list li {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 12px;
  padding-left: 8px;
}

@media (max-width: 767px) {
  .product-page__packaging-list li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.product-page__packaging-images {
  display: block;
  margin-top: clamp(48px, 8vw, 80px);
  width: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
}

.product-page__packaging-images-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 clamp(24px, 4vw, 40px) 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-page__packaging-images-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #666666;
}

.product-page__packaging-images:hover .product-page__packaging-images-icon {
  transform: translateX(6px);
  color: #111111;
}

.product-page__packaging-images-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(20px, 4vw, 32px);
  width: 100%;
}

.product-page__packaging-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-page__packaging-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 767px) {
  .product-page__packaging-images-gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
  }
}

.product-page__description-content h1,
.product-page__description-content h2,
.product-page__description-content h3,
.product-page__description-content h4,
.product-page__description-content h5,
.product-page__description-content h6 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #1a1a1a;
}

.product-page__description-content p {
  margin: 0 0 16px;
}

.product-page__description-content ul,
.product-page__description-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.product-page__description-content li {
  margin-bottom: 8px;
}

.product-page__description-content a {
  color: #111111;
  text-decoration: underline;
}

.product-page__description-content a:hover {
  color: #666666;
}

.product-page__related {
  margin-top: clamp(48px, 8vw, 80px);
}

.product-page__related-title {
  margin: 0 0 clamp(24px, 4vw, 40px);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: #1a1a1a;
}

.product-page__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: clamp(20px, 4vw, 32px);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card__link {
  display: block;
  text-decoration: none;
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.product-card__link:hover .product-card__image {
  border-color: #111111;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-card__placeholder {
  width: 60%;
  height: 60%;
  opacity: 0.2;
}

.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.product-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card__title a:hover {
  color: #666666;
}

.product-card__sku {
  margin: 0;
  font-size: 11px;
  color: #8a8a8a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.product-card__price-current {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
}

.product-card__price-compare {
  font-size: 13px;
  color: #999999;
  text-decoration: line-through;
  font-weight: 400;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Extra Large (xl) - 1280px and above */
@media (min-width: 1280px) {
  .product-page__container {
    padding: 64px 40px;
  }

  .product-page__main {
    gap: 120px;
  }

  .product-page__related-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 40px;
  }
}

/* Large (lg) - 1024px to 1279px */
@media (max-width: 1279px) and (min-width: 1024px) {
  .product-page__container {
    padding: clamp(48px, 5vw, 64px) clamp(32px, 3vw, 40px);
  }

  .product-page__main {
    gap: clamp(60px, 6vw, 100px);
  }

  .product-page__related-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 32px;
  }
}

/* Medium (md) - 768px to 1023px - Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
  .product-page__banner {
    min-height: 100px;
    max-height: 100px;
  }

  .product-page__banner-image {
    height: 100px;
  }

  .product-page__banner-title {
    font-size: clamp(20px, 3vw, 28px);
  }

  .product-page__container {
    padding: 48px 32px;
  }

  .product-page__main {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
  }

  .product-page__images {
    order: 1;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .product-page__image-main {
    max-width: 100%;
    height: auto;
    aspect-ratio: 472 / 484;
  }

  .product-page__details {
    order: 2;
    padding-top: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .product-page__title {
    font-size: clamp(24px, 3.5vw, 32px);
  }

  .product-page__price-current {
    font-size: clamp(24px, 3vw, 30px);
  }

  .product-page__price-compare {
    font-size: clamp(16px, 2vw, 20px);
  }

  .product-page__purchase {
    gap: 12px;
  }

  .product-page__quantity-input {
    width: 70px;
    padding: 11px;
    font-size: 14px;
  }

  .product-page__add-to-cart,
  .product-page__buy-now {
    padding: 13px 22px;
    font-size: 12px;
  }

  .product-page__meta {
    gap: 16px;
    flex-wrap: wrap;
  }

  .product-page__meta-button {
    font-size: 20px;
  }

  .product-page__meta-icon {
    width: 24px;
    height: 24px;
  }

  .product-page__description-content {
    font-size: 14px;
    line-height: 1.65;
  }

  .product-page__related {
    margin-top: 64px;
  }

  .product-page__related-title {
    font-size: clamp(22px, 3vw, 26px);
    margin-bottom: 36px;
  }

  .product-page__related-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
  }

  .product-card__title {
    font-size: 13px;
  }

  .product-card__price-current {
    font-size: 14px;
  }
}

/* Small (sm) - 640px to 767px - Large Mobile / Small Tablet */
@media (max-width: 767px) and (min-width: 640px) {
  .product-page__banner {
    min-height: 90px;
    max-height: 90px;
  }

  .product-page__banner-image {
    height: 90px;
  }

  .product-page__banner-title {
    font-size: clamp(18px, 2.5vw, 24px);
  }

  .product-page__container {
    padding: 40px 24px;
  }

  .product-page__main {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 56px;
  }

  .product-page__images {
    order: 1;
    max-width: 100%;
    gap: 12px;
  }

  .product-page__thumbnails {
    flex-direction: row;
    gap: 10px;
  }

  .product-page__thumbnail {
    width: 70px;
    height: 70px;
  }

  .product-page__image-main {
    max-width: 100%;
    height: auto;
    aspect-ratio: 472 / 484;
  }

  .product-page__details {
    order: 2;
    padding-top: 0;
    gap: 14px;
  }

  .product-page__sku {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .product-page__title {
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 10px;
  }

  .product-page__price-wrapper {
    gap: 6px;
    margin-bottom: 8px;
  }

  .product-page__price {
    gap: 10px;
  }

  .product-page__price-current {
    font-size: clamp(22px, 2.8vw, 28px);
  }

  .product-page__price-compare {
    font-size: clamp(15px, 1.8vw, 19px);
  }

  .product-page__product-id {
    font-size: 12px;
  }

  .product-page__form {
    gap: 14px;
  }

  .product-page__purchase {
    gap: 10px;
  }

  .product-page__quantity-input {
    width: 65px;
    padding: 11px;
    font-size: 14px;
  }

  .product-page__add-to-cart,
  .product-page__buy-now {
    padding: 13px 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .product-page__meta {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 14px;
  }

  .product-page__meta-button {
    font-size: 20px;
    gap: 5px;
  }

  .product-page__meta-icon {
    width: 24px;
    height: 24px;
  }

  .product-page__description {
    margin-top: 14px;
  }

  .product-page__description-content {
    font-size: 14px;
    line-height: 1.6;
  }

  .product-page__related {
    margin-top: 56px;
  }

  .product-page__related-title {
    font-size: clamp(20px, 2.5vw, 24px);
    margin-bottom: 28px;
  }

  .product-page__related-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
  }

  .product-card__title {
    font-size: 13px;
  }

  .product-card__price-current {
    font-size: 14px;
  }
}

/* Extra Small (xs) - Below 640px - Mobile */
@media (max-width: 639px) {
  .product-page__banner {
    min-height: 80px;
    max-height: 80px;
  }

  .product-page__banner-image {
    height: 80px;
  }

  .product-page__banner-content {
    padding: 12px;
  }

  .product-page__banner-title {
    font-size: 18px;
    line-height: 1.2;
  }

  .product-page__container {
    padding: 32px 20px;
  }

  .product-page__main {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }

  .product-page__images {
    order: 1;
    gap: 10px;
  }

  .product-page__thumbnails {
    flex-direction: row;
    gap: 8px;
  }

  .product-page__thumbnail {
    width: 60px;
    height: 60px;
  }

  .product-page__image-main {
    max-width: 100%;
    height: auto;
    aspect-ratio: 472 / 484;
  }

  .product-page__details {
    order: 2;
    padding-top: 0;
    gap: 14px;
  }

  .product-page__sku {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .product-page__title {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .product-page__price-wrapper {
    gap: 6px;
    margin-bottom: 8px;
  }

  .product-page__price {
    gap: 8px;
    flex-wrap: wrap;
  }

  .product-page__price-current {
    font-size: 24px;
  }

  .product-page__price-compare {
    font-size: 16px;
  }

  .product-page__product-id {
    font-size: 11px;
  }

  .product-page__form {
    gap: 12px;
  }

  .product-page__purchase {
    flex-direction: column;
    gap: 12px;
  }

  .product-page__quantity-wrapper {
    width: 100%;
  }

  .product-page__quantity-input {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }

  .product-page__add-to-cart {
    width: 100%;
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .product-page__buy-now {
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .product-page__meta {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
    justify-content: space-between;
  }

  .product-page__meta-button {
    font-size: 20px;
    gap: 4px;
    flex: 1;
    min-width: calc(33.333% - 8px);
    justify-content: center;
  }

  .product-page__meta-icon {
    width: 24px;
    height: 24px;
  }

  .product-page__description {
    margin-top: 12px;
  }

  .product-page__description-content {
    font-size: 14px;
    line-height: 1.6;
  }

  .product-page__description-content h1,
  .product-page__description-content h2,
  .product-page__description-content h3,
  .product-page__description-content h4,
  .product-page__description-content h5,
  .product-page__description-content h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
  }

  .product-page__description-content p {
    margin-bottom: 12px;
  }

  .product-page__description-content ul,
  .product-page__description-content ol {
    margin-bottom: 12px;
    padding-left: 20px;
  }

  .product-page__related {
    margin-top: 48px;
  }

  .product-page__related-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .product-page__related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-card {
    gap: 10px;
  }

  .product-card__image {
    padding: 12px;
  }

  .product-card__info {
    gap: 4px;
  }

  .product-card__title {
    font-size: 12px;
  }

  .product-card__sku {
    font-size: 10px;
  }

  .product-card__price {
    gap: 6px;
    margin-top: 2px;
  }

  .product-card__price-current {
    font-size: 13px;
  }

  .product-card__price-compare {
    font-size: 11px;
  }
}
.search-template {
    background: #ffffff;
  }

  .search-template__hero-image-wrapper {
    position: relative;
    min-height: 140px;
    max-height: 180px;
    overflow: hidden;
  }

  .search-template__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 140px;
  }

  .search-template__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.3) 100%);
  }

  .search-template__hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding: 24px;
  }

  .search-template__hero-title {
    margin: 0;
    font-size: clamp(24px, 4vw, 34px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .search-template__content {
    padding: clamp(48px, 6vw, 72px) clamp(20px, 6vw, 80px);
  }

  .search-template__panel {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .search-template__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
  }

  .search-template__label {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666666;
  }

  .search-template__input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    padding: 8px;
    background: #fafafa;
  }

  .search-template__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 18px;
    font-size: 16px;
    outline: none;
  }

  .search-template__submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: #111111;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .search-template__submit:hover {
    background: #222222;
  }

  .search-template__hint {
    margin: 0;
    font-size: 13px;
    color: #777777;
  }

  .search-template__popular {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
  }

  .search-template__popular-title {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #666666;
  }

  .search-template__popular-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .search-template__popular-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #d8d8d8;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: #333333;
    transition: border-color 0.2s ease, color 0.2s ease;
  }

  .search-template__popular-link:hover {
    border-color: #111111;
    color: #111111;
  }

  .search-template__results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .search-template__results-count {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #444444;
  }

  .search-template__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .search-template__result-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 100%;
  }

  .search-template__result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  }

  .search-template__result-media {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
    background: #fafafa;
  }

  .search-template__result-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .search-template__result-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 13px;
    color: #777777;
    text-align: center;
  }

  .search-template__result-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px 20px;
  }

  .search-template__result-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111111;
  }

  .search-template__result-type {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #777777;
  }

  .search-template__result-price {
    margin: 0;
    font-size: 14px;
    color: #111111;
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .search-template__result-price--sale {
    color: #dc2626;
    font-weight: 600;
  }

  .search-template__result-price--compare {
    text-decoration: line-through;
    color: #999999;
    font-size: 13px;
  }

  .search-template__result-excerpt {
    margin: 0;
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
  }

  .search-template__pagination {
    display: flex;
    justify-content: center;
  }

  .search-template__empty {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .search-template__empty-title {
    margin: 0;
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 600;
  }

  .search-template__empty-subtitle {
    margin: 0;
    font-size: 15px;
    color: #555555;
    max-width: 520px;
    line-height: 1.7;
  }

  .search-template__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .search-template__button--secondary {
    border: 1px solid #111111;
    color: #111111;
  }

  .search-template__button--secondary:hover {
    background: #111111;
    color: #ffffff;
  }

  @media (max-width: 768px) {
    .search-template__hero-title {
      letter-spacing: 0.16em;
    }

    .search-template__grid {
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
  }
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
.shop-collection {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.shop-collection[data-hero-reveal].is-animatable {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.shop-collection[data-hero-reveal].is-animatable.is-visible {
  opacity: 1;
}

.shop-collection__media {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: clamp(420px, 70vw, 640px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end !important;
  justify-content: center;
}

{% comment %} .shop-collection__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.6) 100%);
} {% endcomment %}

.shop-collection__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: clamp(32px, 6vw, 48px) clamp(16px, 8vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  align-self: flex-end;
  width: 100%;
}

.shop-collection__heading {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 48px);
  text-transform: uppercase;
  font-weight: 500;
}

.shop-collection__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 65px;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.92);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.shop-collection__button:hover {
  background-color: #ffffff;
  color: #0f0f0f;
}

/* Responsive styles below large breakpoint */
@media (max-width: 1023px) {
  .shop-collection__button {
    width: clamp(200px, 50vw, 300px);
    height: clamp(50px, 12.5vw, 65px);
    font-size: clamp(14px, 3.5vw, 20px);
    padding: 0 clamp(20px, 5vw, 30px);
  }
}
.welcome-card-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .welcome-card-modal {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 700px;
    height: 550px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease-out;
  }

  @keyframes slideUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .welcome-card-close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .welcome-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
  }

  .welcome-card-image {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    height: 100%;
  }

  .welcome-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .welcome-card-text {
    padding: 15px 25px 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: white;
  }

  .welcome-card-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .welcome-card-success {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
  }

  .success-checkmark {
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease-out;
  }

  .success-checkmark svg {
    display: block;
  }

  @keyframes scaleIn {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .welcome-card-title {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 16px 0;
    color: #000;
    letter-spacing: 0.5px;
  }

  .welcome-card-description {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
    color: #6D6D6D;
    margin: 0 0 22px 0;
  }

  .welcome-card-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .welcome-card-input {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.2s ease;
    color: #333;
  }

  .welcome-card-input::placeholder {
    color: #aaa;
  }

  .welcome-card-input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 1px #1a1a1a;
  }

  .welcome-card-button {
    width: 100%;
    padding: 13px 32px;
    background: #000;
    color: white;
    border: 1px solid #000;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }

  .welcome-card-button:hover {
    background: white;
    color: #000;
  }

  .welcome-card-footer {
    font-size: 12px;
    font-weight: 300;
    color: #000;
    margin: 0;
    line-height: 1.5;
    width: 100%;
  }

  @media (max-width: 768px) {
    .welcome-card-overlay {
      padding: 16px;
    }

    .welcome-card-modal {
      width: 100%;
      height: auto;
      max-width: 420px;
    }

    .welcome-card-content {
      grid-template-columns: 1fr;
    }

    .welcome-card-image {
      display: none;
    }

    .welcome-card-text {
      padding: 32px 24px 28px;
      align-items: center;
      text-align: center;
    }

    .welcome-card-main-content {
      align-items: center;
      text-align: center;
    }

    .welcome-card-footer {
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    .welcome-card-modal {
      width: 90%;
      max-width: 420px;
      height: auto;
      max-height: 85vh;
    }

    .welcome-card-content {
      grid-template-columns: 1fr;
      height: auto;
    }

    .welcome-card-image {
      height: 240px;
      min-height: 240px;
    }

    .welcome-card-text {
      padding: 35px 30px;
    }

    .welcome-card-title {
      font-size: 18px;
      margin-bottom: 14px;
    }

    .welcome-card-description {
      font-size: 11px;
      margin-bottom: 20px;
    }

    .welcome-card-input {
      padding: 11px 16px;
      font-size: 12px;
    }

    .welcome-card-button {
      padding: 12px 28px;
      font-size: 13px;
    }

    .welcome-card-footer {
      font-size: 11px;
      margin-top: 0;
    }

    .welcome-card-main-content {
      flex: 1;
    }

    .welcome-card-close {
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
    }

    .welcome-card-close svg {
      width: 18px;
      height: 18px;
    }
  }

  @media (max-width: 480px) {
    .welcome-card-modal {
      width: 95%;
      max-width: 360px;
    }

    .welcome-card-image {
      height: 200px;
      min-height: 200px;
    }

    .welcome-card-text {
      padding: 30px 25px;
    }
  }
.wishlist {
    background: #ffffff;
  }

  .wishlist__inner {
    display: flex;
    flex-direction: column;
  }

  .wishlist__hero {
    position: relative;
  }

  .wishlist__hero-image-wrapper {
    position: relative;
    min-height: 120px;
    max-height: 120px;
    overflow: hidden;
  }

  .wishlist__hero-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
  }

  .wishlist__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 100%);
  }

  .wishlist__hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px;
    text-align: center;
    color: #ffffff;
  }

  .wishlist__hero-eyebrow {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .wishlist__hero-title {
    margin: 0;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 600;
  }

  .wishlist__content {
    padding: clamp(48px, 6vw, 80px) clamp(20px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    background: #ffffff;
  }

  .wishlist__empty {
    text-align: center;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .wishlist__empty-title {
    margin: 0;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    color: #1a1a1a;
  }

  .wishlist__empty-subtitle {
    margin: 0;
    font-size: 15px;
    color: #5c5c5c;
    line-height: 1.7;
  }

  .wishlist__cta {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    background: transparent;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.16em;
    transition: all 0.25s ease;
  }

  .wishlist__cta:hover {
    background: #1a1a1a;
    color: #ffffff;
  }

  .wishlist__empty.is-hidden {
    display: none;
  }

  .wishlist__items {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .wishlist__items.is-hidden {
    display: none;
  }

  .wishlist-card {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(80px, 96px) 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 18px 24px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }

  .wishlist-card__media {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    min-height: 96px;
  }

  .wishlist-card__media img {
    max-width: 72px;
    max-height: 72px;
    object-fit: contain;
    display: block;
  }

  .wishlist-card__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .wishlist-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
  }

  .wishlist-card__title a {
    color: inherit;
    text-decoration: none;
  }

  .wishlist-card__sku {
    margin: 0;
    font-size: 13px;
    color: #8a8a8a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .wishlist-card__price {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111111;
  }

  .wishlist-card__price--compare {
    font-size: 13px;
    color: #b0b0b0;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
  }

  .wishlist-card__price-group {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .wishlist-card__placeholder {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9c9c9c;
  }

  .wishlist-card__actions {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .wishlist-card__add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 8px;
    border: 1px solid #111111;
    background: transparent;
    color: #111111;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    min-width: 150px;
    cursor: pointer;
  }

  .wishlist-card__add:hover {
    background: #111111;
    color: #ffffff;
  }

  .wishlist-card__add.is-loading {
    opacity: 0.6;
    pointer-events: none;
  }

  .wishlist-card__remove {
    border: 0;
    background: none;
    color: #ff0000;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: none;
    cursor: pointer;
    padding: 0;
  }

  @media (max-width: 900px) {
    .wishlist-card {
      grid-template-columns: minmax(72px, 88px) 1fr;
      gap: 20px;
    }

    .wishlist-card__actions {
      grid-column: 1 / -1;
      justify-content: flex-start;
    }
  }

  @media (max-width: 640px) {
    .wishlist-card {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .wishlist-card__info {
      align-items: center;
    }

    .wishlist-card__actions {
      flex-direction: column;
      width: 100%;
    }

    .wishlist-card__add {
      width: 100%;
    }

    .wishlist-card__remove {
      width: 100%;
    }
  }

  .toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10000;
    pointer-events: none;
  }

  .toast {
    background: rgba(17, 17, 17, 0.95);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .toast--visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 640px) {
    .wishlist__hero-eyebrow {
      font-size: 10px;
      letter-spacing: 0.2em;
    }

    .wishlist__hero-title {
      font-size: 22px;
    }

    .wishlist__cta {
      width: 100%;
    }

    .wishlist-card {
      padding: 16px;
    }
  }
.z-workshop {
    background: #ffffff;
    padding: clamp(70px, 12vw, 140px) 0;
    overflow: hidden;
  }

  .z-workshop__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
  }

  .z-workshop__header {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes drawLine {
    from {
      height: 0;
    }
    to {
      height: 100%;
    }
  }

  .z-workshop__eyebrow {
    font-size: clamp(28px, 5vw, 36px);
    color: #000;
    margin: 0 0 16px 0;
    font-weight: 400;
  }

  .z-workshop__title {
    margin: 0 0 20px 0;
    font-weight: 300;
    color: #6D6D6D;
    line-height: 1.2;
    font-size: 16px;
  }

  .z-workshop__subtitle {
    font-size: clamp(15px, 2vw, 17px);
    color: #666666;
    margin: 0;
    max-width: 620px;
    margin-inline: auto;
    line-height: 1.6;
  }

  .z-workshop__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 4vw, 60px) 0;
  }

  .z-workshop__timeline::before {
    content: '';
    position: absolute;
    top: clamp(40px, 5vw, 80px);
    bottom: clamp(40px, 5vw, 80px);
    width: 2px;
    background: linear-gradient(180deg, rgba(203, 210, 223, 0), #cbd2df 12%, #cbd2df 88%, rgba(203, 210, 223, 0));
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
  }

  .z-workshop__row {
    position: relative;
    opacity: 0;
    transition: opacity 0.6s ease-out;
  }

  .z-workshop__row--visible {
    opacity: 1;
  }

  .z-workshop__row--visible .z-workshop__text-content {
    animation: fadeInLeft 0.8s ease-out forwards;
  }

  .z-workshop__row--visible .z-workshop__media-content {
    animation: fadeInRight 0.8s ease-out forwards;
  }

  .z-workshop__row--visible .z-workshop__marker-circle {
    animation: scaleIn 0.6s ease-out 0.3s forwards;
  }

  .z-workshop__row--reverse.z-workshop__row--visible .z-workshop__text-content {
    animation: fadeInRight 0.8s ease-out forwards;
  }

  .z-workshop__row--reverse.z-workshop__row--visible .z-workshop__media-content {
    animation: fadeInLeft 0.8s ease-out forwards;
  }

  .z-workshop__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: start;
    padding: clamp(35px, 5vw, 50px) 0;
  }

  .z-workshop__text-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
  }

  .z-workshop__step-header {
    display: block;
  }

  .z-workshop__step-title {
    margin: 0;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
  }

  .z-workshop__step-body {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
  }

  .z-workshop__step-body p {
    margin: 0 0 12px 0;
  }

  .z-workshop__step-body p:last-child {
    margin-bottom: 0;
  }

  .z-workshop__step-body ul {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .z-workshop__step-body li {
    list-style: disc;
  }

  .z-workshop__timeline-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 0;
    z-index: 1;
  }

  .z-workshop__marker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .z-workshop__marker-circle {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
    border: 1px solid #eef0f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 12px;
    text-align: center;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .z-workshop__marker-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.2);
  }

  .z-workshop__marker-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #d9dde7;
    color: #111827;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fc;
  }

  .z-workshop__marker-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.35;
    text-transform: capitalize;
  }

  .z-workshop__media-content {
    display: flex;
    opacity: 0;
  }

  .z-workshop__step-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .z-workshop__step-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }

  .z-workshop__placeholder {
    width: 100%;
    min-height: 280px;
    border-radius: 16px;
    background: #ececec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaaaaa;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
  }

  .z-workshop__row--reverse .z-workshop__text-content {
    order: 3;
  }

  .z-workshop__row--reverse .z-workshop__timeline-column {
    order: 2;
  }

  .z-workshop__row--reverse .z-workshop__media-content {
    order: 1;
  }

  @media (max-width: 1024px) {
    .z-workshop__content-wrapper {
      grid-template-columns: 1fr 80px 1fr;
      gap: clamp(30px, 4vw, 40px);
    }

    .z-workshop__timeline-column {
      padding: 32px 0;
    }

    .z-workshop__marker-circle {
      width: 118px;
      height: 118px;
      gap: 12px;
      padding: 16px 10px;
    }

    .z-workshop__marker-number {
      width: 34px;
      height: 34px;
      font-size: 13px;
    }

    .z-workshop__marker-name {
      font-size: 14px;
    }
  }

  @media (max-width: 768px) {
    .z-workshop {
      padding: clamp(40px, 8vw, 50px) 0;
    }

    .z-workshop__inner {
      padding: 0 clamp(16px, 4vw, 24px);
    }

    .z-workshop__content-wrapper {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: clamp(25px, 4vw, 30px) 0;
    }

    .z-workshop__timeline::before {
      left: 55px;
      transform: none;
    }

    .z-workshop__timeline-column {
      position: absolute;
      left: 0;
      top: 0;
      order: -1;
      padding: 24px 0 32px;
    }

    .z-workshop__marker-circle {
      width: 110px;
      height: 110px;
      padding: 10px;
      gap: 10px;
    }

    .z-workshop__marker-number {
      width: 32px;
      height: 32px;
      font-size: 12px;
    }

    .z-workshop__marker-name {
      font-size: 13px;
    }

    .z-workshop__text-content {
      padding-left: 140px;
    }

    .z-workshop__media-content {
      padding-left: 140px;
    }

    .z-workshop__row--reverse .z-workshop__text-content,
    .z-workshop__row--reverse .z-workshop__media-content {
      order: unset;
    }

    .z-workshop__row--visible .z-workshop__text-content,
    .z-workshop__row--reverse.z-workshop__row--visible .z-workshop__text-content {
      animation: fadeInUp 0.8s ease-out forwards;
    }

    .z-workshop__row--visible .z-workshop__media-content,
    .z-workshop__row--reverse.z-workshop__row--visible .z-workshop__media-content {
      animation: fadeInUp 0.8s ease-out 0.2s forwards;
    }

    .z-workshop__step-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .z-workshop__step-image:hover {
      transform: translateY(-4px) scale(1.01);
    }
  }

  @media (max-width: 480px) {
    .z-workshop {
      padding: 40px 0;
    }

    .z-workshop__inner {
      padding: 0 16px;
    }

    .z-workshop__header {
      margin-bottom: 20px;
    }

    .z-workshop__eyebrow {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .z-workshop__title {
      font-size: 14px;
      margin-bottom: 16px;
    }

    .z-workshop__subtitle {
      font-size: 14px;
    }

    .z-workshop__content-wrapper {
      gap: 20px;
      padding: 20px 0;
    }

    .z-workshop__timeline::before {
      left: 48px;
    }

    .z-workshop__step-title {
      font-size: 20px;
    }

    .z-workshop__step-body {
      font-size: 14px;
      line-height: 1.6;
    }

    .z-workshop__timeline-column {
      padding: 16px 0 24px;
    }

    .z-workshop__marker-circle {
      width: 96px;
      height: 96px;
      padding: 8px;
      gap: 8px;
    }

    .z-workshop__marker-number {
      width: 30px;
      height: 30px;
      font-size: 11px;
    }

    .z-workshop__marker-name {
      font-size: 12px;
      line-height: 1.3;
    }

    .z-workshop__text-content {
      padding-left: 120px;
      gap: 16px;
    }

    .z-workshop__media-content {
      padding-left: 120px;
    }

    .z-workshop__step-image {
      border-radius: 12px;
    }

    .z-workshop__placeholder {
      min-height: 200px;
      border-radius: 12px;
      font-size: 11px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .z-workshop__header,
    .z-workshop__row--visible .z-workshop__text-content,
    .z-workshop__row--visible .z-workshop__media-content,
    .z-workshop__row--visible .z-workshop__marker-circle,
    .z-workshop__row--reverse.z-workshop__row--visible .z-workshop__text-content,
    .z-workshop__row--reverse.z-workshop__row--visible .z-workshop__media-content {
      animation: none;
      opacity: 1;
    }

    .z-workshop__marker-circle:hover,
    .z-workshop__step-image:hover {
      transform: none;
    }

    .z-workshop__row {
      opacity: 1;
    }
  }

/* CSS from block stylesheet tags */
.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;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

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