/* ==========================================================================
   Lwiis — Catalog & CMS Page Styles
   Premium editorial aesthetic: generous whitespace, refined typography
   ========================================================================== */

.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }

:root {
  --pl-space-section: 5rem;
  --pl-space-block: 2.5rem;
  --pl-space-element: 1.5rem;
  --pl-leading-body: 1.75;
  --pl-leading-relaxed: 1.85;
  --pl-leading-heading: 1.2;
  --pl-text-body: 1rem;
  --pl-text-sm: 0.875rem;
  --pl-text-xs: 0.75rem;
  --pl-text-lg: 1.0625rem;
  --pl-prose-max: 42rem;
}

/* ── Shared page layout ─────────────────────────────────────────────────── */

body.catalog-category-view .page-main,
body.catalogsearch-result-index .page-main {
  margin-block: 0;
  flex-grow: 0;
}

body.catalog-product-view .page-main,
body.cms-page-view .page-main {
  margin-block: 0;
}

body.catalog-category-view .column.main,
body.catalogsearch-result-index .column.main {
  padding-top: var(--pl-space-section);
  padding-bottom: 1rem;
}

body.catalog-product-view .column.main,
body.cms-page-view .column.main {
  padding-block: var(--pl-space-section);
}

/* Breadcrumbs */
.breadcrumbs {
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid var(--color-border);
}

.breadcrumbs .items {
  padding-block: 1.25rem !important;
  font-size: var(--pl-text-xs) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light) !important;
}

.breadcrumbs a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs .separator {
  color: var(--color-border) !important;
  padding-inline: 0.75rem !important;
}

.breadcrumbs [aria-current="page"] {
  color: var(--color-text) !important;
}

/* Page titles */
.pl-page-header {
  padding-block: var(--pl-space-block) 0;
}

.pl-page-header .page-title,
.catalog-category-view h1.page-title,
.catalogsearch-result-index h1.page-title,
.cms-page-view h1.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: var(--pl-leading-heading);
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 0 !important;
}

.pl-page-header .page-title-sub {
  margin-top: 1rem;
  max-width: var(--pl-prose-max);
  font-size: var(--pl-text-lg);
  line-height: var(--pl-leading-body);
  color: var(--color-text-muted);
}

/* ── Prose / rich content typography ──────────────────────────────────────── */

.pl-prose,
.prose,
.cms-content,
.product-description {
  font-size: var(--pl-text-body);
  line-height: var(--pl-leading-relaxed);
  color: var(--color-text-muted);
}

.pl-prose > * + *,
.prose > * + *,
.cms-content > * + *,
.category-description > * + * {
  margin-top: 1.25em;
}

.pl-prose h1, .prose h1, .cms-content h1,
.pl-prose h2, .prose h2, .cms-content h2,
.pl-prose h3, .prose h3, .cms-content h3,
.pl-prose h4, .prose h4, .cms-content h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
  line-height: var(--pl-leading-heading);
}

.pl-prose h1, .prose h1, .cms-content h1 { font-size: 2rem; margin-top: 2.5em; }
.pl-prose h2, .prose h2, .cms-content h2 { font-size: 1.625rem; margin-top: 2em; }
.pl-prose h3, .prose h3, .cms-content h3 { font-size: 1.375rem; margin-top: 1.75em; }
.pl-prose h4, .prose h4, .cms-content h4 { font-size: 1.125rem; margin-top: 1.5em; }

.pl-prose p, .prose p, .cms-content p,
.category-description p {
  margin-bottom: 0;
}

.pl-prose a, .prose a, .cms-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-accent-soft);
}

.pl-prose a:hover, .prose a:hover, .cms-content a:hover {
  text-decoration-color: var(--color-accent);
}

.pl-prose ul, .prose ul, .cms-content ul,
.pl-prose ol, .prose ol, .cms-content ol {
  padding-left: 1.25em;
}

.pl-prose li, .prose li, .cms-content li {
  margin-top: 0.5em;
}

.pl-prose blockquote, .prose blockquote, .cms-content blockquote {
  border-left: 2px solid var(--color-accent);
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-text);
}

.pl-prose img, .prose img, .cms-content img {
  border-radius: var(--radius-md);
}

.pl-prose table, .prose table, .cms-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--pl-text-sm);
}

.pl-prose th, .prose th, .cms-content th,
.pl-prose td, .prose td, .cms-content td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.pl-prose th, .prose th, .cms-content th {
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--pl-text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Category / Product List Page ─────────────────────────────────────────── */

.catalog-category-view #category-view-container,
.catalogsearch-result-index .page-title ~ .columns {
  padding-top: 0;
}

.catalog-category-view .category-description {
  margin-top: var(--pl-space-element);
  padding-bottom: var(--pl-space-block);
}

.pl-category-intro {
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--brand-border, var(--color-border));
}

.pl-category-layout {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.pl-category-body {
  display: grid;
  gap: 24px;
  align-items: start;
  padding-top: 1.5rem;
  grid-template-columns: 1fr;
}

.pl-category-products {
  min-width: 0;
  grid-column: 1;
}

.catalog-category-view .pl-filters-host,
.catalogsearch-result-index .pl-filters-host {
  align-self: start;
  grid-column: 1;
}

.catalog-category-view .pl-filters-toolbar,
.catalogsearch-result-index .pl-filters-toolbar {
  grid-column: 1;
}

@media (min-width: 768px) {
  .catalog-category-view .pl-filters-toolbar,
  .catalogsearch-result-index .pl-filters-toolbar {
    grid-column: 1 / -1;
  }
}

@media (min-width: 769px) {
  .catalog-category-view.page-with-filter .pl-category-body:has(.pl-filters-host),
  .catalogsearch-result-index.page-with-filter .pl-category-body:has(.pl-filters-host) {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 32px 48px;
  }

  .catalog-category-view.page-with-filter .pl-category-body:has(.pl-filters-host) .pl-category-products,
  .catalogsearch-result-index.page-with-filter .pl-category-body:has(.pl-filters-host) .pl-category-products {
    grid-column: 2;
  }
}

.catalog-category-view.page-with-filter .pl-category-intro,
.catalogsearch-result-index.page-with-filter .pl-category-intro {
  grid-column: auto;
}

.pl-category-intro__eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted, var(--brand-text-muted));
}

.pl-category-intro__lead {
  margin: 0;
  padding-bottom: 2rem;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  color: var(--color-text, var(--brand-text-primary));
}

.pl-category-intro__body {
  margin-top: 0;
  padding-bottom: 0;
  max-width: 48rem;
}

body.pl-filters-drawer-open {
  overflow: hidden;
}

.pl-filters-host {
  min-width: 0;
}

.pl-filters-toolbar {
  display: none;
  margin-bottom: 0;
}

.pl-list-toolbar-row {
  margin-bottom: var(--pl-space-element);
}

.pl-list-toolbar-row__tools {
  min-width: 0;
}

.pl-mobile-sorter {
  display: none;
  position: relative;
}

@media (max-width: 768px) {
  .page-with-filter .pl-list-toolbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
    overflow: visible;
  }

  .page-with-filter .pl-list-toolbar-row__tools,
  .page-with-filter .pl-list-toolbar-row .pl-toolbar-sorter--top {
    overflow: visible;
  }

  .page-with-filter .pl-list-toolbar-row .pl-filters-toolbar {
    display: flex;
    flex-shrink: 0;
  }

  .page-with-filter .pl-list-toolbar-row__tools {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .page-with-filter .pl-list-toolbar-row .toolbar.toolbar-products {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    display: flex !important;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    width: auto;
    min-width: 0;
  }

  .page-with-filter .pl-list-toolbar-row .toolbar.toolbar-products .modes {
    display: none !important;
  }

  .page-with-filter .pl-list-toolbar-row .toolbar-sorter {
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .page-with-filter .pl-list-toolbar-row .toolbar-sorter label {
    margin-right: 0;
  }

  .page-with-filter .pl-list-toolbar-row .pl-toolbar-sorter--top .pl-desktop-sorter {
    display: none !important;
  }

  .page-with-filter .pl-list-toolbar-row .pl-mobile-sorter {
    display: block;
    position: relative;
    z-index: 20;
  }

  .page-with-filter .pl-list-toolbar-row .pl-mobile-sorter__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
    border-radius: 4px;
    background: var(--color-surface, #fff);
    font-size: 12px;
    color: var(--brand-text-primary);
    white-space: nowrap;
  }

  .page-with-filter .pl-list-toolbar-row .pl-mobile-sorter__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: auto;
    min-width: 168px;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    border: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
    z-index: 80;
  }

  .page-with-filter .pl-list-toolbar-row .pl-mobile-sorter__option {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 12px;
    color: var(--brand-text-primary);
  }

  .page-with-filter .pl-list-toolbar-row .pl-mobile-sorter__option.is-active,
  .page-with-filter .pl-list-toolbar-row .pl-mobile-sorter__option:hover {
    background: rgba(26, 26, 26, 0.04);
  }

  .page-with-filter .pl-list-toolbar-row .pl-toolbar--top .modes {
    display: none !important;
  }

  .page-with-filter .pl-list-toolbar-row .sorter-action {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .pl-mobile-sorter {
    display: none !important;
  }

  .pl-filters-mobile {
    display: none !important;
  }

  .pl-filters-sidebar {
    display: block;
  }

  .pl-filters-panel {
    position: sticky;
    top: 108px;
    width: auto;
    height: auto;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .pl-filters-drawer__header--mobile,
  .pl-filters-drawer__footer.pl-filters-drawer__header--mobile {
    display: none !important;
  }

  .pl-filters-title--desktop {
    display: block;
  }
}

.pl-filters-toolbar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
  border-radius: 999px;
  background: var(--color-surface, #fff);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-text-primary);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pl-filters-toolbar__btn:hover {
  border-color: var(--brand-text-primary);
}

.pl-filters-toolbar__icon {
  flex-shrink: 0;
}

.pl-filters-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -4px 0 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
}

.pl-filters-drawer__title {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pl-filters-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
  border-radius: 999px;
  background: #fff;
}

.pl-filters-drawer__footer {
  position: sticky;
  bottom: 0;
  margin-top: 24px;
  padding-top: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 28%);
}

