/** Shopify CDN: Minification failed

Line 351:13 Expected identifier but found whitespace
Line 351:25 Unexpected "0.14s"

**/
/* ═══════════════════════════════════════════════════════
   Shezair Homepage CSS — v3.3.0 — 2026-06-13T14:25:00+08
   Judge.me overrides / PDP lower / Reviews card
   ═══════════════════════════════════════════════════════ */
body:has(.shezair-home-shell) .shopify-section-group-header-group,
body:has(.shezair-home-shell) .shopify-section-group-footer-group,
body:has(.shezair-home-shell) .header-wrapper,
body:has(.shezair-home-shell) footer.footer {
  display: none !important;
}

/* ─────────────────────────────────────────────
   NEWSLETTER POPUP (styles now inline in snippets/shezair-popup.liquid)
   ───────────────────────────────────────────── */
body.shz-popup--open { overflow: hidden; }

.shezair-home-shell,
.shezair-home-shell * {
  box-sizing: border-box;
}

.shezair-home-shell {
  --shz-bg: #ffffff;
  --shz-card: #ffffff;
  --shz-pink: #0A0A0A;
  --shz-pink-dark: #d83b68;
  --shz-blush: #ffffff;
  --shz-cream: #ffffff;
  --shz-brown: #49312f;
  --shz-muted: #8a6f6d;
  --shz-border: rgba(238, 79, 125, 0.16);
  --shz-shadow: 0 10px 28px rgba(128, 62, 74, 0.08);
  width: 100%;
  overflow-x: hidden;
  background: var(--shz-bg);
  color: var(--shz-brown);
  font-family: var(--font-body-family, Inter, Arial, sans-serif);
}

.shz-header-shell,
.shz-global-header-shell {
  position: relative;
  z-index: 99999;
  overflow: visible !important;
}

.shezair-home-shell a {
  color: inherit;
  text-decoration: none;
}

.shz-page-width {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.shz-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.shz-title {
  margin: 0;
  font-family: Cormorant Garamond, Georgia, serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--shz-brown);
}

.shz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 2px;
  border: 0;
  background: #0A0A0A;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.shz-button:hover {
  transform: translateY(-1px);
  background: #0A0A0A;
}

