/** Shopify CDN: Minification failed

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

**/
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
   ============================================= */
body.shz-popup--open { overflow: hidden; }

.shz-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.shz-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.shz-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 26, 26, 0.38);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.shz-popup__modal {
  position: relative;
  width: min(660px, calc(100vw - 36px));
  max-height: 92vh;
  display: flex;
  background: #FFF9F7;
  border: 1px solid #F6DDE2;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(120, 40, 60, 0.22);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.shz-popup.is-visible .shz-popup__modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- left image panel --- */
.shz-popup__image {
  flex: 0 0 44%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FCE4EC 0%, #F8BBD0 50%, #F48FB1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.shz-popup__deco {
  position: absolute;
  inset: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shz-popup__sparkle {
  position: absolute;
  font-size: 22px;
  color: rgba(255,255,255,0.55);
}
.shz-popup__sparkle--1 { top: 18%; left: 18%; animation: shz-flicker 3s ease-in-out infinite; }
.shz-popup__sparkle--2 { bottom: 22%; right: 20%; animation: shz-flicker 2.5s ease-in-out 0.5s infinite; }
@keyframes shz-flicker {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.15); }
}
.shz-popup__nail {
  position: absolute;
  width: 42px;
  height: 72px;
  border-radius: 22px 22px 14px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.35));
  box-shadow: 0 4px 14px rgba(160,50,70,0.14);
}
.shz-popup__nail--1 { top: 22%; left: 20%; transform: rotate(-8deg); }
.shz-popup__nail--2 { top: 38%; left: 44%; transform: rotate(3deg); }
.shz-popup__nail--3 { top: 24%; left: 62%; transform: rotate(-4deg); }