.pl-filters-drawer__apply {
  display: flex;
  width: 100%;
  justify-content: center;
}

.pl-sticky-atc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 248, 245, 0.96);
  border-top: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -8px 24px rgba(26, 26, 26, 0.08);
}

.pl-sticky-atc__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--brand-content-max, 1400px);
  margin: 0 auto;
}

.pl-sticky-atc__meta {
  flex: 1;
  min-width: 0;
}

.pl-sticky-atc__name {
  margin: 0 0 2px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--brand-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pl-sticky-atc__price {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-text-primary);
}

.pl-sticky-atc__price .price {
  font-size: inherit !important;
  font-weight: inherit !important;
}

.pl-sticky-atc__btn {
  flex-shrink: 0;
  min-width: 132px;
  min-height: 44px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .pl-sticky-atc {
    display: none !important;
  }
}

.catalog-category-view .category-image {
  margin-bottom: var(--pl-space-block);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.catalog-category-view .category-image img {
  width: 100%;
  object-fit: cover;
  max-height: 360px;
}

/* Toolbar */
.toolbar.toolbar-products {
  padding-block: 1.25rem;
  margin-bottom: var(--pl-space-element);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--pl-text-sm);
  color: var(--color-text-muted);
}

.toolbar.toolbar-products select,
.toolbar.toolbar-products .limiter select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.75rem;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--pl-text-sm);
}

.toolbar.toolbar-products a,
.toolbar.toolbar-products button {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.toolbar.toolbar-products a:hover,
.toolbar.toolbar-products button:hover {
  color: var(--color-text);
}

/* Product grid */
#product-list {
  padding-top: 0 !important;
}

#product-list .products-grid > ul {
  gap: 2.5rem 2rem !important;
}

.pl-product-card,
.products-grid .product-item.card,
.products-grid .product-item {
  background: var(--color-surface) !important;
  border: 0 !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.pl-product-card:hover,
.products-grid .product-item.card:hover,
.products-grid .product-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover) !important;
}

.pl-product-card .product-item-photo,
.products-grid .product-item-photo {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg-warm);
  margin-bottom: 0 !important;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pl-product-card .product-item-photo img,
.products-grid .product-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.pl-product-card:hover .product-item-photo img,
.products-grid .product-item:hover .product-item-photo img {
  transform: scale(1.04);
}

.pl-product-card .product-info,
.products-grid .product-info {
  padding: 1.5rem 1.25rem 1.75rem !important;
  text-align: left !important;
}

.pl-product-card .product-item-link,
.products-grid .product-item-link {
  font-family: var(--font-body);
  font-size: var(--pl-text-sm) !important;
  font-weight: 500 !important;
  line-height: 1.45;
  color: var(--color-text) !important;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
}

.pl-product-card .product-item-link:hover,
.products-grid .product-item-link:hover {
  color: var(--color-accent) !important;
}

.pl-product-card .price-box,
.products-grid .price-box {
  margin-top: 0.625rem;
  font-size: var(--pl-text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.pl-product-card .old-price .price,
.products-grid .old-price .price {
  color: var(--color-text-light);
  font-weight: 400;
  text-decoration: line-through;
}

.pl-product-card .rating-summary,
.products-grid .rating-summary {
  margin-top: 0.5rem;
  color: var(--color-accent);
}

.pl-product-card .btn-primary,
.products-grid .btn-primary {
  margin-top: 1rem;
  font-size: var(--pl-text-xs) !important;
  letter-spacing: 0.06em;
  padding: 0.625rem 1.25rem !important;
}

/* Pagination */
.pages,
.pages .items {
  font-size: var(--pl-text-sm);
}

.pages .item a,
.pages .item strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.pages .item a:hover {
  background: var(--color-bg-warm);
  color: var(--color-text);
}

.pages .item.current strong {
  background: var(--color-dark);
  color: var(--color-white);
  font-weight: 600;
}

/* ── Product Detail Page ──────────────────────────────────────────────────── */

.catalog-product-view .column.main {
  background: var(--color-bg);
}

.catalog-product-view .product-info-main > section {
  padding-bottom: var(--pl-space-section);
  gap: 3rem !important;
}

@media (min-width: 64rem) {
  .catalog-product-view .product-info-main > section {
    gap: 5rem !important;
  }
}

/* Gallery */
.catalog-product-view .product-media,
.catalog-product-view [class*="gallery"] {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Product info card */
.catalog-product-view .product-info .card.pl-product-buybox,
.catalog-product-view .product-info-main .card.pl-product-buybox {
  background: transparent;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none;
}

.catalog-product-view .product-info .card,
.catalog-product-view .product-info-main .card {
  background: var(--color-surface);
  border: 0 !important;
  border-radius: var(--radius-lg) !important;
  padding: 2.5rem !important;
  box-shadow: var(--shadow-sm);
}

.catalog-product-view .product-info .page-title,
.catalog-product-view .product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: var(--pl-leading-heading);
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

/* Buy box */
.pl-product-meta .rating-summary,
.pl-product-meta .stock {
  margin: 0;
}

.pl-product-sku {
  color: var(--color-text-light);
  padding:1rem 0;
}

.pl-product-sku__value {
  color: var(--color-text);
}

.pl-product-options {
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.pl-product-options__heading {
  font-size: var(--pl-text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.pl-product-options__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pl-product-option__label {
  display: block;
  font-size: var(--pl-text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.pl-product-option__control .form-select,
.pl-product-option__control .form-input,
.pl-product-option__control .form-textarea {
  width: 100%;
  max-width: 100%;
}

.pl-product-purchase {
  margin-top: 1.5rem;
}

.pl-product-purchase__actions .btn-primary {
  min-height: 2.75rem;
  padding-inline: 1.5rem;
  margin-left: 1rem;
}

.pl-product-purchase__secondary .btn {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
}

.pl-product-purchase__secondary .btn:hover {
  color: var(--color-text);
  border-color: var(--color-text-light);
}

.pl-product-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg-warm);
  border-radius: var(--radius-md);
}

.pl-product-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pl-product-trust__icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--color-accent);
}

.pl-product-trust__label {
  display: block;
  font-size: var(--pl-text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.125rem;
}

.pl-product-trust__value {
  display: block;
  font-size: var(--pl-text-sm);
  line-height: var(--pl-leading-body);
  color: var(--color-text-muted);
}

.catalog-product-view .product-options-wrapper [class*="border-t"],
.catalog-product-view .product-options-wrapper [class*="border-b"],
.catalog-product-view .product-info .swatch-attribute,
.catalog-product-view .product-info .swatch-attribute [class*="border-t"],
.catalog-product-view .product-info .swatch-attribute [class*="border-b"] {
  border: 0 !important;
}

.catalog-product-view .product-info .swatch-attribute {
  min-height: 0 !important;
  padding-block: 0;
}

/* Configurable swatches: label above, options below */
.catalog-product-view .pl-configurable-swatches {
  margin-bottom: 0;
}

.catalog-product-view .pl-configurable-swatches__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.catalog-product-view .pl-swatch-attribute {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
}

.catalog-product-view .pl-swatch-attribute__label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.375rem;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: default;
}

.catalog-product-view .pl-configurable-swatches__list > .pl-swatch-attribute:first-child .pl-swatch-attribute__label {
  padding-top: 0;
}

.catalog-product-view .pl-swatch-attribute__name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-text-primary, var(--color-text));
}

.catalog-product-view .pl-swatch-attribute__selected {
  font-size: var(--pl-text-sm, 0.875rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-muted, #6b7280);
}

.catalog-product-view .pl-swatch-attribute__options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  margin: 0;
  padding: 0;
}

.catalog-product-view .pl-swatch-visual {
  width: 60px;
  height: 80px;
  min-width: 60px;
  min-height: 80px;
  border-radius: 2px;
  overflow: hidden;
  background-color: var(--pdp-surface, #fff);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.catalog-product-view .pl-swatch-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 9999px;
  background-color: var(--pdp-surface, #fff);
}

/* Hide native radio control inside swatches */
.catalog-product-view .pl-swatch-input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  pointer-events: none !important;
}

.catalog-product-view .product-info .relative.mb-6 > h2 {
  font-size: var(--pl-text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

/* Price */
.catalog-product-view .product-info-main .price-box {
  font-family: var(--font-body);
}

.catalog-product-view .product-info-main .final-price .price {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.catalog-product-view .product-info-main .old-price .price {
  font-size: var(--pl-text-body);
  color: var(--color-text-light);
  text-decoration: line-through;
}

/* Product attributes */
.catalog-product-view #product-details .product-detail-label {
  font-size: var(--pl-text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light) !important;
  font-weight: 500;
}

.catalog-product-view #product-details .product-detail-value {
  font-size: var(--pl-text-sm);
  color: var(--color-text) !important;
}

.catalog-product-view #product-details > div {
  border-color: var(--color-border) !important;
  padding-block: 0.875rem !important;
}

/* Delivery info */
.catalog-product-view .product-info [class*="text-gray"] {
  color: var(--color-text-muted) !important;
  font-size: var(--pl-text-sm);
  line-height: var(--pl-leading-body);
}

/* Tabs / sections */
.pl-product-tabs [role="tablist"] {
  gap: 0 !important;
  border-bottom: 1px solid var(--color-border) !important;
  margin-bottom: var(--pl-space-element) !important;
}

.pl-product-tabs [role="tab"] {
  padding: 1rem 1.5rem !important;
  font-size: var(--pl-text-sm) !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-light) !important;
  border-bottom: 2px solid transparent !important;
  margin-bottom: -1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  background: none !important;
}

.pl-product-tabs [role="tab"][aria-selected="true"],
.pl-product-tabs [role="tab"]:hover {
  color: var(--color-text) !important;
  border-bottom-color: var(--color-accent) !important;
}

.pl-product-tabs .card {
  background: var(--color-surface);
  border: 0 !important;
  border-radius: var(--radius-lg) !important;
  padding: 2.5rem !important;
  box-shadow: none;
}

.pl-product-tabs .prose {
  max-width: none;
}

/* Related / upsell */
.catalog-product-view .product-slider,
.catalog-product-view [class*="slider"] .card {
  border-radius: var(--radius-lg);
}

/* Reviews */
.catalog-product-view .review-list .review-item {
  padding-block: var(--pl-space-element);
  border-bottom: 1px solid var(--color-border);
}

/* ── CMS Pages ────────────────────────────────────────────────────────────── */

.cms-page-view .column.main {
  margin-inline: auto;
  padding-inline: 1.5rem;
  max-width: var(--pl-layout-max) !important;
}

.cms-page-view .cms-content,
.cms-page-view .column.main > div {
  font-size: var(--pl-text-body);
  line-height: var(--pl-leading-relaxed);
  color: var(--color-text-muted);
}

.cms-page-view .pl-page-header {
  text-align: center;
  padding-bottom: var(--pl-space-block);
  margin-bottom: var(--pl-space-block);
  border-bottom: 1px solid var(--color-border);
}

.cms-page-view .pl-page-header .page-title {
  margin-inline: auto;
}

/* ── Search results ───────────────────────────────────────────────────────── */

.catalogsearch-result-index .search.results {
  margin-top: var(--pl-space-element);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  :root {
    --pl-space-section: 3rem;
    --pl-space-block: 1.75rem;
  }

  .catalog-product-view .product-info .card,
  .catalog-product-view .product-info-main .card,
  .pl-product-tabs .card {
    padding: 1.75rem !important;
  }

  .pl-product-tabs [role="tab"] {
    padding: 0.75rem 1rem !important;
    font-size: var(--pl-text-xs) !important;
  }

  #product-list .products-grid > ul {
    gap: 1.5rem !important;
  }
}
/* ==========================================================================
   Brand Theme Tokens & Page Overrides
   目标：首页、列表页、详情页统一品牌视觉语言
   ========================================================================== */

:root {
  --brand-bg-primary: #faf8f5;
  --brand-bg-secondary: #f5f3ef;
  --brand-bg-deep: #ede9e3;
  --brand-text-primary: #1a1a1a;
  --brand-text-muted: #6b6560;
  --brand-accent: #a68b7c;
  --brand-border: rgba(26, 26, 26, 0.08);
  --brand-shadow-soft: 0 8px 24px rgba(26, 26, 26, 0.08);
  --brand-shadow-lift: 0 12px 32px rgba(26, 26, 26, 0.12);
  --brand-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --brand-content-max: 1400px;
  --pl-layout-max: var(--brand-content-max);
  --pl-layout-gutter: clamp(1.25rem, 2.5vw, 2rem);
  --brand-section-gap: clamp(48px, 5vw, 72px);
}

/* Unified horizontal alignment: header, breadcrumbs, title, main, footer */
.pl-site-header > .pl-container,
.breadcrumbs > .container,
.pl-page-header.container,
body.catalog-category-view .columns,
body.catalogsearch-result-index .columns,
body.catalog-product-view .page-main > .columns,
.pl-site-footer > .pl-container {
  width: 100%;
  max-width: var(--pl-layout-max) !important;
  margin-inline: auto;
  padding-inline: var(--pl-layout-gutter) !important;
  box-sizing: border-box;
}

.pl-site-header > .pl-container,
.pl-site-footer > .pl-container {
  max-width: var(--pl-layout-max) !important;
}

body.cms-index-index,
body.catalog-category-view,
body.catalogsearch-result-index,
body.catalog-product-view {
  background: var(--brand-bg-primary);
  color: var(--brand-text-primary);
}

.pl-announcement {
  background: var(--brand-text-primary);
  color: #faf8f5;
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pl-announcement a {
  color: #faf8f5;
  border-bottom: 1px solid rgba(250, 248, 245, 0.45);
}

#header.pl-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brand-border);
  box-shadow: none;
}

.pl-header-inner {
  max-width: var(--brand-content-max);
  margin: 0 auto;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.pl-header-mobile {
  display: none;
}

.pl-header-brand {
  min-width: 0;
}

.pl-header-nav {
  display: none;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.pl-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .pl-header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 8px;
    row-gap: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .pl-header-mobile {
    display: block;
    grid-column: 1;
    justify-self: start;
  }

  .pl-header-brand {
    grid-column: 2;
    justify-self: center;
    text-align: center;
  }

  .pl-header-nav {
    display: none !important;
  }

  .pl-header-actions {
    grid-column: 3;
    justify-self: end;
    gap: 4px;
  }

  .pl-header-actions__compare,
  .pl-header-actions__wishlist {
    display: none;
  }
}

@media (min-width: 1024px) {
  .pl-header-mobile {
    display: none !important;
  }

  .pl-header-nav {
    display: flex;
  }
}

.pl-logo {
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pl-logo span {
  color: inherit;
}

#header .navigation {
  display: flex;
  justify-content: center;
  flex: 1;
}

#header .navigation ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

#header .navigation .level-0 > a,
#header .navigation li.level-0 > button {
  position: relative;
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-text-primary) !important;
}