.shz-announcement {
  background: linear-gradient(90deg, #0A0A0A, #333333, #0A0A0A);
  color: #fff;
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.shz-header {
  background: rgba(255, 250, 247, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(238, 79, 125, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}

.shz-header__inner {
  height: 62px;
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: center;
  gap: 20px;
  overflow: visible;
}

.shz-logo {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: 29px;
  letter-spacing: -0.05em;
  color: #2f2524;
  font-weight: 600;
}

.shz-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: visible;
}

.shz-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2A1A1A;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.18s ease;
  cursor: pointer;
  border-radius: 3px;
}
.shz-nav__link:hover,
.shz-nav__link[aria-current="page"] {
  color: #0A0A0A;
}
.shz-nav__link::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 3px;
  height: 1.4px;
  background: #0A0A0A;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.shz-nav__link:hover::after,
.shz-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.shz-chevron {
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.shz-nav__dropdown-parent {
  position: relative;
}
.shz-nav__dropdown-parent:hover .shz-nav__link--dropdown,
.shz-nav__link--dropdown:focus {
  color: #0A0A0A;
}
.shz-nav__dropdown-parent:hover .shz-chevron,
.shz-nav__link--dropdown:focus + .shz-chevron,
.shz-nav__link--dropdown:focus .shz-chevron {
  transform: rotate(180deg);
}
.shz-nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 190px;
  background: #FFF7F5;
  border: 1px solid #E8E0E0;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(120, 40, 60, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 9999;
}
.shz-nav__dropdown-parent:hover .shz-nav__dropdown,
.shz-nav__link--dropdown:focus + .shz-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.shz-nav__child-link {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #332827;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.14s ease, color 0.14s ease;
}
.shz-nav__child-link:hover,
.shz-nav__child-link:focus {
  background: #FFF0F4;
  color: #0A0A0A;
}

/* =============================================
   DROPDOWN MENU — hover-based with bridge gap
   ============================================= */
.shz-nav__dropdown-parent {
  position: relative;
  display: flex;
}
.shz-nav__link--dropdown {
  background: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}
/* CSS fallback hover — main interaction is JS-based */
.shz-nav__dropdown-parent:hover .shz-nav__dropdown,
.shz-nav__link--dropdown:focus + .shz-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.shz-nav__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.shz-nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  display: grid;
  background: #FFF9F7;
  border: 1px solid #E8E0E0;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(120, 40, 60, 0.14);
  padding: 10px;
  z-index: 100000 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
/* hover bridge — transparent pad so cursor doesn't disconnect */
.shz-nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9px;
  height: 9px;
  background: transparent;
}

.shz-nav__dropdown--style {
  width: 380px;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.shz-nav__dropdown--shape {
  width: 290px;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.shz-nav__child-link {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #2A1A1A;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.14s ease, color 0.14s ease;
}
.shz-nav__child-link:hover,
.shz-nav__child-link:focus {
  background: #FFF0F4;
  color: #0A0A0A;
}

.shz-nav__dropdown-footer {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid #E8E0E0;
}
.shz-nav__view-all {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0A0A0A;
  text-decoration: none;
  text-align: center;
  transition: background 0.14s ease;
}
.shz-nav__view-all:hover,
.shz-nav__view-all:focus {
  background: #FFF0F4;
}

/* hide desktop dropdowns on mobile */
  transition: background 0.14s ease, color 0.14s ease;
}
.shz-nav__child-link:hover,
.shz-nav__child-link:focus {
  background: #FFF0F4;
  color: #0A0A0A;
}

/* hide desktop dropdowns on mobile */
@media (max-width: 767px) {
  .shz-nav__dropdown { display: none !important; }
  .shz-nav__dropdown.is-open { display: none !important; }
}

.shz-header__icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.shz-icon-link {
  position: relative;
  display: inline-flex;
  color: #312525;
  transition: color 0.18s ease;
}
.shz-icon-link:hover {
  color: #0A0A0A;
}

.shz-cart-count {
  position: absolute;
  top: -8px;
  right: -9px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0A0A;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.shz-mobile-menu {
  display: none;
  border: 0;
  background: transparent;
  color: var(--shz-brown);
  cursor: pointer;
  pointer-events: auto;
}

.shz-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.shz-drawer--open {
  pointer-events: auto;
  visibility: visible;
}
.shz-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 8, 12, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.shz-drawer--open .shz-drawer__backdrop {
  opacity: 1;
}
.shz-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: #FFF9F7;
  box-shadow: 4px 0 30px rgba(120, 40, 60, 0.14);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.shz-drawer--open .shz-drawer__panel {
  transform: translateX(0);
}
.shz-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E8E0E0;
}
.shz-drawer__close {
  border: 0;
  background: transparent;
  color: var(--shz-brown);
  cursor: pointer;
  padding: 4px;
}
.shz-drawer__nav {
  padding: 8px 0;
  flex: 1;
}
.shz-drawer__link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #2A1A1A;
  text-decoration: none;
  transition: color 0.14s ease, background 0.14s ease;
  cursor: pointer;
}
.shz-drawer__link:hover {
  color: #0A0A0A;
  background: #FFF0F4;
}
.shz-drawer__accordion {
  border: 0;
  background: transparent;
}
.shz-drawer__accordion summary {
  list-style: none;
}
.shz-drawer__accordion summary::-webkit-details-marker {
  display: none;
}
.shz-drawer__link--expandable::after {
  content: "+";
  margin-left: auto;
  font-size: 20px;
  font-weight: 400;
  color: #777777;
  transition: transform 0.2s ease;
}
.shz-drawer__accordion[open] .shz-drawer__link--expandable::after {
  content: "−";
}
.shz-drawer__sublist {
  background: #FCE8EF;
  border-top: 1px solid #E8E0E0;
  border-bottom: 1px solid #E8E0E0;
}
.shz-drawer__sublink {
  display: block;
  min-height: 44px;
  padding: 0 20px 0 34px;
  font-size: 13px;
  font-weight: 500;
  color: #49312f;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.14s ease, background 0.14s ease;
}
.shz-drawer__sublink:hover {
  color: #0A0A0A;
  background: #FFE8E5;
}
.shz-drawer__footer {
  padding: 14px 20px;
  border-top: 1px solid #E8E0E0;
}

.shz-hero {
  position: relative;
  z-index: 1;
  min-height: clamp(430px, 43vw, 640px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.shz-hero__image,
.shz-hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.shz-hero__image {
  object-fit: cover;
}

.shz-hero__fallback {
  background: radial-gradient(circle at 72% 30%, #ffd5df 0, transparent 36%), linear-gradient(110deg, #c93761, #f5a1af 56%, #ffd9df);
}

.shz-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(91, 34, 42, 0.7) 0%, rgba(181, 67, 82, 0.34) 36%, rgba(255, 255, 255, 0.04) 72%);
  z-index: 1;
}

.shz-hero__content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 72px 0 86px;
}

.shz-hero__panel {
  width: min(520px, 92%);
  padding: 30px 34px 34px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(124, 45, 54, 0.38), rgba(124, 45, 54, 0.05));
  color: #fff;
}

