.nora-product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 18px;
  overflow: hidden;
  flex-direction: column;
  color: var(--nora-charcoal);
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(61, 36, 34, 0.12);
  border-radius: 8px;
  box-shadow: var(--nora-shadow-card);
}

.nora-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--nora-burgundy), var(--nora-gold));
  opacity: 0.86;
}

.nora-product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.nora-product-card__label,
.nora-product-card__count {
  color: var(--nora-burgundy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nora-product-card__count {
  color: rgba(24, 18, 16, 0.58);
}

.nora-product-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  margin-bottom: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(195, 150, 56, 0.16), transparent 38%),
    rgba(246, 234, 220, 0.78);
  border-radius: 8px;
  text-decoration: none;
}

.nora-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.nora-product-card:hover .nora-product-card__image {
  transform: scale(1.035);
}

.nora-product-card__image--placeholder {
  width: 58%;
  height: 58%;
  object-fit: contain;
  opacity: 0.9;
}

.nora-product-card__body {
  flex: 1;
}

.nora-product-card__title {
  margin: 0 0 8px;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.nora-product-card__title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.nora-product-card__title a {
  text-decoration: none;
}

.nora-product-card__benefit {
  color: rgba(24, 18, 16, 0.66);
  font-size: 0.95rem;
}

.nora-product-card__price {
  margin-top: 16px;
  color: var(--nora-charcoal);
  font-size: 1.1rem;
  font-weight: 700;
}

.nora-product-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, auto);
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.nora-product-card__view,
.nora-product-card__quick-add,
.nora-product-card .added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nora-product-card__view {
  color: var(--nora-charcoal);
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(61, 36, 34, 0.2);
}

.nora-product-card__quick-add {
  color: var(--nora-cream-soft);
  background: linear-gradient(135deg, var(--nora-burgundy), var(--nora-burgundy-deep));
  border: 1px solid transparent;
}

.nora-product-card .added_to_cart {
  grid-column: 1 / -1;
  color: var(--nora-burgundy);
  background: rgba(143, 32, 41, 0.08);
  border: 1px solid rgba(143, 32, 41, 0.18);
}

.nora-product-card__view:hover,
.nora-product-card__view:focus-visible,
.nora-product-card__quick-add:hover,
.nora-product-card__quick-add:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.nora-product-card__quick-add.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.nora-product-card--placeholder .nora-product-card__media {
  background:
    radial-gradient(circle at 50% 34%, rgba(195, 150, 56, 0.22), transparent 35%),
    linear-gradient(145deg, rgba(255, 250, 242, 0.86), rgba(246, 234, 220, 0.74));
}

.woocommerce .nora-shop-main {
  max-width: 1360px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: auto !important;
  padding: 18px;
  margin: 0 !important;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(61, 36, 34, 0.12);
  border-radius: 8px;
  box-shadow: var(--nora-shadow-card);
}

.woocommerce ul.products li.product a img {
  border-radius: 8px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--nora-charcoal);
  font-family: var(--nora-heading-font);
  font-size: 2rem;
}

.woocommerce ul.products li.product .price {
  color: var(--nora-burgundy);
  font-weight: 700;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  color: var(--nora-cream-soft);
  background: var(--nora-burgundy);
  border-radius: 999px;
  font-weight: 700;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  color: var(--nora-cream-soft);
  background: var(--nora-burgundy-deep);
}

.woocommerce div.product .product_title {
  color: var(--nora-plum);
  font-size: clamp(3rem, 7vw, 6rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--nora-burgundy);
  font-size: 1.45rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nora-product-card__actions {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

.nora-product-card--featured {
  display: flex;
  min-height: clamp(430px, 52vh, 540px);
  padding: 24px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  color: var(--nora-cream-soft);
  background: rgba(18, 13, 12, 0.5);
  border-color: rgba(255, 250, 242, 0.36);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 242, 0.24),
    0 28px 80px rgba(0, 0, 0, 0.24);
}

.nora-product-card--featured:focus-within {
  border-color: rgba(255, 250, 242, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 242, 0.24),
    0 28px 80px rgba(0, 0, 0, 0.24),
    0 0 0 3px rgba(255, 250, 242, 0.18);
}

.nora-product-card--featured::before {
  inset: 0;
  z-index: 1;
  height: auto;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 250, 242, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(8, 6, 5, 0.04) 0%, rgba(8, 6, 5, 0.14) 40%, rgba(8, 6, 5, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 6, 5, 0.42), transparent 44%, rgba(8, 6, 5, 0.24));
  opacity: 1;
  pointer-events: none;
}

.nora-product-card--featured::after {
  inset: 1px;
  z-index: 2;
  background:
    linear-gradient(132deg, rgba(255, 250, 242, 0.28), transparent 24%, transparent 68%, rgba(255, 250, 242, 0.1));
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: 9px;
  box-shadow:
    inset 0 0 32px rgba(255, 250, 242, 0.09),
    inset 0 0 2px rgba(255, 250, 242, 0.36);
  pointer-events: none;
}

.nora-product-card--featured > * {
  position: relative;
  z-index: 3;
}

.nora-product-card--featured .nora-product-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  margin: 0;
  background: rgba(19, 14, 13, 0.24);
  border: 0;
  border-radius: inherit;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nora-product-card--featured .nora-product-card__media:focus-visible {
  outline: none;
}

.nora-product-card--featured .nora-product-card__image {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
}

.nora-product-card--featured .nora-product-card__meta {
  margin: 0;
  align-items: flex-start;
  pointer-events: none;
}

.nora-product-card--featured .nora-product-card__label,
.nora-product-card--featured .nora-product-card__count {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 8px 10px;
  color: var(--nora-cream-soft);
  background: rgba(17, 12, 11, 0.26);
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 999px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.nora-product-card--featured .nora-product-card__label {
  color: #f8d78d;
}

.nora-product-card--featured .nora-product-card__body {
  width: min(100%, 320px);
  margin-top: auto;
  padding-top: clamp(190px, 29vh, 280px);
  pointer-events: none;
}

.nora-product-card--featured .nora-product-card__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 0;
  font-size: clamp(2rem, 2.65vw, 3rem);
  line-height: 0.96;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.34);
}