#header .navigation .level-0 > a::after,
#header .navigation li.level-0 > button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brand-text-primary);
  transition: width .3s var(--brand-ease);
}

#header .navigation .level-0:hover > a::after,
#header .navigation .level-0:hover > button::after,
#header .navigation .level-0[data-active] > a::after {
  width: 100%;
}

.pl-header-icon {
  width: 42px;
  height: 42px;
  padding: 0 !important;
  border-radius: 999px !important;
  color: var(--brand-text-primary) !important;
}

.pl-header-icon--compact {
  width: 38px;
  height: 38px;
}

.pl-header-mobile .btn {
  width: 38px;
  height: 38px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--brand-text-primary);
}

.pl-header-mobile .btn:hover {
  background: rgba(26, 26, 26, 0.04);
}

.pl-header-actions #customer-menu {
  width: 38px;
  height: 38px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--brand-text-primary);
}

.pl-header-actions #customer-menu:hover {
  background: rgba(26, 26, 26, 0.04);
}

@media (min-width: 1024px) {
  .pl-header-icon--compact,
  .pl-header-actions #customer-menu {
    width: 42px;
    height: 42px;
  }
}

.pl-header-icon:hover {
  background: rgba(26, 26, 26, 0.04) !important;
}

.cms-index-index .btn-primary,
.catalog-product-view .action.primary.tocart,
.catalog-product-view .action.tocart.primary,
.catalog-category-view .quick-add {
  transition:
    transform .3s var(--brand-ease),
    background .3s var(--brand-ease),
    box-shadow .3s var(--brand-ease),
    border-color .3s var(--brand-ease);
}

.cms-index-index .btn-primary:hover,
.catalog-product-view .action.primary.tocart:hover,
.catalog-product-view .action.tocart.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--brand-shadow-soft);
}

.pl-header-search {
  background: rgba(250, 248, 245, 0.98);
  border-color: var(--brand-border) !important;
}

.pl-site-footer {
  background: transparent;
  color: var(--brand-text-primary);
  padding-top: 5rem;
}

.pl-site-footer .pl-container {
  max-width: var(--pl-layout-max);
  margin: 0 auto;
  padding-block: var(--brand-section-gap) 48px;
  padding-inline: var(--pl-layout-gutter);
}

body.catalog-category-view .pl-site-footer .pl-container,
body.catalogsearch-result-index .pl-site-footer .pl-container {
  padding-top: 1.5rem;
}

.pl-footer-business {
  text-align: center;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--brand-border);
  font-size: 13px;
  line-height: 1.8;
  color: var(--brand-text-muted);
}

.pl-footer-brand-name {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: 20px;
  color: var(--brand-text-primary);
}

.pl-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
  margin-bottom: 1.5rem;
  font-size: 12px;
  line-height: 1.65;
  color: var(--brand-text-muted);
}

.pl-footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pl-footer-contact__icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-text-primary);
}

.pl-footer-contact__icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.pl-footer-contact__text {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.pl-footer-contact__text strong {
  font-weight: 600;
  color: var(--brand-text-primary);
}

.pl-footer-contact a {
  color: inherit;
  text-decoration: none;
}

.pl-footer-contact a:hover {
  color: var(--brand-text-primary);
}

.pl-footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}

.pl-footer-brand .pl-logo {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-text-primary);
}

.pl-footer-brand p,
.pl-footer-col a,
.pl-footer-bottom p {
  color: var(--brand-text-muted);
}

.pl-footer-col h4,
.pl-footer-accordion__title {
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-text-primary);
}

.pl-footer-accordion__item {
  border: 0;
}

.pl-footer-accordion__summary {
  list-style: none;
  cursor: default;
  pointer-events: none;
}

.pl-footer-accordion__summary::-webkit-details-marker {
  display: none;
}

.pl-footer-accordion__icon {
  display: none;
}

.pl-footer-social a {
  background: var(--brand-bg-secondary);
  color: var(--brand-text-primary);
}

.pl-footer-social a:hover {
  background: var(--brand-text-primary);
  color: #faf8f5;
}

.pl-footer-bottom {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--brand-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.pl-footer-bottom__meta {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.pl-footer-meta {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--brand-text-muted);
}

.pl-footer-meta__label {
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 0.5rem;
}

.pl-footer-meta__value {
  color: var(--brand-text-primary);
  font-variant-numeric: tabular-nums;
}

.pl-payment-icon svg {
  display: block;
  width: 38px;
  height: 24px;
}

.cms-index-index .pl-home {
  background: var(--brand-bg-primary);
  overflow-x: clip;
}

.cms-index-index .hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 769px) {
  .cms-index-index .hero {
    min-height: calc(100vh - 110px);
  }
}