.shz-hero__title {
  margin: 10px 0 16px;
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.shz-hero__title em {
  font-style: italic;
  font-weight: 300;
}

.shz-hero__text {
  margin: 0 0 26px;
  max-width: 310px;
  font-size: 17px;
  line-height: 1.35;
}

.shz-hero__selling-points {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 90%);
  margin: 0 auto;
  background: rgba(154, 54, 69, 0.62);
  color: #fff;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.shz-hero__point {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 16px 22px;
  border-right: 1px solid rgba(255,255,255,0.22);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shz-hero__point-label--short {
  display: none;
}

.shz-hero__point:last-child {
  border-right: 0;
}

.shz-hero__point svg,
.shz-icon-strip svg {
  flex: 0 0 auto;
}

.shz-section {
  padding: 34px 0;
}

.shz-section--tight {
  padding: 24px 0;
}

.shz-centered-title {
  margin: 0 0 24px;
  text-align: center;
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
}

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

.shz-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shz-shadow);
  border: 1px solid rgba(238, 79, 125, 0.08);
}

.shz-product-card__media {
  position: relative;
  aspect-ratio: 1 / 1.06;
  background: #ffffff;
  overflow: hidden;
}

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

.shz-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border-radius: 4px;
  background: #0A0A0A;
  color: #fff;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.shz-product-card__body {
  padding: 12px 48px 16px 14px;
  min-height: 94px;
}

.shz-product-card__title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 700;
  color: #352827;
}

.shz-product-card__price {
  font-size: 13px;
  color: #49312f;
  margin-bottom: 7px;
}

.shz-stars {
  color: #0A0A0A;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.shz-review-count {
  color: var(--shz-muted);
  letter-spacing: 0;
  margin-left: 5px;
}

.shz-add-button {
  position: absolute;
  right: 14px;
  bottom: 16px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 0;
  background: #0A0A0A;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* ========== Shop by Shape v2 — compact 6-col inline cards ========== */

.shz-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shz-promo-card {
  position: relative;
  min-height: 250px;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #e94672, #ffc6cf);
}

.shz-promo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255,240,243,0.22) 0%, transparent 45%);
  border-radius: inherit;
  pointer-events: none;
}