.nora-product-card--featured .nora-product-card__price {
  margin-top: 0;
  color: var(--nora-cream-soft);
  font-size: 1.16rem;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
}

.nora-product-card--featured .nora-product-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(144px, auto);
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  pointer-events: none;
}

.nora-product-card--featured .nora-product-card__quick-add,
.nora-product-card--featured .added_to_cart {
  min-height: 48px;
  border-radius: 999px;
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.nora-product-card--featured .nora-product-card__quick-add {
  justify-self: end;
  min-width: 150px;
  color: var(--nora-cream-soft);
  background:
    linear-gradient(135deg, rgba(184, 48, 58, 0.96), rgba(105, 22, 29, 0.94)),
    var(--nora-burgundy);
  border-color: rgba(255, 249, 245, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 242, 0.24),
    0 14px 34px rgba(105, 22, 29, 0.32);
  pointer-events: auto;
}

.nora-product-card--featured .added_to_cart {
  color: var(--nora-cream-soft);
  background: rgba(255, 250, 242, 0.16);
  border-color: rgba(255, 249, 245, 0.28);
  pointer-events: auto;
}

.nora-product-card--featured .nora-product-card__quick-add:hover,
.nora-product-card--featured .nora-product-card__quick-add:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .nora-product-card--featured {
    min-height: 410px;
  }
}

@media (max-width: 640px) {
  .nora-product-card--featured {
    min-height: 380px;
    padding: 18px;
  }

  .nora-product-card--featured .nora-product-card__body {
    width: min(100%, 300px);
    padding-top: 172px;
  }

  .nora-product-card--featured .nora-product-card__actions {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
  }

  .nora-product-card--featured .nora-product-card__quick-add {
    justify-self: stretch;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nora-product-card__image,
  .nora-product-card__view,
  .nora-product-card__quick-add,
  .nora-shop-mood-card {
    transition: none !important;
  }

  .nora-shop-mood-card:hover,
  .nora-shop-mood-card:focus-visible,
  .nora-shop-mood-card.is-active {
    transform: none !important;
  }
}

.nora-account-main {
  width: min(100% - 48px, 1480px);
  padding: clamp(42px, 5vw, 72px) 0 clamp(72px, 8vw, 112px);
  margin: 0 auto;
}

.nora-account-main > article {
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation.nora-account-nav,
.woocommerce-account .woocommerce-MyAccount-content.nora-account-content {
  float: none;
  width: 100%;
}

.woocommerce-account .nora-account-shell::before,
.woocommerce-account .nora-account-shell::after {
  display: none;
  content: none;
}

.nora-account-shell {
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 70px);
  align-items: start;
}

.nora-account-nav {
  position: sticky;
  top: 118px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(61, 36, 34, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(35, 23, 18, 0.09);
  backdrop-filter: blur(20px) saturate(1.1);
}

.nora-account-nav__list {
  display: grid;
  gap: 4px;
  padding: 18px;
  margin: 0;
  list-style: none;
}

.nora-account-nav__link {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: rgba(24, 18, 16, 0.76);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nora-account-nav__link:hover,
.nora-account-nav__link:focus-visible,
.nora-account-nav__link.is-active {
  color: var(--nora-plum);
  background: rgba(246, 234, 220, 0.88);
  outline: none;
  transform: translateX(2px);
}

.nora-account-nav__link .nora-icon {
  width: 18px;
  height: 18px;
  color: rgba(61, 36, 34, 0.64);
}

.nora-account-nav__help {
  padding: 22px 24px 24px;
  background: rgba(255, 250, 242, 0.68);
  border-top: 1px solid rgba(61, 36, 34, 0.08);
}

.nora-account-nav__help-title {
  color: var(--nora-plum);
  font-weight: 800;
}

.nora-account-nav__help p:not(.nora-account-nav__help-title) {
  margin-top: 2px;
  color: rgba(24, 18, 16, 0.56);
  font-size: 0.86rem;
}

.nora-account-nav__help a {
  display: inline-flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: rgba(24, 18, 16, 0.72);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.nora-account-nav__help .nora-icon {
  width: 18px;
  height: 18px;
}

.nora-account-content {
  min-width: 0;
}

.nora-account-dashboard {
  display: grid;
  gap: 28px;
}

.nora-account-dashboard__hero {
  max-width: 760px;
}

.nora-account-dashboard__hero h1 {
  color: var(--nora-charcoal);
  font-size: clamp(2.65rem, 3.4vw, 4rem);
  line-height: 1;
}

.nora-account-dashboard__hero p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(24, 18, 16, 0.62);
}

.nora-account-stat-card,
.nora-account-panel {
  background: rgba(255, 250, 242, 0.76);
  border: 1px solid rgba(61, 36, 34, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(35, 23, 18, 0.08);
}

.nora-account-button,
.nora-account-button.button,
.woocommerce .nora-account-button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  color: var(--nora-cream-soft);
  background: var(--nora-burgundy);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.nora-account-button--soft {
  width: 100%;
  margin-top: 20px;
  color: var(--nora-plum);
  background: rgba(246, 234, 220, 0.86);
}

.nora-account-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nora-account-stat-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 2px 14px;
  align-items: center;
  min-height: 126px;
  padding: 22px;
  color: var(--nora-charcoal);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nora-account-stat-card:hover,
.nora-account-stat-card:focus-visible {
  border-color: rgba(143, 32, 41, 0.22);
  outline: none;
  box-shadow: 0 22px 70px rgba(35, 23, 18, 0.11);
  transform: translateY(-2px);
}

.nora-account-stat-card > .nora-icon {
  grid-row: 1 / span 3;
  width: 30px;
  height: 30px;
  color: rgba(61, 36, 34, 0.72);
}

.nora-account-stat-card span {
  color: rgba(24, 18, 16, 0.56);
  font-size: 0.82rem;
  font-weight: 750;
}

.nora-account-stat-card strong {
  color: var(--nora-charcoal);
  font-family: var(--nora-heading-font);
  font-size: 2rem;
  font-weight: 650;
  line-height: 1;
}

.nora-account-stat-card strong span {
  margin-left: 3px;
  color: rgba(24, 18, 16, 0.58);
  font-family: var(--nora-body-font);
  font-size: 0.86rem;
}

.nora-account-stat-card small {
  color: var(--nora-plum);
  font-size: 0.82rem;
  font-weight: 800;
}

.nora-account-dashboard__split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.nora-account-dashboard__split--secondary {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.88fr);
}

.nora-account-panel {
  padding: clamp(22px, 3vw, 30px);
}

.nora-account-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.nora-account-panel h2 {
  color: var(--nora-charcoal);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.nora-account-eyebrow {
  margin-bottom: 8px;
  color: var(--nora-burgundy);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nora-account-text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--nora-plum);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.nora-account-text-link .nora-icon {
  width: 17px;
  height: 17px;
}

.nora-account-order-list {
  display: grid;
  gap: 12px;
}

.nora-account-order {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto auto 22px;
  gap: 16px;
  align-items: center;
  padding: 12px;
  color: var(--nora-charcoal);
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(61, 36, 34, 0.09);
  border-radius: 8px;
  text-decoration: none;
}

.nora-account-order__image {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  overflow: hidden;
  background: rgba(246, 234, 220, 0.8);
  border-radius: 7px;
}

.nora-account-order__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nora-account-order__main {
  display: grid;
  gap: 2px;
}

.nora-account-order__main strong,
.nora-account-order__total {
  font-weight: 800;
}

.nora-account-order__main small {
  color: rgba(24, 18, 16, 0.56);
}

.nora-account-order__status {
  display: inline-flex;
  justify-content: center;
  min-width: 92px;
  padding: 7px 11px;
  color: var(--nora-sage);
  background: rgba(83, 99, 74, 0.12);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
}

.nora-account-order__status.is-processing,
.nora-account-order__status.is-on-hold {
  color: #9a6a16;
  background: rgba(195, 150, 56, 0.18);
}

.nora-account-order__arrow .nora-icon {
  width: 18px;
  height: 18px;
  color: rgba(24, 18, 16, 0.46);
}

.nora-account-empty {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: rgba(24, 18, 16, 0.64);
  background: rgba(246, 234, 220, 0.48);
  border-radius: 8px;
}

.nora-account-wishlist-preview {
  display: flex;
  flex-direction: column;
}

.nora-account-wishlist-preview__list {
  display: grid;
  gap: 12px;
}

.nora-account-wishlist-preview__item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 22px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  color: var(--nora-charcoal);
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(61, 36, 34, 0.09);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nora-account-wishlist-preview__item:hover,
.nora-account-wishlist-preview__item:focus-visible {
  border-color: rgba(143, 32, 41, 0.22);
  outline: none;
  box-shadow: 0 16px 44px rgba(35, 23, 18, 0.09);
  transform: translateY(-2px);
}

.nora-account-wishlist-preview__image {
  display: block;
  width: 74px;
  height: 74px;
  overflow: hidden;
  background: rgba(246, 234, 220, 0.72);
  border-radius: 8px;
}

.nora-account-wishlist-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nora-account-wishlist-preview__item strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: var(--nora-heading-font);
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.06;
}

.nora-account-wishlist-preview__item small {
  display: block;
  margin-top: 8px;
  color: var(--nora-charcoal);
  font-weight: 850;
}

.nora-account-wishlist-preview__item > .nora-icon {
  width: 20px;
  height: 20px;
  color: rgba(61, 36, 34, 0.5);
}

.nora-account-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nora-account-address {
  min-height: 172px;
  padding: 18px;
  color: rgba(24, 18, 16, 0.7);
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(61, 36, 34, 0.09);
  border-radius: 8px;
  font-style: normal;
}

.nora-account-address span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  color: var(--nora-plum);
  background: rgba(195, 150, 56, 0.12);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
}

.nora-account-payment {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(61, 36, 34, 0.09);
  border-radius: 8px;
}

.nora-account-payment__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--nora-burgundy);
  background: rgba(195, 150, 56, 0.14);
  border-radius: 999px;
}