.cms-index-index .hero-bg,
.cms-index-index .hero-bg .hero-picture,
.cms-index-index .hero-bg img,
.cms-index-index .hero-overlay {
  position: absolute;
  inset: 0;
}

.cms-index-index .hero-bg .hero-picture,
.cms-index-index .hero-bg .hero-picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.cms-index-index .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.cms-index-index .hero-overlay {
  background: linear-gradient(105deg, rgba(26, 26, 26, 0.42) 0%, rgba(26, 26, 26, 0.16) 48%, transparent 100%);
}

.cms-index-index .hero-content,
.cms-index-index .section,
.catalog-product-view .column.main {
  max-width: var(--pl-layout-max);
  margin: 0 auto;
  padding-inline: var(--pl-layout-gutter);
}

.cms-index-index .hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  color: #faf8f5;
  padding-top: 72px;
  padding-bottom: 72px;
}

.cms-index-index .hero-eyebrow,
.cms-index-index .section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cms-index-index .hero-eyebrow {
  margin-bottom: 20px;
}

.cms-index-index .hero-title,
.cms-index-index .section-title {
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
}

.cms-index-index .hero-title {
  max-width: 640px;
  margin-bottom: 12px;
  font-size: clamp(42px, 6vw, 72px);
  color: #faf8f5;
}

.cms-index-index .hero-subtitle {
  max-width: 600px;
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
}

.cms-index-index .hero-proof {
  margin-bottom: 32px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.82);
}

.cms-index-index .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.cms-index-index .btn-primary,
.cms-index-index .btn-secondary,
.cms-index-index .newsletter-form .action,
.catalog-category-view .quick-add,
.catalog-product-view .action.primary {
  border-radius: 0 !important;
  padding: 16px 40px !important;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}

.cms-index-index .btn-link {
  font-size: 13px;
  border-bottom: 1px solid rgba(250, 248, 245, 0.55);
  padding-bottom: 2px;
  color: #faf8f5;
}

.cms-index-index .section {
  padding-block: calc(var(--brand-section-gap) / 2);
}

.cms-index-index .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.cms-index-index .section-eyebrow {
  margin-bottom: 12px;
  color: var(--brand-text-muted);
}

.cms-index-index .section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--brand-text-primary);
}

.cms-index-index .category-grid,
.cms-index-index .product-grid {
  display: grid;
}

.cms-index-index .category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.cms-index-index .category-card {
  position: relative;
  overflow: hidden;
}

.cms-index-index .category-card {
  aspect-ratio: 4 / 5;
}

.cms-index-index .category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--brand-ease);
}

.cms-index-index .category-card:hover img {
  transform: scale(1.05);
}

.cms-index-index .category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.5) 0%, transparent 60%);
}

.cms-index-index .category-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  color: #faf8f5;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cms-index-index .category-label span {
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--brand-ease);
}

.cms-index-index .category-card:hover .category-label span {
  border-color: #faf8f5;
}

.cms-index-index .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.cms-index-index .product-card {
  position: relative;
  transition: transform .35s var(--brand-ease);
}

.cms-index-index .product-card:hover {
  transform: translateY(-4px);
}

.cms-index-index .product-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--brand-bg-secondary);
  margin-bottom: 16px;
}

.cms-index-index .product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--brand-ease);
}

.cms-index-index .product-card:hover .product-image-wrap img {
  transform: scale(1.03);
}

.cms-index-index .quick-add,
.catalog-category-view .quick-add {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: var(--brand-text-primary);
  color: #faf8f5 !important;
  padding: 14px !important;
  font-size: 11px !important;
  font-weight: 500;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(100%);
  transition: transform .3s var(--brand-ease);
  z-index: 2;
}

.cms-index-index .product-card:hover .quick-add,
.catalog-category-view .product-card:hover .quick-add {
  transform: translateY(0);
}

.cms-index-index .product-name {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--brand-text-primary) !important;
  line-height: 1.5;
}

.catalog-category-view .product-item-link,
.catalogsearch-result-index .product-item-link {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--brand-text-primary) !important;
  line-height: 1.5;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cms-index-index .product-price,
.catalog-category-view .price-box {
  margin-top: 6px;
  font-size: 14px;
  color: var(--brand-text-muted);
}

.cms-index-index .product-price s {
  margin-left: 6px;
  opacity: .7;
}

.cms-index-index .product-rating,
.catalog-category-view .rating-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--brand-text-muted);
}

.cms-index-index .stars,
.catalog-category-view .rating-summary {
  color: var(--brand-accent);
}

.cms-index-index .badge,
.catalog-category-view .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #faf8f5;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cms-index-index .badge.sale,
.catalog-category-view .badge.sale {
  background: var(--brand-text-primary);
  color: #faf8f5;
}

.cms-index-index .usp-strip {
  background: var(--brand-bg-secondary);
  padding: 64px 32px;
}

.cms-index-index .usp-grid {
  max-width: var(--brand-content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  text-align: center;
}

.cms-index-index .usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cms-index-index .usp-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.cms-index-index .usp-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--brand-text-primary);
  text-decoration: none;
  transition: opacity var(--transition-fast, 0.2s ease);
}

.cms-index-index .usp-action:hover {
  opacity: 0.72;
}

.cms-index-index .usp-action__icon {
  flex-shrink: 0;
}

.cms-index-index .usp-title {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: 22px;
}

.cms-index-index .usp-desc,
.cms-index-index .newsletter-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--brand-text-muted);
}

.catalog-category-view .pl-category-trust.usp-strip {
  margin-top: 5rem;
  margin-bottom: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--brand-border, #e8e4df);
}

.catalog-category-view .pl-category-trust .usp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.catalog-category-view .pl-category-trust .usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.catalog-category-view .pl-category-trust .usp-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.catalog-category-view .pl-category-trust .usp-title {
  margin-bottom: .5rem;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.3;
}

.catalog-category-view .pl-category-trust .usp-title a {
  color: inherit;
  text-decoration: none;
}

.catalog-category-view .pl-category-trust .usp-title a:hover {
  text-decoration: underline;
}

.catalog-category-view .pl-category-trust .usp-desc {
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--brand-text-muted);
}

.catalog-category-view .pl-category-trust .usp-action {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  margin-top: 1rem;
  font-size: .75rem;
  letter-spacing: .04em;
  color: var(--brand-text-primary);
  text-decoration: none;
  transition: opacity var(--transition-fast, 0.2s ease);
}

.catalog-category-view .pl-category-trust .usp-action:hover {
  opacity: .72;
}

.catalog-category-view .pl-category-trust .usp-action__icon {
  flex-shrink: 0;
}

.cms-index-index .home-faq {
  background: var(--brand-bg-primary);
}

.cms-index-index .home-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.cms-index-index .home-faq__media {
  overflow: hidden;
  border-radius: 2px;
}

.cms-index-index .home-faq__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.6s var(--brand-ease);
}

.cms-index-index .home-faq__media:hover img {
  transform: scale(1.03);
}

.cms-index-index .home-faq__header {
  text-align: left;
  margin-bottom: 32px;
}

.cms-index-index .home-faq__header .pl-section-tag {
  justify-content: flex-start;
}

.cms-index-index .home-faq__header .pl-section-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.cms-index-index .home-faq__accordion {
  border-top: 1px solid var(--brand-border);
}

.cms-index-index .home-faq__item {
  border-bottom: 1px solid var(--brand-border);
}

.cms-index-index .home-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

.cms-index-index .home-faq__summary::-webkit-details-marker {
  display: none;
}

.cms-index-index .home-faq__question {
  margin: 0;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--brand-text-primary);
}

.cms-index-index .home-faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.cms-index-index .home-faq__toggle::before,
.cms-index-index .home-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--brand-text-primary);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cms-index-index .home-faq__toggle::before {
  width: 14px;
  height: 1.5px;
}

.cms-index-index .home-faq__toggle::after {
  width: 1.5px;
  height: 14px;
}

.cms-index-index .home-faq__item[open] .home-faq__toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.cms-index-index .home-faq__answer {
  padding: 0 0 24px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--brand-text-muted);
}

.cms-index-index .home-faq__answer p {
  margin: 0;
}

.cms-index-index .home-faq__answer a:not(.btn-primary) {
  color: var(--brand-text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cms-index-index .home-faq__cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 24px !important;
  font-size: 11px !important;
}

.cms-index-index .community-banners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cms-index-index .community-banner-card {
  display: block;
  overflow: hidden;
  aspect-ratio: 2752 / 1536;
}

.cms-index-index .community-banner-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--brand-ease);
}

.cms-index-index .community-banner-card:hover img {
  transform: scale(1.03);
}

.cms-index-index .newsletter {
  background: var(--brand-bg-deep);
  padding: var(--brand-section-gap) 32px;
  text-align: center;
}

.cms-index-index .newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cms-index-index .newsletter-title {
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
}

.cms-index-index .newsletter-form,
.cms-index-index .form.subscribe {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 32px auto 0;
}

.cms-index-index .newsletter-form input,
.cms-index-index .form.subscribe input {
  flex: 1;
  min-width: 0;
  padding: 16px 20px;
  border: 1px solid var(--brand-border);
  background: #faf8f5;
}

.cms-index-index .newsletter-form .action,
.cms-index-index .form.subscribe .action {
  background: var(--brand-text-primary) !important;
  border: 1px solid var(--brand-text-primary) !important;
  color: #faf8f5 !important;
}

.cms-index-index .newsletter .pl-footer-social {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 32px;
}

.cms-index-index .newsletter .pl-footer-social a {
  flex-shrink: 0;
}

.cms-index-index .home-section-action {
  margin-top: 56px;
  text-align: center;
}

.cms-index-index .reveal {
  opacity: 1;
  transform: none;
}