.shz-promo-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shz-promo-card__content {
  position: relative;
  z-index: 1;
  padding: 24px;
  max-width: 270px;
}

.shz-promo-card__title {
  margin: 7px 0 12px;
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 0.92;
}

.shz-promo-card p {
  margin: 0 0 17px;
  font-size: 14px;
  line-height: 1.35;
}

.shz-link {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shz-icon-strip {
  background: #ffe6ec;
  border-top: 1px solid var(--shz-border);
  border-bottom: 1px solid var(--shz-border);
}

.shz-icon-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 22px 0;
}

.shz-icon-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.shz-icon-item h3 {
  margin: 0 0 3px;
  font-size: 13px;
  color: #0A0A0A;
}

.shz-icon-item p {
  margin: 0;
  color: #7b6461;
  font-size: 11px;
  line-height: 1.35;
}

.shz-testimonials {
  position: relative;
}

.shz-testimonial-wrap {
  position: relative;
}

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

.shz-testimonial-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(238, 79, 125, 0.08);
  padding: 24px;
  box-shadow: var(--shz-shadow);
}

.shz-testimonial-card blockquote {
  margin: 11px 0 20px;
  color: #49312f;
  font-size: 14px;
  line-height: 1.55;
}

.shz-buyer {
  display: flex;
  align-items: center;
  gap: 11px;
}

.shz-buyer img,
.shz-buyer__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffe2e9;
}

.shz-buyer strong {
  display: block;
  font-size: 13px;
}

.shz-buyer span {
  color: var(--shz-muted);
  font-size: 12px;
}

.shz-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--shz-border);
  background: #fff;
  color: var(--shz-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shz-slider-arrow--prev { left: -18px; }
.shz-slider-arrow--next { right: -18px; }

/* =============================================
   CURATED NAIL PICKS — left hero + right product picks
   ============================================= */
.shz-curated-section {
  background: #FFF9F7;
  padding: 72px clamp(36px, 5vw, 96px);
}

.shz-curated-inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}

/* ── heading ── */
.shz-curated-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.shz-curated-heading-left {
  max-width: 620px;
}

.shz-curated-title {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(42px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 400;
  color: #24181B;
  margin: 0 0 12px;
}

.shz-curated-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #6E5C62;
  margin: 0;
}

.shz-curated-view-all {
  flex-shrink: 0;
  color: #0A0A0A;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.shz-curated-view-all:hover { opacity: 0.75; }

.shz-curated-heading-right {
  text-align: right;
}

.shz-curated-heading-right-title {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #24181B;
  margin-bottom: 8px;
}

/* ── layout ── */
.shz-curated-layout {
  --curated-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 1.6vw, 32px);
  align-items: start;
}

/* ── left: hero card ── */
.shz-curated-hero {
  position: relative;
  width: 100%;
  max-width: none;
  height: auto !important;
  aspect-ratio: 1 / 1;
  min-height: 0 !important;
  max-height: none !important;
  align-self: stretch !important;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
}
.shz-curated-hero::after {
  display: none;
}
.shz-curated-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.shz-curated-hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #FCE4EC, #F8BBD0, #F48FB1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.shz-curated-hero-content {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 2;
  color: #FFFFFF;
  max-width: 430px;
}

.shz-curated-hero-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
  opacity: 0.88;
}

.shz-curated-hero-title {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: 48px;
  line-height: 1.06;
  font-weight: 400;
  margin: 0 0 24px;
}

.shz-curated-hero-kicker,
.shz-curated-hero-title {
  display: none !important;
}

.shz-curated-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  background: #FFFFFF;
  color: #0A0A0A;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s, color 0.22s;
}
.shz-curated-hero:hover .shz-curated-hero-btn {
  background: #0A0A0A;
  color: #FFFFFF;
}

/* ── right: product picks ── */
.shz-curated-right {
  display: flex;
  flex-direction: column;
  height: auto !important;
  min-height: 0;
}