.nora-account-payment strong,
.nora-account-payment small {
  display: block;
}

.nora-account-payment small {
  color: rgba(24, 18, 16, 0.56);
}

.nora-account-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.nora-account-wishlist-item {
  display: grid;
  gap: 8px;
  color: var(--nora-charcoal);
  text-decoration: none;
}

.nora-account-wishlist-item__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(246, 234, 220, 0.72);
  border-radius: 8px;
}

.nora-account-wishlist-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.nora-account-wishlist-item:hover img,
.nora-account-wishlist-item:focus-visible img {
  transform: scale(1.035);
}

.nora-account-wishlist-item__heart {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--nora-plum);
  background: rgba(255, 250, 242, 0.84);
  border-radius: 999px;
}

.nora-account-wishlist-item__heart .nora-icon {
  width: 16px;
  height: 16px;
}

.nora-account-wishlist-item__name {
  display: -webkit-box;
  min-height: 2.5em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: var(--nora-heading-font);
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.05;
}

.nora-account-wishlist-item__price {
  color: var(--nora-charcoal);
  font-weight: 850;
}

.nora-account-explore {
  display: grid;
  gap: 28px;
}

.nora-account-explore > div:first-child p {
  margin-top: 8px;
  color: rgba(24, 18, 16, 0.58);
}

.nora-account-explore__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nora-account-explore__grid a {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: var(--nora-charcoal);
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(61, 36, 34, 0.1);
}

.nora-account-explore__grid a:last-child {
  border-right: 0;
}

.nora-account-explore__grid .nora-icon {
  width: 28px;
  height: 28px;
  color: rgba(61, 36, 34, 0.68);
}