.catalog-category-view .breadcrumbs,
.catalogsearch-result-index .breadcrumbs,
.catalog-product-view .breadcrumbs {
  background: transparent !important;
  border-bottom: 0 !important;
}

.catalog-category-view .breadcrumbs .items,
.catalogsearch-result-index .breadcrumbs .items,
.catalog-product-view .breadcrumbs .items {
  padding-top: 40px !important;
  padding-bottom: 16px !important;
  font-size: 12px !important;
  color: var(--brand-text-muted) !important;
}

.catalog-category-view .pl-page-header,
.catalogsearch-result-index .pl-page-header {
  padding-top: 12px;
  padding-bottom: 24px;
}

.catalog-category-view .page-title,
.catalogsearch-result-index .page-title {
  margin-bottom: 8px !important;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: var(--brand-text-primary);
}

.catalog-category-view .page-desc,
.catalogsearch-result-index .page-desc,
.catalog-category-view .category-description {
  max-width: 540px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--brand-text-muted);
}

.catalog-category-view .category-image {
  margin-bottom: 32px;
  overflow: hidden;
}

.catalog-category-view .category-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.catalog-category-view .columns,
.catalogsearch-result-index .columns {
  padding-bottom: 0;
  padding-bottom: 1rem;
}

body.catalog-category-view.page-layout-2columns-left .columns,
body.catalogsearch-result-index.page-layout-2columns-left .columns {
  display: block !important;
  grid-template-columns: 1fr !important;
}

body.catalog-category-view.page-layout-2columns-left .columns > .column.main,
body.catalogsearch-result-index.page-layout-2columns-left .columns > .column.main {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 100% !important;
}

#product-list .products-grid > ul,
.catalogsearch-result-index #product-list .products-grid > ul,
.pl-product-grid {
  gap: 16px 20px !important;
}

@media (min-width: 1024px) {
  body.catalog-category-view #product-list .products-grid > ul,
  body.catalogsearch-result-index #product-list .products-grid > ul,
  body.catalog-category-view .pl-product-grid,
  body.catalogsearch-result-index .pl-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1536px) {
  body.catalog-category-view #product-list .products-grid > ul,
  body.catalogsearch-result-index #product-list .products-grid > ul,
  body.catalog-category-view .pl-product-grid,
  body.catalogsearch-result-index .pl-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

.pl-product-list {
  padding-top: 0;
  padding-bottom: 0;
}

.catalog-category-view .product-card-actions,
.catalogsearch-result-index .product-card-actions {
  display: none !important;
}

.catalog-category-view .rating-wrap,
.catalogsearch-result-index .rating-wrap {
  display: none !important;
}

.catalog-category-view .product-card,
.catalogsearch-result-index .product-card {
  overflow: hidden;
  background: transparent !important;
  box-shadow: none !important;
  transition: transform .35s var(--brand-ease);
}

.catalog-category-view .product-card:hover,
.catalogsearch-result-index .product-card:hover {
  transform: translateY(-4px);
}

.catalog-category-view .product-image-wrap,
.catalog-category-view .product-item-photo,
.catalogsearch-result-index .product-image-wrap,
.catalogsearch-result-index .product-item-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--brand-bg-secondary);
  border-radius: 0 !important;
  margin-bottom: 16px !important;
}

.catalog-category-view .product-image-wrap img,
.catalog-category-view .product-item-photo img,
.catalogsearch-result-index .product-image-wrap img,
.catalogsearch-result-index .product-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--brand-ease);
}

.catalog-category-view .product-card:hover .product-item-photo img,
.catalogsearch-result-index .product-card:hover .product-item-photo img {
  transform: scale(1.03);
}

.catalog-category-view .product-info,
.catalogsearch-result-index .product-info {
  padding: 0.625rem 1rem 1rem !important;
}

.catalog-category-view .product-name-wrap,
.catalogsearch-result-index .product-name-wrap {
  padding-top: 0.125rem;
  min-width: 0;
  overflow: hidden;
}

.catalog-category-view .price-wrap,
.catalogsearch-result-index .price-wrap {
  padding-bottom: 0.25rem;
}

.catalog-category-view .price-box .price,
.catalogsearch-result-index .price-box .price {
  color: var(--brand-text-primary);
  font-weight: 500;
}

.catalog-category-view .old-price .price,
.catalogsearch-result-index .old-price .price {
  color: var(--brand-text-muted);
  font-weight: 400;
}

.catalog-category-view .product-card-details,
.catalogsearch-result-index .product-card-details {
  display: none;
}

.catalog-category-view .product-card-actions,
.catalogsearch-result-index .product-card-actions {
  display: none !important;
}

.catalog-category-view .product-card-links,
.catalogsearch-result-index .product-card-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.catalog-category-view .product-card-compare,
.catalogsearch-result-index .product-card-compare {
  width: 34px;
  height: 34px;
  padding: 0 !important;
  border: 1px solid var(--brand-border) !important;
  background: transparent !important;
  border-radius: 50% !important;
}

.catalog-category-view .toolbar.toolbar-products,
.catalogsearch-result-index .toolbar.toolbar-products {
  margin-bottom: 32px;
  padding: 0 0 24px;
  border-top: 0 !important;
  border-bottom: 1px solid var(--brand-border) !important;
  color: var(--brand-text-muted);
}

.catalog-category-view .pl-product-list > .toolbar.toolbar-products:last-of-type,
.catalogsearch-result-index .pl-product-list > .toolbar.toolbar-products:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0 !important;
}

.catalog-category-view .toolbar .amount,
.catalogsearch-result-index .toolbar .amount,
.catalog-category-view .toolbar .sorter,
.catalogsearch-result-index .toolbar .sorter,
.catalog-category-view .toolbar .pages,
.catalogsearch-result-index .toolbar .pages {
  font-size: 13px !important;
  color: var(--brand-text-muted);
}

.catalog-category-view .toolbar select,
.catalogsearch-result-index .toolbar select {
  min-height: 42px;
  border: 1px solid var(--brand-border);
  background-color: transparent;
  font-size: 12px;
  letter-spacing: .05em;
}

.catalog-category-view .block.filter,
.catalogsearch-result-index .block.filter {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.catalog-category-view .pl-filters-panel,
.catalogsearch-result-index .pl-filters-panel {
  position: sticky;
  top: 108px;
  align-self: start;
}

.catalog-category-view .pl-filters-title,
.catalogsearch-result-index .pl-filters-title {
  margin-bottom: 12px;
}

.catalog-category-view .pl-filters-toggle span:first-child,
.catalogsearch-result-index .pl-filters-toggle span:first-child {
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.catalog-category-view .pl-filter-group-content .items,
.catalogsearch-result-index .pl-filter-group-content .items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.catalog-category-view .pl-filter-group-content a,
.catalogsearch-result-index .pl-filter-group-content a {
  font-size: 13px;
  color: var(--brand-text-muted);
}

.catalog-category-view .pl-filter-group-content a:hover,
.catalogsearch-result-index .pl-filter-group-content a:hover {
  color: var(--brand-text-primary);
}

.catalog-category-view .pl-filter-group-content .count,
.catalogsearch-result-index .pl-filter-group-content .count {
  color: rgba(107, 101, 96, 0.78);
}

.catalog-category-view .pl-filter-group-content .swatch-layered .swatch-attribute-options,
.catalogsearch-result-index .pl-filter-group-content .swatch-layered .swatch-attribute-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.catalog-category-view .pl-filter-group-content .pl-layered-swatch,
.catalogsearch-result-index .pl-filter-group-content .pl-layered-swatch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 1px solid var(--brand-border, rgba(26, 26, 26, 0.12));
  background-color: #fff;
  color: var(--brand-text-primary);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.catalog-category-view .pl-filter-group-content .pl-layered-swatch--color,
.catalogsearch-result-index .pl-filter-group-content .pl-layered-swatch--color {
  width: 1.75rem;
  height: 1.75rem;
  min-width: 1.75rem;
  min-height: 1.75rem;
  border-radius: 9999px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.catalog-category-view .pl-filter-group-content .pl-layered-swatch--image,
.catalogsearch-result-index .pl-filter-group-content .pl-layered-swatch--image {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  border-radius: 2px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.catalog-category-view .pl-filter-group-content .pl-layered-swatch--text,
.catalogsearch-result-index .pl-filter-group-content .pl-layered-swatch--text {
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.catalog-category-view .pl-filter-group-content .pl-layered-swatch:hover,
.catalogsearch-result-index .pl-filter-group-content .pl-layered-swatch:hover {
  border-color: var(--brand-text-primary);
  color: var(--brand-text-primary);
  transform: translateY(-1px);
}

.catalog-category-view .block.filter .filter-option.card,
.catalogsearch-result-index .block.filter .filter-option.card {
  margin: 0 0 24px !important;
  padding: 0 0 24px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--brand-border) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.catalog-category-view .filter-options-title .title,
.catalogsearch-result-index .filter-options-title .title {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.catalog-product-view .column.main {
  max-width: var(--brand-content-max);
  padding-top: 0;
  padding-bottom: 80px;
}

.catalog-product-view .pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.catalog-product-view .gallery {
  min-width: 0;
}

.catalog-product-view #gallery-main {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--brand-bg-secondary);
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .catalog-product-view .pdp-gallery #gallery > div:not(.fixed) {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .catalog-product-view .pdp-gallery #gallery > div:not(.fixed) > div:has(#gallery-main) {
    flex: 1 1 auto;
    min-width: 0;
    order: 2;
    width: auto !important;
  }

  .catalog-product-view .pdp-gallery #gallery > div:not(.fixed) > div:has(#thumbs) {
    flex: 0 0 92px;
    order: 1;
    width: 92px;
  }

  .catalog-product-view .pdp-gallery #gallery-main {
    margin-bottom: 0;
  }

  .catalog-product-view .pdp-gallery #thumbs:not(.fixed) {
    flex-direction: column;
    align-items: stretch;
    min-height: 0 !important;
    width: 92px;
    gap: 10px;
  }

  .catalog-product-view .pdp-gallery #thumbs:not(.fixed) > button {
    display: none;
  }

  .catalog-product-view .pdp-gallery #thumbs:not(.fixed) .js_thumbs_slides {
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100% !important;
    max-height: min(72vh, 640px);
    overflow-y: auto;
    overflow-x: hidden;
    gap: 10px;
    scroll-snap-type: y proximity;
    -webkit-overflow-scrolling: touch;
  }

  .catalog-product-view .pdp-gallery #thumbs:not(.fixed) .js_thumbs_slide {
    flex-shrink: 0;
    width: 100%;
    margin: 0 !important;
  }

  .catalog-product-view .pdp-gallery #thumbs:not(.fixed) .js_thumbs_slide button {
    display: block;
    width: 100%;
  }

  .catalog-product-view .pdp-gallery #thumbs:not(.fixed) .js_thumbs_slide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
  }
}