.shz-curated-right-heading {
  display: none;
}

.shz-curated-shop-title {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  color: #24181B;
  margin: 0 0 6px;
  line-height: 1.2;
}

.shz-curated-shop-sub {
  font-size: 14px;
  line-height: 1.55;
  color: #6E5C62;
  margin: 0 0 14px;
}

.shz-curated-products {
  flex: 0 0 auto;
  min-height: 0;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: clamp(16px, 1.4vw, 22px);
}

/* ── product card ── */
.shz-curated-card {
  aspect-ratio: auto;
  min-height: 0;
  display: block;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.shz-curated-card-link {
  display: block;
  min-height: 0;
  text-decoration: none;
  color: inherit;
}

.shz-curated-card-img {
  aspect-ratio: 1 / 1;
  flex: none;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  position: relative;
}

.shz-curated-card-img-primary,
.shz-curated-card-img-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.shz-curated-card-img-primary {
  transition: opacity 0.35s ease, transform 0.45s ease;
}
.shz-curated-card-img-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Hover: show second image if available */
.shz-curated-card-link:hover .shz-curated-card-img-secondary {
  opacity: 1;
}
.shz-curated-card-link:hover .shz-curated-card-img-primary {
  opacity: 0;
}
/* No second image: slight zoom on primary */
.shz-curated-card:not(:has(.shz-curated-card-img-secondary)) .shz-curated-card-link:hover .shz-curated-card-img-primary {
  opacity: 1;
  transform: scale(1.04);
}

/* ── badge ── */
.shz-curated-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: #0A0A0A;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
}

/* ── product info ── */
.shz-curated-card-info {
  text-align: center;
  padding-top: 12px;
}