.nora-account-explore__grid strong {
  font-weight: 850;
}

.nora-account-explore__grid span {
  color: rgba(24, 18, 16, 0.58);
  font-size: 0.86rem;
}

.nora-account-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 0 0;
}

.nora-account-benefits div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.nora-account-benefits .nora-icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--nora-plum);
  border: 1px solid rgba(61, 36, 34, 0.16);
  border-radius: 999px;
}

.nora-account-benefits span,
.nora-account-benefits strong {
  display: block;
}

.nora-account-benefits strong {
  color: var(--nora-charcoal);
  font-size: 0.9rem;
}

.nora-account-benefits span {
  color: rgba(24, 18, 16, 0.56);
  font-size: 0.84rem;
}

.nora-account-panel--placeholder {
  display: grid;
  gap: 22px;
  min-height: 280px;
  align-content: center;
}

.nora-account-content .woocommerce-info,
.nora-account-content .woocommerce-message,
.nora-account-content .woocommerce-error {
  border-radius: 8px;
}

.nora-account-content table.shop_table,
.nora-account-content .woocommerce-Addresses .woocommerce-Address,
.nora-account-content form.login,
.nora-account-content form.register,
.nora-account-content form.woocommerce-EditAccountForm {
  overflow: hidden;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(61, 36, 34, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(35, 23, 18, 0.08);
}

.nora-account-content table.shop_table {
  padding: 10px;
}

.nora-account-content form.login,
.nora-account-content form.register,
.nora-account-content form.woocommerce-EditAccountForm {
  padding: clamp(22px, 4vw, 34px);
}

.nora-account-content input.input-text,
.nora-account-content textarea,
.nora-account-content select {
  min-height: 48px;
  padding: 11px 14px;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(61, 36, 34, 0.14);
  border-radius: 8px;
}

.nora-account-content .woocommerce-Button,
.nora-account-content .button {
  border-radius: 999px;
}

@media (max-width: 1180px) {
  .nora-account-shell {
    grid-template-columns: 1fr;
  }

  .nora-account-nav {
    position: static;
  }

  .nora-account-nav__list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

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

  .nora-account-nav__link {
    min-width: max-content;
  }

  .nora-account-nav__help {
    display: none;
  }

  .nora-account-dashboard__hero,
  .nora-account-dashboard__split,
  .nora-account-dashboard__split--secondary {
    grid-template-columns: 1fr;
  }

  .nora-account-stat-grid,
  .nora-account-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nora-account-main {
    width: min(100% - 32px, 1480px);
    padding-top: 28px;
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
  }

  .nora-account-shell {
    gap: 22px;
  }

  .nora-account-dashboard {
    gap: 20px;
  }

  .nora-account-dashboard__hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }

  .nora-account-stat-grid,
  .nora-account-address-grid,
  .nora-account-wishlist-grid,
  .nora-account-explore__grid,
  .nora-account-benefits {
    grid-template-columns: 1fr;
  }

  .nora-account-order {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .nora-account-order__image {
    width: 54px;
    height: 54px;
  }

  .nora-account-order__total,
  .nora-account-order__arrow {
    display: none;
  }

  .nora-account-order__status {
    min-width: auto;
  }

  .nora-account-panel__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nora-account-explore__grid a {
    border-right: 0;
    border-bottom: 1px solid rgba(61, 36, 34, 0.1);
  }

  .nora-account-explore__grid a:last-child {
    border-bottom: 0;
  }
}

body.nora-commerce-view {
  background:
    radial-gradient(circle at 12% 4%, rgba(195, 150, 56, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(251, 243, 232, 0.96));
}

body.nora-commerce-view:not(.home) .nora-site-header {
  position: relative;
  color: var(--nora-charcoal);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(61, 36, 34, 0.1);
  backdrop-filter: blur(18px);
}

body.nora-commerce-view .nora-menu {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}

body.nora-commerce-view .nora-menu a:hover,
body.nora-commerce-view .nora-menu a:focus-visible,
body.nora-commerce-view .nora-menu .current-menu-item > a {
  color: var(--nora-burgundy);
  background: rgba(143, 32, 41, 0.07);
}

body.nora-commerce-view .nora-icon-button:hover,
body.nora-commerce-view .nora-icon-button:focus-visible {
  background: rgba(61, 36, 34, 0.06);
  border-color: rgba(61, 36, 34, 0.12);
}

.nora-shop-archive,
.nora-single-product {
  color: var(--nora-charcoal);
  --nora-shop-accent: var(--nora-burgundy);
  --nora-shop-accent-light: #f4ded5;
  --nora-shop-accent-soft: rgba(244, 222, 213, 0.4);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.nora-shop-archive::before,
.nora-shop-archive::after,
.nora-single-product::before,
.nora-single-product::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 340ms ease;
}

.nora-shop-archive::before,
.nora-single-product::before {
  background:
    radial-gradient(circle at 13% 22%, color-mix(in srgb, var(--nora-shop-accent-light) 54%, transparent) 0 7rem, transparent 15rem),
    radial-gradient(circle at 86% 16%, color-mix(in srgb, var(--nora-shop-accent) 18%, transparent) 0 6rem, transparent 17rem),
    radial-gradient(circle at 73% 72%, color-mix(in srgb, var(--nora-shop-accent-light) 38%, transparent) 0 8rem, transparent 19rem);
  filter: blur(18px);
}

.nora-shop-archive::after,
.nora-single-product::after {
  background:
    radial-gradient(circle at 27% 88%, color-mix(in srgb, var(--nora-shop-accent) 12%, transparent) 0 5rem, transparent 14rem),
    radial-gradient(circle at 93% 52%, color-mix(in srgb, var(--nora-shop-accent-light) 46%, transparent) 0 5.5rem, transparent 16rem);
  filter: blur(22px);
}

body.has-nora-shop-mood .nora-shop-archive::before,
body.has-nora-shop-mood .nora-shop-archive::after,
body.has-nora-shop-mood .nora-single-product::before,
body.has-nora-shop-mood .nora-single-product::after {
  opacity: 1;
}

.nora-shop-hero {
  position: relative;
  z-index: 1;
  min-height: clamp(330px, 35vw, 470px);
  padding: clamp(58px, 7vw, 104px) 24px clamp(98px, 9vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(195, 150, 56, 0.15), transparent 28%),
    radial-gradient(circle at 90% 58%, rgba(143, 32, 41, 0.08), transparent 34%),
    linear-gradient(105deg, #fffaf2 0%, #fff7ef 43%, #ead8ca 100%);
}

.nora-shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 72%, rgba(126, 87, 67, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.42) 58%, rgba(255, 250, 242, 0.12));
  pointer-events: none;
}

.nora-shop-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(251, 243, 232, 0.98));
  pointer-events: none;
}