.catalog-product-view #gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

.catalog-product-view #thumbs {
  align-items: stretch;
  gap: 12px;
}

.catalog-product-view .js_thumbs_slides {
  gap: 12px;
  overflow: visible;
}

.catalog-product-view .js_thumbs_slide {
  margin: 0 !important;
}

.catalog-product-view .js_thumbs_slide button {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 2px solid transparent !important;
  opacity: .75;
  transition: border-color .3s var(--brand-ease), opacity .3s var(--brand-ease);
}

.catalog-product-view .js_thumbs_slide button[class*="border-primary"],
.catalog-product-view .js_thumbs_slide button:hover {
  border-color: var(--brand-text-primary) !important;
  opacity: 1;
}

.catalog-product-view .js_thumbs_slide img {
  width: 90px;
  height: 120px;
  object-fit: cover;
}

.catalog-product-view .pdp-info {
  position: sticky;
  top: 110px;
  padding-left: 24px;
}

.catalog-product-view .pdp-info .page-title,
.catalog-product-view .pdp-info h1 {
  margin-bottom: 16px !important;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: 16pt;
  font-weight: 800;
  line-height: 1.15;
}

.catalog-product-view .pl-product-meta {
  font-size: 12px;
  color: var(--brand-text-muted);
}

.catalog-product-view .price-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.catalog-product-view .price-box .price {
  font-size: 20px !important;
  font-weight: 500 !important;
  color: var(--brand-text-primary) !important;
}

.catalog-product-view .price-box .old-price .price,
.catalog-product-view .price-box .price-final_price + .old-price .price {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--brand-text-muted) !important;
  text-decoration: line-through;
}

.catalog-product-view .field.option,
.catalog-product-view .product-options-wrapper .field,
.catalog-product-view .product-options-bottom .field {
  margin-bottom: 28px;
}

.catalog-product-view .swatch-attribute-label,
.catalog-product-view .label.admin__field-label,
.catalog-product-view .field-label,
.catalog-product-view .product-options-wrapper label {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-text-primary);
}

.catalog-product-view .swatch-option {
  min-width: 32px;
  min-height: 32px;
  border: 2px solid var(--brand-border, var(--color-border, #e5e7eb)) !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.catalog-product-view .pl-swatch-visual.swatch-option {
    min-width: 60px;
    min-height: 80px;
}

.catalog-product-view .swatch-option:hover:not(.is-selected) {
  border-color: var(--color-text-muted, #9ca3af) !important;
}

.catalog-product-view .swatch-option.is-selected,
.catalog-product-view label.swatch-option.is-selected,
.catalog-product-view .pdp-swatch.is-selected {
  border-color: var(--pdp-accent, var(--brand-text-primary, #111827)) !important;
}

.catalog-product-view .pl-swatch-text.swatch-option.is-selected,
.catalog-product-view .pdp-swatch--text.is-selected {
  background-color: var(--pdp-accent, var(--brand-text-primary, #111827));
  color: #fff;
  border-color: var(--pdp-accent, var(--brand-text-primary, #111827)) !important;
  box-shadow: none !important;
}

.catalog-product-view .swatch-option.is-focused {
  outline: 2px solid var(--color-text-muted, #9ca3af);
  outline-offset: 2px;
}

.catalog-product-view .swatch-option:hover {
  transform: none;
}

.catalog-product-view .swatch-option.selected,
.catalog-product-view .swatch-option[aria-checked="true"] {
  border-color: var(--brand-text-primary) !important;
}

.catalog-product-view .product-options-wrapper select,
.catalog-product-view .product-options-wrapper .form-select,
.catalog-product-view .product-options-wrapper input[type="text"],
.catalog-product-view .product-options-wrapper textarea {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--brand-border);
  background: transparent;
  padding: 12px 14px;
}

.catalog-product-view .buy-now-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.catalog-product-view .pl-product-purchase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.catalog-product-view .pl-product-purchase__actions > *:first-child {
  min-width: 88px;
}

.catalog-product-view .pl-product-purchase__actions .action.primary,
.catalog-product-view .pl-product-purchase__actions .action.tocart {
  flex: 1 1 240px;
}

.catalog-product-view .pl-product-purchase__secondary .action,
.catalog-product-view .pl-product-purchase__secondary button,
.catalog-product-view .pl-product-purchase__secondary a {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-border) !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: var(--brand-text-primary) !important;
}

.catalog-product-view .action.primary.tocart,
.catalog-product-view .action.tocart.primary {
  min-height: 56px;
  background: var(--brand-text-primary) !important;
  border-color: var(--brand-text-primary) !important;
  color: #faf8f5 !important;
}

.catalog-product-view .qty,
.catalog-product-view input.qty {
  min-height: 56px;
  border: 1px solid var(--brand-border);
  background: transparent;
}

.catalog-product-view .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

.catalog-product-view .trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--brand-text-muted);
}

.catalog-product-view .trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand-text-muted);
  fill: none;
  stroke-width: 1.2;
  flex-shrink: 0;
}

.catalog-product-view .snap-slider {
  margin-top: 80px;
  padding-top: 0;
  border-top: 1px solid var(--brand-border);
}

.catalog-product-view .snap-slider > .flex {
  align-items: center;
  margin-bottom: 32px;
}

.catalog-product-view .snap-slider h2,
.catalog-product-view .snap-slider h3,
.catalog-product-view .snap-slider h4 {
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
}

.catalog-product-view .snap-slider [data-prev],
.catalog-product-view .snap-slider [data-next] {
  visibility: visible !important;
  width: 40px;
  height: 40px;
  padding: 0 !important;
  border-radius: 999px !important;
  border: 1px solid var(--brand-border) !important;
  background: transparent !important;
  color: var(--brand-text-primary) !important;
}

.catalog-product-view .snap-pager {
  margin-top: 24px;
}

.catalog-product-view .pdp-sections {
  margin-top: 48px;
}

.catalog-product-view .accordion {
  border-top: 1px solid var(--brand-border);
}

.catalog-product-view .accordion-item {
  border-bottom: 1px solid var(--brand-border);
}

.catalog-product-view .accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-product-view .accordion-trigger svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform .3s var(--brand-ease);
}

.catalog-product-view .accordion-item.open .accordion-trigger svg {
  transform: rotate(45deg);
}

.catalog-product-view .accordion-content {
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--brand-text-muted);
  line-height: 1.8;
}

.catalog-product-view .reviews-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--brand-border);
}

.catalog-product-view .reviews-title {
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.catalog-product-view #customer-review-list > h2,
.catalog-product-view #review-form .text-xl,
.catalog-product-view #customer-review-list .text-2xl {
  display: none;
}

.catalog-product-view #customer-review-list .card,
.catalog-product-view #review-form .card {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.catalog-product-view #customer-review-list [itemprop="review"] {
  background: var(--brand-bg-secondary);
  padding: 24px;
  margin: 0 0 16px !important;
  border: 0 !important;
}

.catalog-product-view #customer-review-list .rating-summary {
  color: var(--brand-accent);
}

.catalog-product-view #customer-review-list [itemprop="name"] {
  margin: 12px 0 10px !important;
  font-size: 18px;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  color: var(--brand-text-primary);
}

.catalog-product-view #customer-review-list time,
.catalog-product-view #customer-review-list [itemprop="author"] {
  font-size: 12px;
  color: var(--brand-text-muted);
}

.catalog-product-view #customer-review-list [itemprop="description"] {
  margin-top: 12px !important;
  line-height: 1.8;
  color: var(--brand-text-muted);
}

.catalog-product-view .review-form .form-input {
  min-height: 52px;
  border: 1px solid var(--brand-border);
  background: transparent;
  padding: 14px 16px;
}

.catalog-product-view .review-form textarea.form-input {
  min-height: 140px;
}

