.nora-kit-placeholder {
  display: none;
}

.nora-announcement-bar {
  background: var(--nora-announcement-bg, var(--nora-pink));
  color: var(--nora-announcement-color, #fff);
  font-size: var(--nora-announcement-font-size, 14px);
  padding: 10px 16px;
  position: relative;
}

.nora-announcement-bar__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.nora-announcement-bar__message {
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nora-announcement-bar__link {
  color: inherit;
  text-decoration: underline;
}

.nora-announcement-bar__dismiss {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
}

.nora-hero {
  position: relative;
  min-height: var(--nora-hero-min-height, 600px);
  height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a0a10;
}

.nora-hero__bg,
.nora-hero__overlay {
  position: absolute;
  inset: 0;
}

.nora-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.nora-hero__overlay {
  background: linear-gradient(to inline-start, rgba(255, 248, 249, 0.98) 0%, rgba(255, 248, 249, 0.75) 40%, transparent 80%);
  opacity: var(--nora-hero-overlay-opacity, 0.85);
}

.nora-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-inline: 32px;
}

.nora-hero__copy {
  max-width: var(--nora-hero-content-width, 480px);
}

.nora-hero__eyebrow {
  color: var(--nora-pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.nora-hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--nora-text);
  line-height: 1.1;
  margin: 0 0 20px;
}

.nora-hero__highlight {
  color: var(--nora-pink);
  display: block;
}

.nora-hero__subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin: 0 0 36px;
}

.nora-hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.nora-benefits-section {
  background: #fff;
  padding: 40px 20px;
  border-bottom: 1px solid var(--nora-border);
}

.nora-benefits-section__inner {
  display: grid;
  grid-template-columns: repeat(var(--nora-benefits-columns, 4), 1fr);
  gap: 20px;
}

.nora-benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.nora-benefit-item:hover {
  background: var(--nora-bg-light);
}

.nora-benefit-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--nora-pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--nora-benefit-icon-size, 22px);
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.nora-benefit-item__icon .nora-inline-icon,
.nora-benefit-item__icon .nora-benefit-icon-media {
  width: var(--nora-benefit-icon-size, 22px);
  height: var(--nora-benefit-icon-size, 22px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nora-benefit-item__icon .nora-inline-icon svg,
.nora-benefit-item__icon .nora-benefit-icon-media svg,
.nora-benefit-item__icon .nora-benefit-icon-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.nora-benefit-item__icon .nora-benefit-icon-media img {
  object-fit: contain;
}

.nora-benefit-item__icon .nora-inline-icon svg,
.nora-benefit-item__icon .nora-benefit-icon-media svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.nora-benefit-item:hover .nora-benefit-item__icon {
  background: var(--nora-pink);
}

.nora-benefit-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--nora-text);
  margin-bottom: 2px;
}

.nora-benefit-item__text {
  font-size: 12px;
  color: #888;
}

.nora-promo-section {
  padding: 60px 20px;
}

.nora-promo-card {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(200, 117, 138, 0.35);
}

.nora-promo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.nora-promo-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.nora-promo-card--top-right::after { top: -60px; inset-inline-end: -60px; }
.nora-promo-card--top-left::after { top: -60px; inset-inline-start: -60px; }
.nora-promo-card--bottom-right::after { bottom: -60px; inset-inline-end: -60px; }
.nora-promo-card--bottom-left::after { bottom: -60px; inset-inline-start: -60px; }