.nora-shop-hero__inner,
.nora-shop-shell,
.nora-single-product__inner {
  width: min(100% - 48px, var(--nora-content-width));
  margin: 0 auto;
}

.nora-single-product__inner {
  position: relative;
  z-index: 1;
}

.nora-shop-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
}

.nora-shop-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.nora-shop-hero__eyebrow {
  margin-bottom: 12px;
  color: var(--nora-burgundy);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nora-shop-hero h1 {
  font-size: clamp(3.25rem, 5.8vw, 5.4rem);
  line-height: 0.95;
}

.nora-shop-hero__intro {
  max-width: 520px;
  margin-top: 20px;
  color: rgba(24, 18, 16, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.nora-shop-hero__visual {
  position: relative;
  display: grid;
  width: min(100%, 540px);
  min-height: clamp(230px, 25vw, 350px);
  justify-self: end;
  place-items: end center;
}

.nora-shop-hero__visual::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100%, 520px);
  height: 46%;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.9), rgba(221, 191, 169, 0.86)),
    radial-gradient(ellipse at 50% 0%, rgba(255, 250, 242, 0.7), transparent 60%);
  border-radius: 999px 999px 26px 26px;
  box-shadow: 0 28px 80px rgba(61, 36, 34, 0.2);
}

.nora-shop-hero__visual::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 6%;
  width: 78%;
  height: 72%;
  background:
    radial-gradient(circle at 25% 62%, rgba(232, 164, 156, 0.28), transparent 26%),
    radial-gradient(circle at 70% 22%, rgba(255, 250, 242, 0.7), transparent 34%),
    linear-gradient(120deg, rgba(255, 250, 242, 0.18), rgba(119, 82, 68, 0.18));
  filter: blur(20px);
  opacity: 0.78;
}

.nora-shop-hero__product-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(82%, 410px);
  max-height: clamp(230px, 28vw, 360px);
  margin-left: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(61, 36, 34, 0.2));
}

.nora-shop-hero__fallback-image {
  position: relative;
  z-index: 1;
  width: min(76%, 360px);
  aspect-ratio: 1;
  border-radius: 999px 999px 32px 32px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 250, 242, 0.96), rgba(230, 198, 176, 0.5) 46%, rgba(139, 92, 75, 0.18) 100%);
  box-shadow: 0 26px 54px rgba(61, 36, 34, 0.18);
}

.nora-shop-shell {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(64px, 8vw, 104px);
  margin-top: -52px;
}

.nora-shop-discovery {
  padding: clamp(20px, 2.8vw, 32px);
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(61, 36, 34, 0.09);
  border-radius: 8px;
  box-shadow: 0 24px 74px rgba(35, 23, 18, 0.11);
  backdrop-filter: blur(20px);
}

.nora-shop-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 1px solid rgba(61, 36, 34, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.72);
}

.nora-shop-tabs a,
.nora-shop-tabs button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--nora-charcoal);
  appearance: none;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: var(--nora-body-font);
  text-decoration: none;
  border-right: 1px solid rgba(61, 36, 34, 0.1);
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  cursor: pointer;
}

.nora-shop-tabs a:last-child,
.nora-shop-tabs button:last-child {
  border-right: 0;
}

.nora-shop-tabs a.is-active,
.nora-shop-tabs button.is-active {
  color: var(--nora-cream-soft);
  background: var(--nora-plum);
}

.nora-shop-tabs button:focus-visible {
  outline: 2px solid rgba(143, 32, 41, 0.42);
  outline-offset: -4px;
}

.nora-shop-moods__label {
  margin-bottom: 14px;
  font-weight: 750;
}

.nora-shop-moods__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.nora-shop-mood-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(158px, 14vw, 188px);
  padding: 20px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--nora-cream-soft);
  appearance: none;
  background: var(--nora-mood-image) center / cover no-repeat;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(35, 23, 18, 0.12);
  cursor: pointer;
  font-family: var(--nora-body-font);
  text-align: center;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nora-shop-mood-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(17, 11, 10, 0.04), rgba(17, 11, 10, 0.66)),
    radial-gradient(circle at 50% 30%, rgba(255, 250, 242, 0.16), transparent 38%);
}

.nora-shop-mood-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  pointer-events: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.nora-shop-mood-card:hover,
.nora-shop-mood-card:focus-visible,
.nora-shop-mood-card.is-active {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--nora-mood-accent-light) 70%, white);
  box-shadow: 0 20px 44px color-mix(in srgb, var(--nora-mood-accent) 28%, rgba(35, 23, 18, 0.14));
}

.nora-shop-mood-card.is-active::after {
  border-color: color-mix(in srgb, var(--nora-mood-accent-light) 86%, white);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--nora-mood-accent) 30%, transparent);
}

.nora-shop-mood-card--coming-soon {
  cursor: default;
  filter: saturate(0.86);
}

.nora-shop-mood-card--coming-soon::before {
  background:
    linear-gradient(180deg, rgba(17, 11, 10, 0.18), rgba(17, 11, 10, 0.78)),
    radial-gradient(circle at 50% 28%, color-mix(in srgb, var(--nora-mood-accent-light) 28%, transparent), transparent 38%);
}