.catalog-product-view .review-form .btn.btn-primary {
  border-radius: 0 !important;
  min-height: 54px;
  padding: 0 28px !important;
  background: var(--brand-text-primary) !important;
  border-color: var(--brand-text-primary) !important;
  color: #faf8f5 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .cms-index-index .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cms-index-index .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cms-index-index .hair-clips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .catalog-product-view .pdp-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .catalog-product-view .pdp-info {
    position: static;
    padding-left: 0;
  }

  .pl-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .cms-index-index {
    --brand-section-gap: 32px;
  }

  .cms-index-index .hero-content,
  .cms-index-index .section,
  .catalog-product-view .column.main {
    padding-inline: var(--pl-layout-gutter);
  }

  .cms-index-index .hero,
  .cms-index-index .hero.hero--banner {
    display: block;
    min-height: 0 !important;
    max-height: none;
    overflow: visible;
    align-items: stretch;
  }

  .cms-index-index .hero-bg {
    position: relative;
    inset: auto;
    height: clamp(220px, 34vw, 280px);
  }

  .cms-index-index .hero-bg .hero-picture,
  .cms-index-index .hero-bg .hero-picture img,
  .cms-index-index .hero-bg img {
    position: absolute;
    inset: 0;
  }

  .cms-index-index .hero-bg img {
    object-position: center 22%;
  }

  .cms-index-index .hero-overlay {
    background: linear-gradient(
      to bottom,
      transparent 55%,
      rgba(26, 26, 26, 0.12) 100%
    );
  }

  .cms-index-index .hero-content {
    position: static;
    z-index: auto;
    max-width: none;
    margin: 0;
    padding: 20px 20px 24px;
    color: var(--brand-text-primary);
    background: var(--brand-bg-primary);
    border-bottom: 1px solid var(--brand-border);
  }

  .cms-index-index .hero-eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
    color: var(--brand-text-muted);
  }

  .cms-index-index .hero-title {
    max-width: 100%;
    margin-bottom: 6px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.08;
    color: var(--brand-text-primary);
  }

  .cms-index-index .hero-subtitle {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.4;
    color: var(--brand-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cms-index-index .hero-proof {
    display: none;
  }

  .cms-index-index .hero-cta {
    gap: 10px;
  }

  .cms-index-index .hero-cta .btn-link {
    display: inline-block;
    color: var(--brand-text-primary);
    border-bottom-color: var(--brand-border);
    font-size: 12px;
  }

  .cms-index-index .hero-cta .btn-primary {
    width: 100%;
    text-align: center;
    padding: 14px 24px !important;
  }

  .cms-index-index .section-header,
  .pl-testimonials .pl-section-header {
    margin-bottom: 24px;
  }

  .cms-index-index .section-title,
  .pl-testimonials .pl-section-title {
    font-size: clamp(26px, 7vw, 34px);
  }

  .cms-index-index .section-subtitle,
  .pl-testimonials .pl-section-subtitle {
    font-size: 13px;
    line-height: 1.6;
  }

  .cms-index-index .hero-cta,
  .cms-index-index .newsletter-form,
  .cms-index-index .form.subscribe {
    flex-direction: column;
  }

  /* Categories: 2-col compact grid instead of full-width stack */
  .cms-index-index .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .cms-index-index .category-card {
    aspect-ratio: 3 / 4;
    border-radius: 2px;
  }

  .cms-index-index .category-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    aspect-ratio: 2.2 / 1;
  }

  .cms-index-index .category-label {
    left: 14px;
    bottom: 14px;
    font-size: 11px;
  }

  .cms-index-index .community-banners-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Trust strip: compact 2x2 grid */
  .cms-index-index .usp-strip {
    padding: 32px 20px;
  }

  .cms-index-index .usp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px 12px;
    text-align: center;
  }

  .cms-index-index .usp-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }

  .cms-index-index .usp-title {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.3;
  }

  .cms-index-index .usp-desc,
  .cms-index-index .usp-action {
    display: none;
  }

  .cms-index-index .home-faq__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cms-index-index .home-faq__header {
    text-align: center;
    margin-bottom: 24px;
  }

  .cms-index-index .home-faq__header .pl-section-tag {
    justify-content: center;
  }

  .cms-index-index .home-faq__header .pl-section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .cms-index-index .home-faq__summary {
    padding: 16px 0;
  }

  .cms-index-index .home-faq__question {
    font-size: 16px;
  }

  /* Horizontal scroll tracks — keep scroll inside section, no page bleed */
  .cms-index-index .section,
  .cms-index-index .pl-testimonials {
    overflow-x: clip;
  }

  .cms-index-index .pl-scroll-track {
    display: flex !important;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    gap: 12px;
    max-width: 100%;
    margin-inline: 0;
    padding: 0 0 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .cms-index-index .pl-scroll-track::-webkit-scrollbar {
    display: none;
  }

  .cms-index-index .pl-testimonials-grid.pl-scroll-track > .pl-testimonial-card {
    flex: 0 0 min(84vw, 320px);
    scroll-snap-align: start;
    padding: 20px;
  }

  .cms-index-index .pl-testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

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

  .cms-index-index .newsletter {
    padding: 48px 20px;
  }

  .cms-index-index .newsletter-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .pl-testimonials {
    padding: 48px 0;
  }

  .pl-site-footer .pl-container {
    padding: 40px 20px 32px;
  }

  .pl-footer-business {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .pl-footer-business > p:not(.pl-footer-brand-name) {
    display: none;
  }

  .pl-footer-contact {
    max-width: none;
    margin-inline: auto;
    text-align: left;
  }

  .pl-footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pl-footer-brand {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--brand-border);
  }

  .pl-footer-social {
    justify-content: center;
    margin-top: 12px;
  }

  .pl-footer-col {
    border-bottom: 1px solid var(--brand-border);
  }

  .pl-footer-accordion__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    cursor: pointer;
    pointer-events: auto;
  }

  .pl-footer-accordion__title {
    margin-bottom: 0;
  }

  .pl-footer-accordion__icon {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  .pl-footer-accordion__item[open] .pl-footer-accordion__icon {
    transform: rotate(-135deg);
  }

  .pl-footer-accordion__item ul {
    padding-bottom: 12px;
  }

  .pl-footer-accordion__item li {
    margin-top: 10px;
  }

  .pl-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding-top: 24px;
  }

  .pl-payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .catalog-product-view .pl-product-purchase__actions:not(.pdp-purchase__cta) {
    flex-direction: column;
    align-items: stretch;
  }

  .pl-header-inner {
    max-width: 100%;
    min-width: 0;
  }

  .pl-header-brand .pl-logo {
    font-size: 24px;
  }

  #header.pl-site-header {
    max-width: 100%;
    overflow-x: clip;
  }

  .pl-filters-host {
    margin: 0;
    padding: 0;
  }

  .pl-filters-sidebar {
    display: none !important;
  }

  .pl-filters-mobile {
    height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .catalog-category-view .pl-filters-dialog,
  .catalogsearch-result-index .pl-filters-dialog {
    position: fixed;
    top: 0;
    left: 0;
    align-self: auto;
  }

  .pl-filters-dialog {
    margin: 0 auto 0 0;
    padding: 20px 20px 0;
    width: min(88vw, 400px);
    max-width: none;
    height: 100%;
    max-height: none;
    overflow: hidden;
    border: 0 !important;
    border-right: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08)) !important;
    background: #fff !important;
    box-shadow: 12px 0 32px rgba(26, 26, 26, 0.12);
  }

  .pl-filters-dialog[open] {
    display: flex;
    flex-direction: column;
  }

  .pl-filters-dialog::backdrop {
    background: rgba(26, 26, 26, 0.42);
    transition: opacity 0.3s ease-out;
  }

  .pl-filters-title--desktop {
    display: none;
  }

  .catalog-category-view.page-with-filter .pl-category-body,
  .catalogsearch-result-index.page-with-filter .pl-category-body {
    display: block;
    gap: 16px;
  }

  body.catalog-category-view .column.main,
  body.catalogsearch-result-index .column.main {
    padding-bottom: 0;
  }

  .catalog-category-view .columns,
  .catalogsearch-result-index .columns {
    padding-bottom: 0;
  }

  .catalog-category-view .pl-product-list,
  .catalogsearch-result-index .pl-product-list {
    padding-bottom: 0;
  }

  .catalog-product-view .column.main {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }

  .catalog-product-view #product_addtocart_form .product-options-wrapper {
    margin: 0;
    padding: 0;
  }

  .catalog-category-view #product-list .products-grid > ul,
  .catalog-category-view .pl-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .catalog-category-view .pl-category-trust.usp-strip {
    margin-top: 1rem;
    padding: 1rem 0 0;
  }

  .catalog-category-view .pl-category-trust .usp-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .5rem;
  }

  .catalog-category-view .pl-category-trust .usp-icon {
    width: 28px;
    height: 28px;
    margin-bottom: .5rem;
  }

  .catalog-category-view .pl-category-trust .usp-title {
    margin-bottom: 0;
    font-size: .6875rem;
    line-height: 1.25;
  }

  .catalog-category-view .pl-category-trust .usp-desc,
  .catalog-category-view .pl-category-trust .usp-action {
    display: none;
  }
}

@media (min-width: 769px) {
  /* Closed <details> still hides children in modern browsers unless forced open */
  .pl-footer-accordion__item {
    overflow: visible;
  }

  .pl-footer-accordion__item::details-content {
    display: block;
    block-size: auto;
    content-visibility: visible;
    overflow: visible;
  }

  .pl-footer-accordion__item > :not(summary) {
    display: block !important;
  }

  .pl-footer-accordion__item ul {
    display: block !important;
  }

  .pl-footer-accordion__summary {
    padding: 0;
  }

  .pl-footer-accordion__title {
    margin-bottom: 20px;
  }
}

.cms-index-index .usp-title a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast, 0.2s ease);
}

.cms-index-index .usp-title a:hover {
  border-bottom-color: currentColor;
}

.cms-index-index .home-products-empty {
  grid-column: 1 / -1;
  padding: 64px 24px;
  text-align: center;
  background: var(--color-bg-warm, #f5f3ef);
  border: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
}

.cms-index-index .home-products-empty__eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-text-muted);
}

.cms-index-index .home-products-empty__title {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
}

.cms-index-index .home-products-empty__copy {
  max-width: 32rem;
  margin: 0 auto 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--brand-text-muted);
}

.cms-policy h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: 1.5rem;
}

.cms-policy .pl-about-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
}

.cms-policy .pl-about-contact p {
  margin: 0 0 0.5rem;
}

.cms-policy .pl-about-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cms-policy .pl-about-feature {
  padding: 1.25rem 1rem;
  border: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
  border-radius: 4px;
  background: var(--color-surface, #fff);
  text-align: center;
}

.cms-policy .pl-about-feature h3 {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.cms-policy .pl-about-feature h3 a {
  color: var(--brand-text-primary);
  text-decoration: none;
}

.cms-policy .pl-about-feature h3 a:hover {
  color: var(--brand-accent, var(--color-accent));
}

.cms-policy .pl-about-feature p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.cms-policy .pl-about-feature p:last-child {
  margin-bottom: 0;
}

.cms-policy .pl-about-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-text-primary);
  text-decoration: none;
}