.nora-promo-card--pink { background: linear-gradient(135deg, #c8758a 0%, #d4849a 40%, #c9a96e 100%); }
.nora-promo-card--dark { background: linear-gradient(135deg, #1e1216 0%, #51303a 45%, #c8758a 100%); }
.nora-promo-card--gold { background: linear-gradient(135deg, #c9a96e 0%, #e0bf84 40%, #c8758a 100%); }

.nora-promo-card__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.nora-promo-card__eyebrow {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.nora-promo-card__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 20px;
}

.nora-promo-card__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0 0 40px;
}

.nora-promo-card__button {
  display: inline-block;
  background: #fff;
  color: var(--nora-pink);
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.nora-promo-card__image {
  position: absolute;
  inset-inline-end: 24px;
  inset-block-end: 24px;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 24px;
  z-index: 1;
  opacity: 0.8;
}

.nora-newsletter {
  padding: 80px 20px;
}

.nora-newsletter--pink { background: linear-gradient(180deg, #fff8f9 0%, #fde8ef 100%); }
.nora-newsletter--dark { background: linear-gradient(180deg, #2b1820 0%, #1e1216 100%); color: #fff; }
.nora-newsletter--gold { background: linear-gradient(180deg, #fff9ef 0%, #f5ead1 100%); }

.nora-newsletter__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 24px;
  align-items: center;
}

.nora-newsletter__title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0 0 14px;
  font-weight: 900;
}

.nora-newsletter__subtitle {
  margin: 0;
  line-height: 1.8;
}

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

.nora-newsletter__input {
  min-height: 52px;
  border: 1px solid var(--nora-border);
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
}

.nora-newsletter__button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--nora-newsletter-button-color, var(--nora-pink));
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nora-newsletter__honeypot {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nora-newsletter__message {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.4em;
}

.nora-newsletter__message.is-success { color: #0f7a36; }
.nora-newsletter__message.is-error { color: #b42318; }

.nora-trust-badges {
  padding: 56px 20px;
}

.nora-trust-badges__title {
  text-align: center;
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 800;
}

.nora-trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(var(--nora-badge-columns, 4), 1fr);
  gap: 18px;
  align-items: center;
}

.nora-trust-badges__item {
  background: #fff;
  border: 1px solid var(--nora-border);
  border-radius: 18px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.nora-trust-badges__item img {
  max-height: var(--nora-badge-height, 36px);
  width: auto;
  max-width: 100%;
  filter: grayscale(1);
  transition: filter 0.2s ease;
}

.nora-trust-badges__item:hover img {
  filter: grayscale(0);
}

.nora-flash-sale {
  padding: 64px 20px;
}

.nora-flash-sale--pink { background: linear-gradient(135deg, #fff0f4 0%, #fbe0e8 100%); }
.nora-flash-sale--dark { background: linear-gradient(135deg, #1e1216 0%, #39222c 100%); color: #fff; }
.nora-flash-sale--gold { background: linear-gradient(135deg, #fff7e8 0%, #f3e1bb 100%); }

.nora-flash-sale__inner {
  display: grid;
  gap: 20px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.nora-flash-sale__title {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.nora-flash-sale__subtitle {
  margin: 0;
  line-height: 1.8;
}

.nora-flash-sale__countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 100px));
  gap: 14px;
}

.nora-flash-sale__unit {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 16px 10px;
}

.nora-flash-sale__unit span {
  display: block;
  font-size: 32px;
  font-weight: 900;
}

.nora-flash-sale__unit small {
  display: block;
  margin-top: 6px;
}

.nora-flash-sale__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  background: #fff;
  color: var(--nora-text);
  font-weight: 700;
}

.nora-flash-sale__expired {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .nora-newsletter__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nora-benefits-section__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .nora-flash-sale__countdown {
    grid-template-columns: repeat(2, minmax(90px, 1fr));
  }
}

@media (max-width: 600px) {
  .nora-hero__content {
    padding-inline: 20px;
  }

  .nora-hero__subtitle {
    font-size: 15px;
  }

  .nora-promo-card {
    padding: 48px 24px;
  }

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

  .nora-trust-badges__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nora-taxonomy-section,
.nora-products-section {
  padding: 72px 16px;
}

.nora-category-tabs {
  background: #f8f0f2;
}

.nora-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.nora-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nora-cat-item__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #e8d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nora-cat-item:hover .nora-cat-item__image-wrap {
  transform: scale(1.05);
  border-color: var(--nora-pink);
  box-shadow: 0 8px 24px rgba(200, 117, 138, 0.3);
}

.nora-cat-item__image-wrap img,
.nora-subcat-card__image img,
.nora-brand-card__image,
.nora-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nora-cat-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent);
}

.nora-cat-item__count {
  position: absolute;
  inset-inline: 6px;
  bottom: 8px;
  text-align: center;
  color: #fff;
  background: rgba(200, 117, 138, 0.9);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 800;
}

.nora-cat-item__name {
  color: #374151;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.nora-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.nora-tab-button {
  padding: 10px 24px;
  border-radius: 999px;
  border: 2px solid #f0d9de;
  background: #fff;
  color: #666;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nora-tab-button.is-active,
.nora-tab-button:hover {
  background: var(--nora-pink);
  border-color: var(--nora-pink);
  color: #fff;
}

.nora-tab-panel {
  display: none;
}

.nora-tab-panel.is-active {
  display: block;
}

.nora-subcat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 32px;
}

.nora-subcat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #f0d9de;
  color: #444;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(200, 117, 138, 0.05);
}

.nora-subcat-pill:hover {
  border-color: var(--nora-pink);
  background: #fff0f4;
  color: var(--nora-pink);
}

.nora-subcat-pill__count {
  font-size: 11px;
  background: #f5e8eb;
  color: #999;
  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 700;
}

.nora-subcat-grid,
.nora-products-grid {
  display: grid;
  gap: 12px;
}

.nora-subcat-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.nora-subcat-card,
.nora-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff9fb;
  border-radius: 18px;
  border: 1.5px solid #f0d9de;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nora-subcat-card:hover,
.nora-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(200, 117, 138, 0.18);
  border-color: var(--nora-pink);
}

.nora-subcat-card__badge {
  position: absolute;
  top: 8px;
  inset-inline-end: 8px;
  z-index: 2;
  font-size: 10px;
  font-weight: 900;
  background: var(--nora-pink);
  color: #fff;
  border-radius: 20px;
  padding: 2px 9px;
}

.nora-subcat-card__image,
.nora-product-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5e0e5;
}

.nora-subcat-card__body,
.nora-product-card__body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nora-subcat-card__name,
.nora-product-card__name {
  font-size: 12px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.35;
}

.nora-subcat-card__button,
.nora-product-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  border-radius: 999px;
  background: var(--nora-pink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.nora-tab-panel__cta,
.nora-brand-view-all {
  text-align: center;
  margin-top: 24px;
}

.nora-tab-panel__cta a,
.nora-brand-view-all a {
  display: inline-block;
  padding: 10px 36px;
  border-radius: 999px;
  border: 2px solid var(--nora-pink);
  color: var(--nora-pink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nora-tab-panel__cta a:hover,
.nora-brand-view-all a:hover {
  background: var(--nora-pink);
  color: #fff;
}

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

.nora-brand-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 120px;
  text-decoration: none;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nora-brand-card:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.nora-brand-card__image,
.nora-brand-card__overlay,
.nora-brand-card__content {
  position: absolute;
  inset: 0;
}

.nora-brand-card__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.nora-brand-card__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 12px;
}

.nora-brand-card__name {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.nora-brand-card__count {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 2px 10px;
}

.nora-products-grid {
  grid-template-columns: repeat(var(--nora-products-columns, 4), minmax(0, 1fr));
}

.nora-product-card__price {
  color: var(--nora-pink);
  font-size: 13px;
  font-weight: 900;
}

.nora-empty-state {
  text-align: center;
  color: var(--nora-muted);
  font-size: 15px;
  margin: 24px 0 0;
}

.nora-site-footer-widget {
  background: var(--nora-footer-bg, #1e1216);
  color: var(--nora-footer-text, #aaa);
  padding: 72px 20px 32px;
}

.nora-site-footer-widget__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.nora-site-footer-widget__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.nora-site-footer-widget__brand-row img {
  width: var(--nora-footer-logo-size, 52px);
  height: var(--nora-footer-logo-size, 52px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nora-pink);
}

.nora-site-footer-widget__brand-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--nora-footer-heading, #fff);
}

.nora-site-footer-widget__description {
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 24px;
}

.nora-site-footer-widget__socials {
  display: flex;
  gap: 12px;
}

.nora-footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nora-footer-social-btn:hover {
  background: var(--nora-footer-hover, #c8758a);
}

.nora-footer-social-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nora-site-footer-widget__column h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--nora-footer-heading, #fff);
  margin: 0 0 20px;
}

.nora-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nora-footer-links li {
  margin-bottom: 10px;
}

.nora-footer-links a,
.nora-footer-contact-list a {
  color: var(--nora-footer-text, #aaa);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.nora-footer-links a:hover,
.nora-footer-contact-list a:hover {
  color: var(--nora-footer-hover, #c8758a);
}

.nora-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nora-footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.7;
}

.nora-footer-contact-list__label {
  color: var(--nora-footer-heading, #fff);
  font-weight: 700;
  white-space: nowrap;
}

.nora-site-footer-widget__bottom {
  border-top: 1px solid var(--nora-footer-separator, rgba(255, 255, 255, 0.08));
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.nora-site-footer-widget__bottom p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.nora-site-footer-widget__bottom a {
  color: #666;
  text-decoration: none;
}

.nora-site-footer-widget__bottom a:hover {
  color: var(--nora-footer-hover, #c8758a);
}

.nora-premium-section {
  padding: 80px 20px;
}

.nora-reviews-section {
  background: linear-gradient(180deg, #fff 0%, #fff8f9 100%);
}

.nora-reviews-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.nora-reviews-viewport {
  overflow: hidden;
}

.nora-reviews-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px;
  will-change: scroll-position;
  -webkit-overflow-scrolling: touch;
}

.nora-reviews-track::-webkit-scrollbar {
  display: none;
}

.nora-review-card {
  min-width: min(100%, 360px);
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(30, 18, 22, 0.08);
  scroll-snap-align: start;
}

.nora-review-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.nora-review-card__head img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.nora-review-card__meta h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #2d2d2d;
}

.nora-review-stars {
  display: flex;
  gap: 2px;
  color: #d8c6cb;
  font-size: 16px;
}

.nora-review-stars .is-filled {
  color: #f4b740;
}

.nora-review-card__text {
  margin: 0 0 14px;
  color: #555;
  line-height: 1.85;
}

.nora-review-card__product {
  margin: 0;
  color: var(--nora-pink);
  font-weight: 800;
  font-size: 13px;
}

.nora-reviews-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--nora-border);
  background: #fff;
  color: var(--nora-pink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.nora-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.nora-reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #e5d4d9;
  cursor: pointer;
}

.nora-reviews-dot.is-active {
  background: var(--nora-pink);
}

.nora-before-after {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30, 18, 22, 0.12);
}

.nora-before-after__base,
.nora-before-after__overlay {
  position: absolute;
  inset: 0;
}

.nora-before-after__base img,
.nora-before-after__overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nora-before-after__overlay {
  clip-path: inset(0 calc(100% - var(--nora-ba-position, 50%)) 0 0);
}

.nora-before-after__label {
  position: absolute;
  top: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(30, 18, 22, 0.7);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.nora-before-after__label.is-before {
  inset-inline-start: 20px;
}

.nora-before-after__label.is-after {
  inset-inline-end: 20px;
}

.nora-before-after__handle {
  position: absolute;
  inset-block: 0;
  inset-inline-start: calc(var(--nora-ba-position, 50%) - 22px);
  width: 44px;
  background: transparent;
  border: 0;
  cursor: ew-resize;
}

.nora-before-after__handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: var(--nora-ba-handle, var(--nora-pink));
}

.nora-before-after__handle span {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--nora-ba-handle, var(--nora-pink));
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(200, 117, 138, 0.35);
}

.nora-before-after__handle span::before,
.nora-before-after__handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-inline-end: 2px solid #fff;
}

.nora-before-after__handle span::before {
  inset-inline-start: 10px;
  transform: translateY(-50%) rotate(225deg);
}

.nora-before-after__handle span::after {
  inset-inline-end: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.nora-instagram-section {
  background: #f8f0f2;
}

.nora-instagram-header {
  text-align: center;
  margin-bottom: 42px;
}

.nora-instagram-title {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: #2d2d2d;
}

.nora-instagram-title a {
  color: var(--nora-pink);
  text-decoration: none;
}

.nora-instagram-subtitle {
  margin: 0;
  color: #888;
  font-size: 14px;
}

.nora-instagram-fallback {
  background: #fff;
  border: 1px dashed var(--nora-border);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}

.nora-instagram-fallback__hint {
  margin-top: 10px;
  color: var(--nora-muted);
}

.nora-instagram-cta {
  text-align: center;
  margin-top: 28px;
}

.nora-instagram-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.nora-instagram-feed {
  display: block;
}

.nora-whatsapp-cta {
  position: fixed;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--nora-whatsapp-color, #25d366);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
}

.nora-whatsapp-cta.is-bottom-right {
  inset-inline-end: 20px;
}

.nora-whatsapp-cta.is-bottom-left {
  inset-inline-start: 20px;
}

.nora-whatsapp-cta__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.nora-whatsapp-cta__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nora-whatsapp-cta__label {
  font-weight: 800;
}

.nora-whatsapp-cta.has-pulse::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: var(--nora-whatsapp-color, #25d366);
  opacity: 0.3;
  z-index: -1;
  animation: nora-whatsapp-pulse 1.8s infinite;
}

@keyframes nora-whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.3; }
  70% { transform: scale(1.16); opacity: 0; }
  100% { transform: scale(1.16); opacity: 0; }
}

.nora-taxonomy-section,
.nora-products-section,
.nora-promo-section,
.nora-newsletter-section,
.nora-flash-sale,
.nora-reviews-section,
.nora-before-after-section,
.nora-instagram-section,
.nora-benefits-section,
.nora-site-footer-widget {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.nora-tab-button,
.nora-category-card,
.nora-brand-card,
.nora-subcat-card,
.nora-subcat-pill,
.nora-product-card,
.nora-review-card,
.nora-whatsapp-cta,
.nora-site-footer-widget a,
.nora-site-footer-widget button {
  -webkit-tap-highlight-color: transparent;
}

.nora-category-card,
.nora-brand-card,
.nora-subcat-card,
.nora-subcat-pill,
.nora-product-card,
.nora-whatsapp-cta {
  cursor: pointer;
}

.nora-category-card:active,
.nora-brand-card:active,
.nora-subcat-card:active,
.nora-subcat-pill:active,
.nora-product-card:active,
.nora-whatsapp-cta:active {
  transform: translateY(-1px) scale(0.995);
}

.nora-whatsapp-cta:hover .nora-whatsapp-cta__label {
  text-decoration: none;
}

@media (max-width: 640px) {
  .nora-whatsapp-cta {
    min-height: 48px;
    padding: 0 14px;
    bottom: 16px;
    gap: 8px;
  }

  .nora-whatsapp-cta.is-bottom-right {
    inset-inline-end: 16px;
  }

  .nora-whatsapp-cta.is-bottom-left {
    inset-inline-start: 16px;
  }

  .nora-whatsapp-cta__icon {
    width: 20px;
    height: 20px;
  }

  .nora-whatsapp-cta__icon svg {
    width: 20px;
    height: 20px;
  }

  .nora-whatsapp-cta__label {
    font-size: 13px;
    font-weight: 700;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nora-announcement-bar *,
  .nora-hero *,
  .nora-benefits-section *,
  .nora-promo-section *,
  .nora-taxonomy-section *,
  .nora-products-section *,
  .nora-site-footer-widget *,
  .nora-reviews-section *,
  .nora-before-after-section *,
  .nora-instagram-section *,
  .nora-whatsapp-cta {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 580px) {
  .nora-cats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .nora-cats-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

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

@media (min-width: 601px) and (max-width: 1024px) {
  .nora-brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nora-site-footer-widget__grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .nora-site-footer-widget__brand {
    grid-column: 1 / -1;
  }

  .nora-before-after {
    max-width: 900px;
    aspect-ratio: 4 / 3;
  }

  .nora-hero__content {
    padding-inline: 24px;
  }
}

@media (max-width: 900px) {
  .nora-subcat-grid,
  .nora-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .nora-flash-sale__unit span {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .nora-tabs-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .nora-subcat-grid,
  .nora-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .nora-hero__title {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }

  .nora-flash-sale__unit {
    padding: 12px 8px;
  }

  .nora-flash-sale__unit span {
    font-size: 22px;
  }

  .nora-site-footer-widget__socials {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nora-site-footer-widget__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .nora-site-footer-widget__bottom {
    flex-direction: column;
    text-align: center;
  }

  .nora-reviews-shell {
    grid-template-columns: 1fr;
  }

  .nora-reviews-nav {
    display: none;
  }

  .nora-review-card {
    min-width: min(100%, 300px);
  }
}

@media (max-width: 600px) {
  .nora-before-after__label {
    top: 12px;
    font-size: 12px;
  }

  .nora-whatsapp-cta.hide-desktop {
    display: inline-flex;
  }

  .nora-whatsapp-cta.hide-mobile {
    display: none;
  }

  .nora-whatsapp-cta:not(.hide-mobile) {
    bottom: 16px;
  }
}

@media (min-width: 601px) {
  .nora-whatsapp-cta.hide-desktop {
    display: none;
  }

  .nora-whatsapp-cta.hide-mobile {
    display: inline-flex;
  }
}