/* --- right content --- */
.shz-popup__content {
  flex: 0 0 56%;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shz-popup__kicker {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #F04475;
  margin: 0 0 10px;
}
.shz-popup__title {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #2A1A1A;
  margin: 0 0 10px;
}
.shz-popup__sub {
  font-size: 14px;
  color: #6E5B61;
  line-height: 1.5;
  margin: 0 0 22px;
}

.shz-popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.shz-popup__input {
  height: 48px;
  padding: 0 16px;
  border: 1px solid #F6DDE2;
  border-radius: 8px;
  background: #FFFFFF;
  font-size: 14px;
  color: #2A1A1A;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  font-family: inherit;
}
.shz-popup__input::placeholder { color: #B8A0A5; }
.shz-popup__input:focus {
  border-color: #F04475;
  box-shadow: 0 0 0 3px rgba(240, 68, 117, 0.12);
}
.shz-popup__btn {
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: #F04475;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease;
  font-family: inherit;
}
.shz-popup__btn:hover { background: #D92F62; }
.shz-popup__btn:active { transform: scale(0.98); }

.shz-popup__dismiss {
  border: 0;
  background: transparent;
  color: #A0888E;
  font-size: 12px;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.14s ease;
  text-align: center;
  font-family: inherit;
}
.shz-popup__dismiss:hover { color: #F04475; }

.shz-popup__legal {
  font-size: 10px;
  color: #B8A0A5;
  margin: 8px 0 0;
  text-align: center;
}

/* close button */
.shz-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,248,246,0.85);
  color: #7A5A60;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.shz-popup__close:hover {
  background: #FFF0F4;
  color: #F04475;
}

/* ===================== mobile: bottom sheet ===================== */
@media (max-width: 767px) {
  .shz-popup {
    align-items: flex-end;
  }
  .shz-popup__modal {
    width: 100%;
    flex-direction: column;
    border-radius: 22px 22px 0 0;
    max-height: 68vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
    opacity: 1;
  }
  .shz-popup.is-visible .shz-popup__modal {
    transform: translateY(0);
    opacity: 1;
  }
  .shz-popup__image {
    flex: none;
    height: 120px;
    min-height: 0;
  }
  .shz-popup__nail {
    width: 30px;
    height: 50px;
    border-radius: 16px 16px 10px 10px;
  }
  .shz-popup__content {
    padding: 24px 20px 28px;
    text-align: center;
  }
  .shz-popup__title { font-size: 26px; }
  .shz-popup__btn { width: 100%; }
}

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

.shezair-home-shell {
  --shz-bg: #fff8f4;
  --shz-card: #ffffff;
  --shz-pink: #ee4f7d;
  --shz-pink-dark: #d83b68;
  --shz-blush: #ffe7ed;
  --shz-cream: #fff8f4;
  --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: var(--shz-pink);
  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: var(--shz-pink-dark);
}

.shz-announcement {
  background: linear-gradient(90deg, #e93e70, #ff7399, #e93e70);
  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: #F04475;
}
.shz-nav__link::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 3px;
  height: 1.4px;
  background: #F04475;
  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: #F04475;
}
.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 #F6DDE2;
  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: #F04475;
}

/* =============================================
   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 #F6DDE2;
  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: #F04475;
}

.shz-nav__dropdown-footer {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid #F6DDE2;
}
.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: #F04475;
  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: #F04475;
}

/* 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: #F04475;
}

.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: var(--shz-pink);
  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 #F6DDE2;
}
.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: #F04475;
  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: #C48D96;
  transition: transform 0.2s ease;
}
.shz-drawer__accordion[open] .shz-drawer__link--expandable::after {
  content: "−";
}
.shz-drawer__sublist {
  background: #FCE8EF;
  border-top: 1px solid #F6DDE2;
  border-bottom: 1px solid #F6DDE2;
}
.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: #F04475;
  background: #FFE8E5;
}
.shz-drawer__footer {
  padding: 14px 20px;
  border-top: 1px solid #F6DDE2;
}

.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: #ffeef2;
  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: var(--shz-pink);
  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: var(--shz-pink);
  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: var(--shz-pink);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* ========== Shop by Shape v2 — compact 6-col inline cards ========== */
.shz-shape-sct { padding: 42px 0; background: #FFF9F7; }
.shz-shape-row { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: center; }
.shz-shape-copy h2 { font-family: Cormorant Garamond, Georgia, serif; font-size: 44px; font-weight: 500; color: #2A1A1A; margin: 0 0 8px; }
.shz-shape-copy h2 span { color: #F04475; font-style: italic; font-weight: 300; }
.shz-shape-copy p { font-size: 14px; color: #6E5B61; line-height: 1.5; margin: 0 0 18px; }
.shz-sp-grid { display: grid; grid-template-columns: repeat(6, minmax(110px, 1fr)); gap: 10px; }
.shz-sp-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; height: 118px; border-radius: 18px; padding: 12px 8px; color: #FFFFFF; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.shz-sp-card:hover { transform: translateY(-3px); }

.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__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: var(--shz-pink-dark);
}

.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; }

/* =============================================
   WHAT'S IN THE BOX — kit preview + checklist
   ============================================= */
.shz-kit {
  padding: 72px 0;
  background: linear-gradient(180deg, #FFF9F7 0%, #FFF3F6 40%, #FFF9F7 100%);
  position: relative;
  overflow: hidden;
}
.shz-kit::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,68,117,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.shz-kit__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: center;
}

/* --- left: kit preview card --- */
.shz-kit__visual {
  position: relative;
}
.shz-kit__preview {
  background: #FFFFFF;
  border: 1px solid #F6DDE2;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(120, 40, 60, 0.09);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.shz-kit__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(244,68,117,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.shz-kit__nails-set {
  display: flex;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.shz-kit__nail-tip {
  display: block;
  width: 36px;
  height: 64px;
  border-radius: 20px 20px 14px 14px;
  background: linear-gradient(160deg, #FCE4EC 0%, #F8BBD0 30%, #F48FB1 100%);
  box-shadow: 0 2px 8px rgba(180,60,80,0.18);
}
.shz-kit__nail-tip--1 { margin-top: 12px; }
.shz-kit__nail-tip--2 { margin-top: 4px; background: linear-gradient(160deg, #FCE4EC, #F8BBD0, #F06292); }
.shz-kit__nail-tip--3 { margin-top: 0; background: linear-gradient(160deg, #FFF0F5, #F8BBD0, #EC407A); }
.shz-kit__nail-tip--4 { margin-top: 4px; background: linear-gradient(160deg, #FCE4EC, #F8BBD0, #F06292); }
.shz-kit__nail-tip--5 { margin-top: 12px; }

.shz-kit__accessories {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.shz-kit__acc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #FFF7F5;
  border: 1px solid #F6DDE2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B07080;
  box-shadow: 0 2px 8px rgba(120,40,60,0.06);
}
.shz-kit__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #C07888;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* --- right: checklist --- */
.shz-kit__details {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.shz-kit__kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #F04475;
  margin: 0 0 8px;
}
.shz-kit__title {
  font-family: Cormorant Garamond, Georgia, serif;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #2A1A1A;
  margin: 0 0 12px;
}
.shz-kit__sub {
  font-size: 15px;
  color: #6E5B61;
  line-height: 1.5;
  margin: 0 0 22px;
}

.shz-kit__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.shz-kit__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1px solid #F6DDE2;
  border-radius: 14px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.shz-kit__item:hover {
  border-color: #F8C4D0;
  box-shadow: 0 6px 20px rgba(120, 40, 60, 0.07);
}
.shz-kit__item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #FFF0F4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shz-kit__item-text {
  min-width: 0;
}
.shz-kit__item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #2A1A1A;
  margin-bottom: 2px;
}
.shz-kit__item-text span {
  display: block;
  font-size: 11px;
  color: #8A6F6D;
  line-height: 1.35;
}

.shz-kit__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.shz-kit__cta {
  min-height: 46px;
  padding: 0 26px;
  font-size: 13px;
  border-radius: 8px;
}
.shz-kit__guide-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #F04475;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.shz-kit__guide-link:hover {
  opacity: 0.78;
}

/* =============================================
   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: #F04475; }
.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-shape-row { grid-template-columns: 1fr; gap: 22px; }
  .shz-sp-grid { grid-template-columns: repeat(3, 1fr); }
  .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; }
  .shz-kit { padding: 44px 0; }
  .shz-kit__inner { grid-template-columns: 1fr; gap: 28px; }
  .shz-kit__preview { padding: 28px 20px; }
  .shz-kit__list { grid-template-columns: 1fr; }
  .shz-kit__title { font-size: 32px; }
}

@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;
    backdrop-filter: none !important;
    overflow: visible !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.2) !important;
    font-size: 10px !important;
    backdrop-filter: none !important;
    filter: none !important;
  }
  .shz-hero__point:last-child { border-bottom: 0 !important; }
}
@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 — Shezair brand
   Override Judge.me CSS custom properties
   ═══════════════════════════════════════ */
.template-product .shz-rvw-wrap {
  --jdgm-primary-color: #F04475 !important;
  --jdgm-secondary-color: rgba(240,68,117,0.1) !important;
  --jdgm-star-color: #F04475 !important;
  --jdgm-write-review-text-color: #FFFFFF !important;
  --jdgm-write-review-bg-color: #F04475 !important;
  --jdgm-paginate-color: #F04475 !important;
  --jdgm-reviewer-name-color: #F04475 !important;
  --jdgm-border-radius: 12px !important;
  background: #FFF9F7 !important;
  padding: 56px 0 80px !important;
  margin: 0 !important;
  border-top: 1px solid #F1D8DF;
}
/* Neutralize custom-liquid section padding */
.template-product .section-template--21079453630656__rvw-open-padding,
.template-product .section-template--21079453630656__rvw-close-padding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.template-product .shz-rvw-wrap .page-width {
  max-width: 1320px; width: min(100% - 48px, 1320px); margin: 0 auto; padding: 0;
}
.template-product .shz-rvw-wrap .jdgm-rev-widg,
.template-product .shz-rvw-wrap .jdgm-rev-widg__header,
.template-product .shz-rvw-wrap .jdgm-rev-widg__body,
.template-product .shz-rvw-wrap .jdgm-rev-widg__summary,
.template-product .shz-rvw-wrap .jdgm-widget {
  background: transparent !important;
}
.template-product .shz-rvw-wrap .jdgm-rev-widg__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 30px !important; font-weight: 400 !important; color: #2A1A1A !important;
  letter-spacing: -0.02em !important; visibility: visible !important;
}
.template-product .shz-rvw-wrap .jdgm-rev {
  background: #FFFFFF !important; border: 1px solid #F1D8DF !important;
  border-radius: 14px !important; padding: 24px !important; margin-bottom: 14px !important;
  box-shadow: 0 4px 16px rgba(120,40,60,0.04) !important;
}
.template-product .shz-rvw-wrap .jdgm-rev__title { color: #2A1A1A !important; font-weight: 600 !important; }
.template-product .shz-rvw-wrap .jdgm-rev__body { color: #4A3A3A !important; line-height: 1.6 !important; }
.template-product .shz-rvw-wrap .jdgm-rev__author { color: #2A1A1A !important; }
.template-product .shz-rvw-wrap .jdgm-rev__timestamp { color: #6E5B61 !important; }
.template-product .shz-rvw-wrap .jdgm-rev__buyer-badge {
  background: #FCE8EF !important; color: #9C3A52 !important; border-radius: 6px !important;
}
.template-product .shz-rvw-wrap .jdgm-histogram__bar-content { background: #F04475 !important; }
.template-product .shz-rvw-wrap .jdgm-histogram__bar,
.template-product .shz-rvw-wrap .jdgm-histogram__frequency { background: #FCE8EF !important; }
.template-product .shz-rvw-wrap .jdgm-paginate__page.jdgm-paginate__current-page {
  background: #F04475 !important; color: #FFFFFF !important; border-color: #F04475 !important;
}
.template-product .shz-rvw-wrap .jdgm-paginate__page {
  border: 1px solid #F1D8DF !important; border-radius: 6px !important; color: #2A1A1A !important;
}
@media (max-width: 767px) {
  .template-product .shz-rvw-wrap { padding: 44px 0 56px !important; }
  .template-product .shz-rvw-wrap .page-width { width: min(100% - 32px, 1320px); }
  .template-product .shz-rvw-wrap .jdgm-rev { padding: 18px !important; }
}