.cms-policy .pl-about-feature__link:hover {
  color: var(--brand-accent, var(--color-accent));
}

.cms-policy .pl-about-feature__link::after {
  content: "→";
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .cms-policy .pl-about-features {
    grid-template-columns: 1fr;
  }
}

.cms-policy .pl-about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
}

.cms-policy .pl-about-split__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.cms-policy .pl-about-faq h2 {
  margin-top: 0;
}

.cms-policy .pl-about-faq__item {
  border-bottom: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
}

.cms-policy .pl-about-faq__item:first-of-type {
  border-top: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
}

.cms-policy .pl-about-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-text-primary);
  cursor: pointer;
  list-style: none;
}

.cms-policy .pl-about-faq__item summary::-webkit-details-marker {
  display: none;
}

.cms-policy .pl-about-faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: var(--brand-text-muted);
  transition: transform 0.2s ease;
}

.cms-policy .pl-about-faq__item[open] summary::after {
  content: "−";
}

.cms-policy .pl-about-faq__content {
  padding: 0 0 1rem;
}

.cms-policy .pl-about-faq__content p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

.cms-policy .pl-about-faq__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .cms-policy .pl-about-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── Contact page ─────────────────────────────────────────────────────────── */

.contact-index-index .pl-contact-page {
  max-width: var(--brand-content-max, 1400px);
  margin-inline: auto;
  padding-inline: var(--pl-layout-gutter, 1.5rem);
  padding-bottom: 3rem;
}

.contact-index-index .pl-contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-index-index .pl-contact-split__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.contact-index-index .pl-contact-intro {
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-index-index .pl-contact-intro h2 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brand-text-primary);
}

.contact-index-index .pl-contact-intro p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--brand-text-muted);
}

.contact-index-index .pl-contact-form__field {
  margin-bottom: 1rem;
}

.contact-index-index .pl-contact-form__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--brand-text-primary);
}

.contact-index-index .pl-contact-form__input {
  display: block;
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
  border-radius: 4px;
  background: var(--color-surface, #fff);
  font-size: 0.9375rem;
  color: var(--brand-text-primary);
}

.contact-index-index .pl-contact-form__input:focus {
  outline: none;
  border-color: var(--brand-text-primary);
}

.contact-index-index .pl-contact-form__textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-index-index .pl-contact-form__actions {
  margin-top: 1.25rem;
  text-align: center;
}

.contact-index-index .pl-contact-form__submit {
  min-width: 10rem;
}

.contact-index-index .pl-contact-form__after {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--brand-text-muted);
}

@media (max-width: 768px) {
  .contact-index-index .pl-contact-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── HTML sitemap page ────────────────────────────────────────────────────── */

.lwiis_sitemap-index-index .pl-html-sitemap-page {
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-bottom: 3rem;
}

.pl-html-sitemap__intro {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.pl-html-sitemap__intro a {
  color: var(--brand-text-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pl-html-sitemap__section + .pl-html-sitemap__section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--brand-border, rgba(26, 26, 26, 0.08));
}

.pl-html-sitemap__section h2 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", var(--font-display), Georgia, serif;
  font-size: 1.5rem;
  color: var(--brand-text-primary);
}

.pl-html-sitemap__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pl-html-sitemap__list > li {
  margin: 0 0 0.5rem;
}

.pl-html-sitemap__list a {
  font-size: 0.9375rem;
  color: var(--brand-text-muted);
  text-decoration: none;
}

.pl-html-sitemap__list a:hover {
  color: var(--brand-text-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pl-html-sitemap__pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--brand-text-muted);
}

.pl-html-sitemap__pager-link {
  color: var(--brand-text-primary);
  text-decoration: none;
}

.pl-html-sitemap__pager-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pl-html-sitemap__pager-status {
  margin-inline: auto;
}

/* ── PDP layout tokens & BEM blocks ───────────────────────────────────────── */

.catalog-product-view {
  --pdp-accent: var(--brand-text-primary, var(--color-text, #111827));
  --pdp-border: var(--brand-border, var(--color-border, #e5e7eb));
  --pdp-muted: var(--brand-text-muted, var(--color-text-muted, #6b7280));
  --pdp-surface: #fff;
  --pdp-warm: var(--color-bg-warm, #faf8f5);
}

.catalog-product-view .pdp-gallery #gallery-main {
  background: var(--pdp-warm);
  border-radius: 2px;
}

.catalog-product-view .pdp-buybox__meta {
  margin-bottom: 1rem;
}

.catalog-product-view .pdp-buybox > .pdp-purchase__price {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.catalog-product-view .pdp-buybox__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0;
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

.catalog-product-view .pdp-buybox__highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.catalog-product-view .pdp-buybox__highlight-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.125rem;
  object-fit: contain;
  color: var(--pdp-accent, var(--color-accent));
}

.catalog-product-view .pdp-buybox__highlight-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--brand-text-muted, var(--color-text-muted));
}

.catalog-product-view .pdp-buybox__highlight-text strong {
  font-weight: 600;
  color: var(--brand-text-primary, var(--color-text));
}

.catalog-product-view .pdp-buybox__options {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--pdp-border);
}

.catalog-product-view .pdp-buybox__options .field.option,
.catalog-product-view .pdp-buybox__options .product-options-wrapper .field,
.catalog-product-view .pdp-buybox__options .swatch-attribute {
  margin-bottom: 0 !important;
}

.catalog-product-view .pl-swatch-attribute__selected {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--pdp-muted);
}

.catalog-product-view .pdp-purchase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.catalog-product-view .pdp-purchase__price .pdp-price {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}

.catalog-product-view .pdp-purchase__price .pdp-price .price-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}

.catalog-product-view .pdp-purchase__price .pdp-price .final-price {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.25rem;
  order: 1;
}

.catalog-product-view .pdp-purchase__price .pdp-price .old-price {
  order: 2;
  width: auto;
  margin: 0;
}

.catalog-product-view .pdp-purchase__price .pdp-price .price-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--pdp-muted);
  margin-right: 0;
}

.catalog-product-view .pdp-purchase__price .pdp-price .final-price .price {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem) !important;
  font-weight: 500 !important;
}

.catalog-product-view .pdp-purchase__cta {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: stretch;
}

.catalog-product-view .pdp-purchase__qty-wrap,
.catalog-product-view .pdp-purchase__submit-wrap {
  min-width: 0;
}

.catalog-product-view .pdp-purchase__qty-wrap .form-input,
.catalog-product-view .pdp-purchase__qty-wrap input.qty {
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 3.25rem;
}

.catalog-product-view .pdp-purchase__submit-wrap .pdp-addtocart-button {
  width: 100%;
  height: 100%;
  min-height: 3.25rem;
  max-height: none;
}

.catalog-product-view .pdp-addtocart-form {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.catalog-product-view .pdp-addtocart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3.25rem;
  flex: none;
  padding-inline: 1.25rem !important;
  margin-left: 0 !important;
}

.catalog-product-view .pdp-addtocart-button__icon {
  flex-shrink: 0;
}

.catalog-product-view .pdp-addtocart-button__label {
  display: inline;
  white-space: nowrap;
}

.catalog-product-view .pdp-purchase__secondary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 0.375rem;
  margin-bottom: 0.375rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.catalog-product-view .pdp-purchase__trust.pl-product-trust {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--pdp-warm);
  border-radius: 2px;
}

.catalog-product-view .pdp-purchase__trust .pl-product-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.catalog-product-view .pdp-purchase__trust .pl-product-trust__icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--pdp-accent);
}

.catalog-product-view .pdp-purchase__trust a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.catalog-product-view .pdp-sections {
  margin-top: 3rem;
}

/* Mobile: accordion only */
.catalog-product-view .pdp-tabs,
.catalog-product-view .pdp-tabs__panels {
  display: none !important;
}

.catalog-product-view .pdp-accordion {
  display: block;
  border-top: 1px solid var(--pdp-border);
}

.catalog-product-view .pdp-accordion .accordion-item {
  border-bottom: 1px solid var(--pdp-border);
}

.catalog-product-view .pdp-accordion .accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pdp-accent);
  background: none;
  border: 0;
  cursor: pointer;
}

.catalog-product-view .pdp-accordion .accordion-trigger svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.catalog-product-view .pdp-accordion .accordion-item.open .accordion-trigger svg {
  transform: rotate(45deg);
}

.catalog-product-view .pdp-accordion .accordion-content {
  padding: 0 0 1.25rem;
  font-size: 15px;
  line-height: 1.8;
  color: var(--pdp-muted);
}

@media (min-width: 1024px) {
  .catalog-product-view .pdp-tabs {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 1px solid var(--pdp-border);
    margin-bottom: 0;
  }

  .catalog-product-view .pdp-tabs__panels {
    display: block !important;
  }

  .catalog-product-view .pdp-accordion {
    display: none !important;
  }
}

.catalog-product-view .pdp-tabs__trigger {
  padding: 1rem 1.5rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pdp-muted);
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.catalog-product-view .pdp-tabs__trigger:hover,
.catalog-product-view .pdp-tabs__trigger[aria-selected="true"] {
  color: var(--pdp-accent);
  border-bottom-color: var(--pdp-accent);
}

.catalog-product-view .pdp-tabs__panel.card {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 2rem 0 !important;
}

.catalog-product-view .pdp-tabs__content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--pdp-muted);
  max-width: 48rem;
}

.catalog-product-view .pdp-swatch--disabled {
  border: 2px solid var(--pdp-border) !important;
  background-color: var(--pdp-surface);
}

.catalog-product-view label.pdp-swatch::before,
.catalog-product-view label.pdp-swatch::after {
  display: none !important;
  content: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