.shz-curated-card-title {
  font-size: 12px;
  line-height: 1.22;
  color: #24181B;
  font-weight: 500;
  margin: 0;
  min-height: 29px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shz-curated-card-rating {
  display: none !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.shz-curated-stars {
  display: flex;
  gap: 2px;
}

.shz-curated-rating-count {
  font-size: 12px;
  color: #6E5C62;
}

.shz-curated-card-price {
  font-size: 12px;
  font-weight: 600;
  color: #24181B;
  margin: 6px 0 0;
}

/* ── empty placeholder ── */
.shz-curated-card-empty {
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B07080;
  font-size: 12px;
  text-align: center;
  border: 2px dashed #E8E0E0;
  border-radius: 16px;
}

/* =============================================
   FOOTER v2 — Newsletter + 5-col + Bottom Bar
   Primary styles are inline in shezair-footer.liquid
   These are fallback/supplemental rules only
   ============================================= */
.shz-ft-nl { display: flex; align-items: center; }
.shz-ft-main { display: grid; }
.shz-ft-col a { text-decoration: none; transition: color 0.14s; }
.shz-ft-col a:hover { color: #0A0A0A; }
.shz-ft-bottom { display: flex; }
.shz-ft-bottom { display: grid; }
.shz-ft-pay-wrap { display: flex; align-items: center; }
.shz-ft-pay-icons { display: flex; flex-wrap: wrap; align-items: center; }
.shz-ft-pay-badge { display: inline-flex; align-items: center; justify-content: center; }

@media (max-width: 989px) {
  .shz-page-width { width: min(100% - 28px, 1280px); }
  .shz-header__inner { grid-template-columns: auto 1fr auto; height: 58px; }
  .shz-mobile-menu { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; z-index: 101; }
  .shz-nav { display: none; }
  .shz-nav__link { padding: 8px 6px; font-size: 11px; }
  .shz-logo { font-size: 25px; }
  .shz-header__icons { gap: 14px; }
  .shz-hero__title { word-break: normal !important; overflow-wrap: normal !important; hyphens: none !important; }
  .shz-hero__text { word-break: normal !important; overflow-wrap: normal !important; }
  .shz-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  
  
  .shz-promo-grid { grid-template-columns: 1fr; }
  .shz-icon-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .shz-testimonial-grid { grid-template-columns: 1fr; }
  .shz-slider-arrow { display: none; }
}

/* ── curated picks mobile (≤989px) ── */
@media (max-width: 989px) {
  .shz-curated-section { padding: 48px 24px; }
  .shz-curated-heading { display: block; margin-bottom: 24px; }
  .shz-curated-title { font-size: 38px; }
  .shz-curated-heading-right { display: none; }
  .shz-curated-layout { --curated-height: auto; grid-template-columns: 1fr; gap: 28px; }
  .shz-curated-hero { width: 100%; max-width: 100%; height: auto !important; aspect-ratio: 1 / 1; min-height: 0 !important; max-height: none !important; border-radius: 22px; }
  .shz-curated-hero-content { left: 28px; bottom: 28px; }
  .shz-curated-hero-title { font-size: 36px; }
  .shz-curated-right { height: auto !important; }
  .shz-curated-right-heading { display: block; }
  .shz-curated-card-img { flex: none; aspect-ratio: 1 / 1; }
  .shz-curated-card { display: block; }
  .shz-curated-card-link { display: block; }
}

@media (max-width: 767px) {
  .shz-hero__selling-points {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    border-radius: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    /* Mobile: light gradient, no blur */
    background: linear-gradient(90deg, rgba(72,24,34,0.34), rgba(160,62,80,0.24), rgba(72,24,34,0.30)) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }
  .shz-hero__point {
    min-height: 48px !important;
    padding: 10px 18px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.16) !important;
    font-size: 10px !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
  }
  .shz-hero__point:last-child { border-bottom: 0 !important; }
  /* Hide short labels on mobile — only show long text */
  .shz-hero__point-label--short { display: none !important; }
}
/* ── curated picks phone (≤767px) ── */
@media (max-width: 767px) {
  .shz-curated-section { padding: 48px 18px; }
  .shz-curated-heading { display: block; margin-bottom: 24px; }
  .shz-curated-heading-left { max-width: none; }
  .shz-curated-heading-right { display: none; }
  .shz-curated-title { font-size: 34px; }
  .shz-curated-view-all { display: inline-block; margin-top: 10px; }
  .shz-curated-layout { display: block; --curated-height: auto; }
  .shz-curated-hero { width: 100%; max-width: 100%; height: auto !important; aspect-ratio: 1 / 1; min-height: 0 !important; max-height: none !important; border-radius: 22px; margin-bottom: 28px; }
  .shz-curated-hero-content { left: 24px; bottom: 28px; max-width: 80%; }
  .shz-curated-hero-title { font-size: 34px; }
  .shz-curated-right { height: auto !important; }
  .shz-curated-right-heading { display: block; }
  .shz-curated-shop-title { font-size: 24px; }
  .shz-curated-products {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    grid-template-rows: none;
  }
  .shz-curated-products::-webkit-scrollbar { display: none; }
  .shz-curated-card {
    flex: 0 0 70vw;
    scroll-snap-align: start;
    display: block;
  }
  .shz-curated-card-link { display: block; }
  .shz-curated-card-img { flex: none; aspect-ratio: 1 / 1; }
}
@media (max-width: 640px) {
  .shz-announcement { font-size: 10px; min-height: 24px; }
  .shz-header__icons .shz-icon-link:nth-child(2) { display: none; }
  .shz-hero { min-height: 560px; }
  .shz-hero__content { width: min(100% - 28px, 1280px); align-items: flex-start; padding-top: 62px; }
  .shz-hero__panel { width: 100%; padding: 24px 22px; }
  .shz-hero__title { font-size: 48px; line-height: 0.95; word-break: normal !important; overflow-wrap: normal !important; hyphens: none !important; }
  .shz-hero__text { word-break: normal !important; overflow-wrap: normal !important; }
  .shz-hero__panel .shz-button { min-width: 160px; height: 48px; white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; }
  .shz-section { padding: 28px 0; }
  .shz-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .shz-product-card__body { padding: 10px 40px 14px 11px; }
  .shz-product-card__title { font-size: 12px; }
  .shz-add-button { width: 29px; height: 29px; right: 10px; bottom: 14px; }
  .shz-promo-card { min-height: 220px; }
  .shz-icon-strip__grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .shz-product-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   PDP Customer Reviews — background only
   ═══════════════════════════════════════ */
/* --- Shezair product page unified background fix --- */
body:has(.shz-pdp-shell),
body:has(.shz-pdp-shell) main,
body:has(.shz-pdp-shell) #MainContent,
body:has(.shz-pdp-shell) .content-for-layout,
body.template-product,
body.template-product main,
body.template-product #MainContent,
body.template-product .content-for-layout {
  background: #FFF9F7 !important;
  background-color: #FFF9F7 !important;
  background-image: none !important;
}
body:has(.shz-pdp-shell) #MainContent .shopify-section,
body:has(.shz-pdp-shell) #MainContent .section,
body:has(.shz-pdp-shell) #MainContent .gradient,
body:has(.shz-pdp-shell) #MainContent .color-scheme-1,
body:has(.shz-pdp-shell) #MainContent .color-scheme-2,
body:has(.shz-pdp-shell) #MainContent [class*="color-scheme"],
body:has(.shz-pdp-shell) .shopify-section:has(.jdgm-widget),
body:has(.shz-pdp-shell) .shopify-section:has(.jdgm-rev-widg),
body.template-product #MainContent .shopify-section,
body.template-product #MainContent .section,
body.template-product #MainContent .gradient,
body.template-product #MainContent .color-scheme-1,
body.template-product #MainContent .color-scheme-2,
body.template-product #MainContent [class*="color-scheme"],
body.template-product .shopify-section:has(.shz-rvw-wrap),
body.template-product .shopify-section:has(.jdgm-widget),
body.template-product .shopify-section:has(.jdgm-rev-widg) {
  background: #FFF9F7 !important;
  background-color: #FFF9F7 !important;
  background-image: none !important;
}
body:has(.shz-pdp-shell) #MainContent .shopify-section:empty,
body.template-product #MainContent .shopify-section:empty {
  display: none !important;
}
body:has(.shz-pdp-shell) .shopify-section:has(.jdgm-widget),
body:has(.shz-pdp-shell) .shopify-section:has(.jdgm-rev-widg) {
  margin-top: 0 !important;
  padding-top: 24px !important;
  padding-bottom: 80px !important;
}
body:has(.shz-pdp-shell) .shz-rvw-wrap,
body.template-product .shz-rvw-wrap {
  background: #FFF9F7 !important;
  padding: 48px 0 80px !important;
}
body:has(.shz-pdp-shell) .jdgm-widget,
body:has(.shz-pdp-shell) .jdgm-rev-widg,
body:has(.shz-pdp-shell) .jdgm-rev-widg__body,
body:has(.shz-pdp-shell) .jdgm-rev-widg__reviews,
body.template-product .shz-rvw-wrap .jdgm-widget,
body.template-product .shz-rvw-wrap .jdgm-rev-widg,
body.template-product .shz-rvw-wrap .jdgm-rev-widg__body,
body.template-product .shz-rvw-wrap .jdgm-rev-widg__reviews {
  background: transparent !important;
  background-color: transparent !important;
}
body:has(.shz-pdp-shell) .jdgm-rev,
body.template-product .shz-rvw-wrap .jdgm-rev {
  background: #FFFFFF !important;
}
@media (max-width: 767px) {
  body:has(.shz-pdp-shell) .shz-rvw-wrap,
  body.template-product .shz-rvw-wrap { padding: 36px 0 56px !important; }
}