.nora-shop-mood-card--coming-soon:hover,
.nora-shop-mood-card--coming-soon:focus-visible {
  transform: none;
  border-color: rgba(255, 250, 242, 0.16);
  box-shadow: 0 16px 34px rgba(35, 23, 18, 0.12);
}

.nora-shop-mood-card__badge {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 1;
  padding: 7px 11px;
  color: var(--nora-cream-soft);
  background: rgba(255, 250, 242, 0.16);
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.nora-shop-mood-card:focus-visible {
  outline: 2px solid var(--nora-mood-accent-light);
  outline-offset: 3px;
}

.nora-shop-mood-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  margin: 0 auto 10px;
}

.nora-shop-mood-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--nora-heading-font);
  font-size: 1.55rem;
  font-weight: 650;
  line-height: 1;
}

.nora-shop-mood-card__copy {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgba(255, 250, 242, 0.88);
}

.nora-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 28px 4px 24px;
}

.nora-shop-toolbar__filters {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.nora-shop-toolbar select,
.nora-shop-filter-button,
.nora-shop-reset {
  min-height: 46px;
  padding: 0 18px;
  color: var(--nora-charcoal);
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(61, 36, 34, 0.16);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.nora-shop-filter-button,
.nora-shop-reset {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.nora-shop-filter-button .nora-icon {
  width: 18px;
  height: 18px;
  color: var(--nora-burgundy);
}

.nora-shop-sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.nora-shop-sort span {
  color: rgba(24, 18, 16, 0.68);
  font-size: 0.9rem;
}

.nora-shop-filter-status {
  width: 100%;
  flex-basis: 100%;
  margin: -4px 0 0;
  color: rgba(24, 18, 16, 0.6);
  font-size: 0.86rem;
  font-weight: 650;
}

.woocommerce .nora-shop-results ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
}

.woocommerce .nora-shop-results ul.products li.product.nora-shop-card.is-filter-hidden,
.woocommerce .nora-shop-results ul.products li.product.nora-shop-card[hidden] {
  display: none !important;
}

.woocommerce .nora-shop-results ul.products li.product.nora-shop-card {
  width: auto !important;
  padding: 0;
  margin: 0 !important;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid rgba(61, 36, 34, 0.09);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(35, 23, 18, 0.08);
}

.nora-shop-card__media {
  position: relative;
  aspect-ratio: 1.03;
  overflow: hidden;
  background: rgba(246, 234, 220, 0.78);
}

.nora-shop-card__media a,
.nora-shop-card__image {
  display: block;
  width: 100%;
  height: 100%;
}

.nora-shop-card__image {
  object-fit: cover;
  transition: transform 260ms ease;
}

.nora-shop-card:hover .nora-shop-card__image {
  transform: scale(1.035);
}

.nora-shop-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 12px;
  color: var(--nora-cream-soft);
  background: color-mix(in srgb, var(--nora-card-accent) 78%, rgba(24, 18, 16, 0.2));
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nora-shop-card__heart {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--nora-plum);
  background: rgba(255, 250, 242, 0.74);
  border: 1px solid rgba(61, 36, 34, 0.13);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.nora-shop-card__heart .nora-icon {
  width: 18px;
  height: 18px;
}

.nora-shop-card__body {
  display: flex;
  min-height: 190px;
  padding: 16px 18px 18px;
  flex-direction: column;
}

.nora-shop-card__title {
  margin: 0;
  color: var(--nora-charcoal);
  font-size: clamp(1.18rem, 1.35vw, 1.45rem);
  line-height: 1.12;
}

.nora-shop-card__title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-decoration: none;
}

.nora-shop-card__summary {
  margin-top: 8px;
  color: var(--nora-plum);
  font-size: 0.92rem;
}

.nora-shop-card__price {
  margin-top: auto;
  padding-top: 16px;
  color: var(--nora-charcoal);
  font-weight: 800;
}

.nora-shop-card__button,
.nora-product-mini-card__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  margin-top: 12px;
  padding: 11px 18px;
  color: var(--nora-cream-soft);
  background: linear-gradient(135deg, var(--nora-burgundy), var(--nora-burgundy-deep));
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.nora-shop-gift-banner {
  position: relative;
  display: flex;
  min-height: 138px;
  align-items: center;
  margin-top: 24px;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.5) 45%, rgba(255, 250, 242, 0.16)),
    var(--nora-shop-gift-image) right center / cover no-repeat,
    rgba(246, 234, 220, 0.9);
  border: 1px solid rgba(61, 36, 34, 0.1);
  border-radius: 8px;
}

.nora-shop-empty {
  padding: 34px 24px;
  margin: 0;
  color: rgba(24, 18, 16, 0.68);
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(61, 36, 34, 0.1);
  border-radius: 8px;
  text-align: center;
}

.nora-shop-empty[hidden] {
  display: none !important;
}

.nora-shop-gift-banner h2 {
  max-width: 460px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.nora-shop-trust,
.nora-product-bottom-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  padding: 24px;
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(61, 36, 34, 0.1);
  border-radius: 8px;
}

.nora-shop-trust div,
.nora-product-bottom-trust div,
.nora-product-service div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 12px;
  align-items: center;
}

.nora-shop-trust .nora-icon,
.nora-product-bottom-trust .nora-icon,
.nora-product-service .nora-icon {
  grid-row: 1 / span 2;
  color: var(--nora-burgundy);
}

.nora-shop-trust strong,
.nora-product-bottom-trust strong,
.nora-product-service strong {
  font-size: 0.92rem;
}

.nora-shop-trust span,
.nora-product-bottom-trust span,
.nora-product-service span {
  color: rgba(24, 18, 16, 0.66);
  font-size: 0.84rem;
}

.nora-single-product {
  padding: 34px 0 clamp(64px, 8vw, 108px);
}

.nora-product-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 34px;
  color: rgba(24, 18, 16, 0.58);
  font-size: 0.82rem;
}

.nora-product-breadcrumb a {
  text-decoration: none;
}

.nora-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.nora-product-gallery {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
}

.nora-product-gallery__thumbs {
  display: grid;
  gap: 14px;
  align-content: start;
}

.nora-product-gallery__thumbs a {
  display: block;
  overflow: hidden;
  background: rgba(246, 234, 220, 0.78);
  border: 1px solid rgba(61, 36, 34, 0.12);
  border-radius: 8px;
}

.nora-product-gallery__thumbs a.is-active {
  border-color: var(--nora-burgundy);
  box-shadow: 0 0 0 2px rgba(143, 32, 41, 0.12);
}

.nora-product-gallery__thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.nora-product-gallery__main {
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 520px;
  background: rgba(246, 234, 220, 0.72);
  border-radius: 8px;
}

.nora-product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nora-product-summary {
  padding-top: 6px;
}

.nora-product-summary__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
  color: var(--nora-burgundy);
  background: rgba(143, 32, 41, 0.08);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nora-product-summary__badge .nora-icon {
  width: 16px;
  height: 16px;
}

.nora-product-summary h1 {
  max-width: 680px;
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
  line-height: 0.98;
}

.nora-product-summary__scent {
  margin-top: 18px;
  color: var(--nora-burgundy);
  font-size: 1.08rem;
  font-weight: 600;
}

.nora-product-summary__copy {
  max-width: 520px;
  margin-top: 22px;
  color: rgba(24, 18, 16, 0.76);
}

.nora-product-summary__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: rgba(24, 18, 16, 0.62);
  font-size: 0.86rem;
}

.nora-product-summary__rating .star-rating {
  color: var(--nora-gold);
}

.nora-product-summary__price {
  margin-top: 24px;
  color: var(--nora-charcoal);
  font-size: 1.55rem;
  font-weight: 850;
}

.nora-product-summary__tax {
  margin-top: 4px;
  color: rgba(24, 18, 16, 0.58);
  font-size: 0.84rem;
}

.nora-product-facts {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.nora-product-facts div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 2px 12px;
  align-items: center;
}

.nora-product-facts .nora-icon {
  grid-row: 1 / span 2;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--nora-burgundy);
  background: rgba(143, 32, 41, 0.08);
  border-radius: 999px;
}

.nora-product-facts strong {
  font-size: 0.92rem;
}

.nora-product-facts span {
  color: rgba(24, 18, 16, 0.7);
  font-size: 0.9rem;
}

.nora-product-purchase {
  margin-top: 28px;
}

.nora-product-purchase form.cart {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  margin: 0;
}

.nora-product-purchase .quantity {
  display: flex;
  align-items: center;
}

.nora-product-purchase .qty {
  width: 94px;
  min-height: 54px;
  color: var(--nora-charcoal);
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(61, 36, 34, 0.18);
  border-radius: 999px;
  text-align: center;
}

.woocommerce .nora-product-purchase button.button.single_add_to_cart_button {
  min-height: 54px;
  color: var(--nora-cream-soft);
  background: linear-gradient(135deg, var(--nora-burgundy), var(--nora-burgundy-deep));
  border-radius: 999px;
}

.nora-product-buy-now {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 52px;
  margin-top: 12px;
  color: var(--nora-burgundy);
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(143, 32, 41, 0.38);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.nora-product-service {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.nora-product-how,
.nora-product-info-card,
.nora-product-pair,
.nora-product-bottom-trust {
  margin-top: 42px;
}

.nora-product-how,
.nora-product-info-card,
.nora-product-pair {
  padding: clamp(26px, 4vw, 40px);
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(61, 36, 34, 0.1);
  border-radius: 8px;
}

.nora-product-section-heading {
  margin-bottom: 28px;
}

.nora-product-section-heading h2,
.nora-product-info-card h2,
.nora-product-mood-cta h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.nora-product-section-heading p,
.nora-product-info-card > p {
  margin-top: 8px;
  color: rgba(24, 18, 16, 0.68);
}

.nora-product-how__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.nora-product-how article span,
.nora-product-love-grid span,
.nora-product-notes span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--nora-burgundy);
  background: rgba(143, 32, 41, 0.08);
  border-radius: 999px;
}

.nora-product-how h3 {
  margin-bottom: 10px;
  font-family: var(--nora-body-font);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.3;
}

.nora-product-how p,
.nora-product-love-grid p {
  color: rgba(24, 18, 16, 0.72);
  font-size: 0.92rem;
}

.nora-product-detail-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.45fr) minmax(260px, 0.95fr);
  gap: 24px;
}

.nora-product-info-card {
  margin-top: 0;
}

.nora-product-love-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.nora-product-love-grid strong {
  display: block;
  margin-bottom: 6px;
}

.nora-product-notes {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.nora-product-notes div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0 12px;
  align-items: center;
}

.nora-product-notes span {
  grid-row: 1 / span 2;
  margin-bottom: 0;
}

.nora-product-notes strong {
  font-size: 0.9rem;
}

.nora-product-notes em {
  color: rgba(24, 18, 16, 0.68);
  font-style: normal;
}

.nora-product-mood-cta {
  display: flex;
  min-height: 300px;
  padding: 36px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--nora-charcoal);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.88), rgba(255, 250, 242, 0.48)),
    var(--nora-product-mood-image) center / cover no-repeat,
    rgba(246, 234, 220, 0.86);
  border-radius: 8px;
}

.nora-product-mood-cta p {
  max-width: 300px;
  margin-top: 14px;
  color: rgba(24, 18, 16, 0.7);
}

.nora-product-mood-cta .nora-button {
  width: max-content;
  min-height: 42px;
  margin-top: 22px;
  padding: 12px 18px;
}

.nora-product-pair {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 3fr);
  gap: 28px;
}

.nora-product-pair .nora-product-section-heading {
  margin: 0;
}

.nora-product-pair__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.nora-product-mini-card {
  position: relative;
}

.nora-product-mini-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.1;
  margin-bottom: 14px;
  background: rgba(246, 234, 220, 0.72);
  border-radius: 8px;
}

.nora-product-mini-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nora-product-mini-card h3 {
  margin-bottom: 8px;
  font-family: var(--nora-body-font);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.nora-product-mini-card h3 a {
  text-decoration: none;
}

.nora-product-mini-card__button {
  position: absolute;
  right: 0;
  bottom: 0;
  min-height: 32px;
  margin: 0;
  padding: 8px 14px;
  color: var(--nora-burgundy);
  background: rgba(255, 250, 242, 0.82);
  border: 1px solid rgba(143, 32, 41, 0.28);
  font-size: 0.82rem;
}

@media (max-width: 1180px) {
  .woocommerce .nora-shop-results ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nora-product-hero,
  .nora-product-detail-grid {
    grid-template-columns: 1fr;
  }

  .nora-product-summary {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  body.nora-commerce-view:not(.home) .nora-site-header__inner {
    min-height: 78px;
  }

  .nora-shop-hero__inner,
  .nora-shop-shell,
  .nora-single-product__inner {
    width: min(100% - 32px, var(--nora-content-width));
  }

  .nora-shop-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
    gap: 20px;
  }

  .nora-shop-hero__visual {
    min-height: 230px;
  }

  .nora-shop-hero__product-image {
    width: min(88%, 280px);
  }

  .nora-shop-tabs,
  .nora-shop-moods__grid,
  .nora-shop-trust,
  .nora-product-bottom-trust,
  .nora-product-how__grid,
  .nora-product-service,
  .nora-product-pair,
  .nora-product-pair__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nora-shop-toolbar {
    display: grid;
  }

  .nora-shop-sort {
    justify-content: flex-start;
  }

  .nora-product-gallery {
    grid-template-columns: 1fr;
  }

  .nora-product-gallery__thumbs {
    order: 2;
    grid-template-columns: repeat(5, minmax(62px, 1fr));
  }

  .nora-product-gallery__main {
    min-height: 0;
    aspect-ratio: 1;
  }

  .nora-product-pair {
    display: block;
  }

  .nora-product-pair__grid {
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  body.admin-bar.nora-commerce-view:not(.home) .nora-site-header {
    top: 0;
  }

  body.nora-commerce-view:not(.home) .nora-site-header {
    background: var(--nora-cream-soft);
  }

  body.nora-commerce-view:not(.home) .nora-site-header__inner {
    min-height: 116px;
    padding-top: 0;
    padding-bottom: 14px;
    align-content: start;
  }

  body.nora-commerce-view:not(.home) .nora-site-header__brand {
    width: 100px;
    margin-top: 8px;
  }

  .nora-shop-hero {
    min-height: 0;
    padding: 22px 16px 62px;
    background:
      radial-gradient(circle at 78% 14%, rgba(195, 150, 56, 0.08), transparent 28%),
      linear-gradient(155deg, #fffaf2 0%, #fff8f0 66%, #f1e3d8 100%);
  }

  .nora-shop-hero::before {
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.42));
  }

  .nora-shop-hero__inner {
    grid-template-columns: 1fr;
  }

  .nora-shop-hero__visual {
    display: none;
  }

  .nora-shop-hero h1 {
    font-size: clamp(2.95rem, 13.5vw, 4.1rem);
  }

  .nora-shop-hero__intro {
    max-width: 30rem;
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .nora-shop-shell {
    margin-top: -34px;
  }

  .nora-shop-discovery {
    padding: 10px;
  }

  .nora-shop-tabs {
    display: flex;
    gap: 0;
    margin: 0;
    overflow-x: auto;
    scroll-padding-inline: 10px;
    scroll-snap-type: x proximity;
  }

  .nora-shop-tabs::-webkit-scrollbar {
    display: none;
  }

  .nora-shop-tabs a,
  .nora-shop-tabs button {
    min-width: 132px;
    scroll-snap-align: start;
  }

  .nora-shop-moods {
    display: none;
  }

  .nora-shop-toolbar {
    display: flex;
    margin: 12px -16px 14px;
    padding: 0 16px 4px;
    overflow-x: auto;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    scroll-padding-inline: 16px;
    scroll-snap-type: x proximity;
  }

  .nora-shop-toolbar::-webkit-scrollbar {
    display: none;
  }

  .nora-shop-toolbar__filters {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .nora-shop-filter-button {
    display: none;
  }

  .nora-shop-toolbar label,
  .nora-shop-sort,
  .nora-shop-reset {
    flex: 0 0 auto;
    width: auto;
    scroll-snap-align: start;
  }

  .nora-shop-toolbar select,
  .nora-shop-reset {
    width: auto;
    min-width: 112px;
    min-height: 42px;
    padding-right: 34px;
    padding-left: 14px;
    font-size: 0.84rem;
  }

  .nora-shop-sort {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .nora-shop-sort span {
    font-size: 0.82rem;
  }

  .nora-shop-sort select {
    min-width: 128px;
  }

  .nora-shop-filter-status {
    display: none;
  }

  .woocommerce .nora-shop-results ul.products,
  .nora-shop-trust,
  .nora-product-bottom-trust,
  .nora-product-how__grid,
  .nora-product-service,
  .nora-product-pair__grid {
    grid-template-columns: 1fr;
  }

  .nora-shop-card__body {
    min-height: 170px;
  }

  .nora-single-product {
    padding-top: 22px;
  }

  .nora-product-breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
  }

  .nora-product-summary h1 {
    font-size: clamp(2.05rem, 9vw, 3rem);
  }

  .nora-product-purchase form.cart {
    grid-template-columns: 1fr;
  }

  .nora-product-purchase .qty {
    width: 100%;
  }

  .nora-product-love-grid,
  .nora-product-detail-grid {
    grid-template-columns: 1fr;
  }

  .nora-product-how,
  .nora-product-info-card,
  .nora-product-pair {
    padding: 22px;
  }
}
