/*
Theme Name: Leriez Place
Theme URI: https://leriezplace.com
Author: Leriez Place
Description: Custom WooCommerce theme for Leriez Place — premium international glam hair boutique.
Version: 1.7.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: leriez-place
Tags: e-commerce, custom-menu, featured-images, theme-options, woocommerce
*/


    :root {
      --cream: #f8e6df;
      --blush: #f6c4d3;
      --pink: #f29db5;
      --rose: #d34f7a;
      --rose-deep: #c23368;
      --mauve: #9a4f7e;
      --lavender: #e9c6f2;
      --soft-plum: #3d2434;
      --text: #2f1a26;
      --text-muted: #6e4a58;
      --white: #fffaf8;
      --border: rgba(194, 51, 104, 0.28);
      --success: #3d7a5a;
      --plastic-shadow: 0 10px 28px rgba(194, 51, 104, 0.18), inset 0 1px 0 rgba(255,255,255,0.75);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: "Quicksand", sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.65;
      overflow-x: hidden;
    }

    img { display: block; width: 100%; height: 100%; object-fit: cover; }

    /* ── Trust bar (topmost) — full width, NO bevels ── */
    .trust-bar {
      position: relative;
      z-index: 70;
      width: 100%;
      margin: 0;
      padding: 7px 28px;
      background: linear-gradient(
        180deg,
        rgba(36, 36, 42, 0.92) 0%,
        rgba(18, 18, 22, 0.88) 100%
      );
      border: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0;
      box-shadow: none;
    }

    .trust-bar-inner {
      max-width: none;
      width: 100%;
      margin: 0;
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px 28px;
      font-size: 0.76rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: #c8c8d2;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
    }

    .trust-item svg {
      width: 15px;
      height: 15px;
      color: #b8b8c4;
      flex-shrink: 0;
    }

    .announcement {
      background: linear-gradient(90deg, var(--rose-deep), var(--mauve));
      color: white;
      text-align: center;
      padding: 10px 16px;
      font-size: 0.82rem;
      font-weight: 500;
      border-radius: 0;
    }

    /* ── Main menu only (NOT WooCommerce archive <header> titles) ── */
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 0;
      width: 100%;
      isolation: isolate;
    }

    /* Critical: archive page titles use <header> too — must NEVER be sticky */
    header.woocommerce-products-header,
    header.shop-archive-header,
    .woocommerce-products-header,
    .shop-archive-header {
      position: static !important;
      top: auto !important;
      z-index: auto !important;
      isolation: auto !important;
      width: auto;
      background: transparent !important;
      box-shadow: none !important;
      border: 0 !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }

    header.site-header .header-inner {
      position: relative;
      z-index: 2;
      max-width: none;
      width: 100%;
      margin: 0;
      padding: 12px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      background: #fffaf8;
      background: linear-gradient(
        180deg,
        #fffcfb 0%,
        #fff8fa 100%
      );
      backdrop-filter: blur(10px) saturate(1.08);
      -webkit-backdrop-filter: blur(10px) saturate(1.08);
      border-radius: 0 0 22px 22px;
      border: none;
      border-bottom: 1px solid rgba(194, 51, 104, 0.1);
      box-shadow: 0 10px 28px rgba(61, 36, 52, 0.1);
    }
    header.site-header .header-inner::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: #fffaf8;
      opacity: 0.96;
      z-index: -1;
      pointer-events: none;
    }

    /* Homepage: hero sits under the menu chrome */
    body.home .hero,
    body.front-page .hero {
      position: relative;
      z-index: 1;
      margin-top: -64px;
      padding-top: 76px;
    }

    /* Keep page content below site header in stacking order */
    .site-content-wrap,
    .shop-shell,
    main {
      position: relative;
      z-index: 1;
    }

    body.admin-bar header.site-header {
      top: 32px;
    }

    @media screen and (max-width: 782px) {
      body.admin-bar header.site-header {
        top: 46px;
      }
    }

    .logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      line-height: 0;
    }

    .logo img {
      display: block;
      height: 52px;
      width: auto;
      max-width: 210px;
      object-fit: contain;
      object-position: left center;
    }

    .footer-brand .logo img {
      height: 64px;
      max-width: 260px;
      /* footer is dark — keep the black-plate logo or transparent metal */
      filter: none;
    }

    nav { display: flex; gap: 26px; font-size: 0.92rem; font-weight: 700; }
    nav a { color: var(--text); text-decoration: none; transition: color 0.2s; font-weight: 700; letter-spacing: 0.02em; }
    nav a:hover { color: var(--rose-deep); }

    .header-actions { display: flex; align-items: center; gap: 12px; }

    /* Cute header search */
    .header-search {
      display: flex;
      align-items: center;
      gap: 0;
      flex: 1 1 180px;
      max-width: 280px;
      min-width: 150px;
      height: 40px;
      padding: 3px 3px 3px 12px;
      border-radius: 999px;
      background: linear-gradient(180deg, #fff 0%, #fff7fa 100%);
      border: 1.5px solid rgba(232, 90, 140, 0.28);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 4px 14px rgba(194, 51, 104, 0.08);
      transition: border-color 0.2s, box-shadow 0.2s, max-width 0.25s ease;
    }
    .header-search:focus-within {
      border-color: rgba(194, 51, 104, 0.55);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 6px 18px rgba(194, 51, 104, 0.14);
      max-width: 320px;
    }
    .header-search__icon {
      display: grid;
      place-items: center;
      color: var(--rose-deep);
      opacity: 0.75;
      flex: 0 0 auto;
    }
    .header-search__input {
      flex: 1 1 auto;
      min-width: 0;
      border: 0;
      outline: none;
      background: transparent;
      font-family: inherit;
      font-size: 0.84rem;
      font-weight: 500;
      color: var(--text);
      padding: 0 8px;
    }
    .header-search__input::placeholder {
      color: rgba(61, 36, 52, 0.42);
      font-weight: 500;
    }
    .header-search__btn {
      flex: 0 0 auto;
      width: 32px;
      height: 32px;
      border: 0;
      border-radius: 50%;
      cursor: pointer;
      display: grid;
      place-items: center;
      background: linear-gradient(165deg, #e85a8c 0%, var(--rose-deep) 100%);
      color: #fff;
      font-size: 0.85rem;
      line-height: 1;
      box-shadow: 0 4px 10px rgba(194, 51, 104, 0.28);
      transition: transform 0.2s ease;
    }
    .header-search__btn:hover { transform: scale(1.06); }
    .header-search--panel {
      max-width: none;
      width: 100%;
      margin: 0 0 14px;
      flex: none;
    }
    .header-search--results {
      max-width: 420px;
      width: 100%;
      flex: none;
      height: 46px;
      padding-left: 14px;
    }
    .header-search--results .header-search__btn {
      width: 38px;
      height: 38px;
    }

    /* Search results page */
    .search-results__head { margin-bottom: 28px; }
    .search-results__bar { margin-top: 16px; }
    .search-results__list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 14px;
    }
    .search-results__card {
      display: grid;
      grid-template-columns: 88px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 12px;
      border-radius: 16px;
      text-decoration: none;
      color: inherit;
      background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);
      border: 1px solid rgba(232, 90, 140, 0.14);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .search-results__card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(194, 51, 104, 0.12);
    }
    .search-results__thumb {
      width: 88px;
      height: 88px;
      border-radius: 12px;
      overflow: hidden;
      background: var(--blush);
      display: grid;
      place-items: center;
    }
    .search-results__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .search-results__placeholder {
      color: var(--rose-deep);
      font-size: 1.2rem;
    }
    .search-results__badge {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--rose-deep);
      margin-bottom: 4px;
    }
    .search-results__title {
      margin: 0 0 4px;
      font-size: 1.05rem;
      font-family: "Cormorant Garamond", serif;
      font-weight: 600;
      line-height: 1.25;
    }
    .search-results__price {
      margin: 0;
      font-weight: 700;
      color: var(--text);
    }
    .search-results__excerpt {
      margin: 0;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.45;
    }
    .search-results__empty {
      padding: 28px 0 12px;
    }
    .search-results__empty .btn { margin: 8px 10px 0 0; }
    .search-results__nav { margin-top: 28px; }

    .icon-btn {
      width: 38px; height: 38px;
      border: none; border-radius: 50%;
      display: grid; place-items: center;
      background: var(--blush); color: var(--rose-deep);
      cursor: pointer; font-size: 0.95rem;
      transition: transform 0.2s, background 0.2s;
    }

    .icon-btn:hover { transform: scale(1.06); background: var(--pink); }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 13px 26px;
      font-family: inherit; font-size: 0.88rem; font-weight: 600;
      text-decoration: none; border: none; cursor: pointer;
      border-radius: 999px; transition: all 0.3s ease;
    }

    .btn-primary {
      background: linear-gradient(165deg, #e85a8c 0%, var(--rose-deep) 45%, var(--mauve) 100%);
      color: white;
      box-shadow: 0 8px 22px rgba(194, 51, 104, 0.38), inset 0 1px 0 rgba(255,255,255,0.45);
      border: 1px solid rgba(255,255,255,0.25);
    }

    .btn-primary:hover { transform: translateY(-2px); }

    .btn-outline {
      background: linear-gradient(180deg, #ffffff 0%, #fff5f8 100%);
      color: var(--rose-deep);
      border: 2px solid var(--pink);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 4px 14px rgba(194, 51, 104, 0.12);
    }

    .btn-outline:hover { background: var(--blush); }

    .btn-ghost {
      background: transparent;
      color: var(--rose-deep);
      padding: 10px 0;
      font-weight: 600;
    }

    .btn-ghost:hover { text-decoration: underline; }

    section { padding: 72px 24px; position: relative; }
    .container { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }

    .section-label {
      font-family: "Dancing Script", cursive;
      font-size: 1.35rem;
      color: var(--rose-deep);
      margin-bottom: 6px;
    }

    .section-title {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2rem, 4vw, 2.7rem);
      font-weight: 600;
      line-height: 1.2;
      color: var(--soft-plum);
      margin-bottom: 12px;
    }

    .section-sub { color: var(--text-muted); max-width: 520px; font-size: 0.98rem; }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 36px;
    }

    .wave-divider { display: block; width: 100%; line-height: 0; margin-top: -1px; }
    .wave-divider svg { width: 100%; height: 48px; }

    /* Hero + blog — blog left (smaller); cinematic full-bleed photo */
    .hero {
      padding: 0;
      background: var(--cream);
      overflow: hidden;
      height: calc(100vh - 150px);
      max-height: 640px;
      min-height: 420px;
    }

    .hero-layout {
      width: 100%;
      height: 100%;
      display: grid;
      /* Blog ~27% (2/3 of previous ~40%) · cinematic hero takes the rest */
      grid-template-columns: minmax(200px, 0.9fr) minmax(0, 2.7fr);
      gap: 0;
      align-items: stretch;
    }

    /* Full-bleed hero when blog rail is hidden (blog still via menu) */
    .hero--full .hero-layout {
      grid-template-columns: 1fr;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .hero--full .hero-main {
      border-radius: 28px;
      width: 100%;
    }

    /* Blog rail — left side, flush to extreme left */
    .hero-blog-rail {
      display: flex;
      flex-direction: column;
      background: var(--white);
      border-radius: 0 28px 28px 0;
      border: 1px solid var(--border);
      border-left: none;
      overflow: hidden;
      box-shadow: 10px 8px 36px rgba(212, 120, 154, 0.12);
      width: 100%;
      height: 100%;
      max-height: 100%;
      min-height: 0;
      margin: 0;
      z-index: 2;
    }

    .blog-rail-header {
      padding: 12px 14px 10px;
      border-bottom: 1px solid var(--border);
      background: linear-gradient(180deg, var(--blush) 0%, var(--white) 100%);
      flex-shrink: 0;
    }

    .blog-rail-header h3 {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.05rem;
      color: var(--soft-plum);
      margin-bottom: 2px;
    }

    .blog-rail-header p {
      font-size: 0.68rem;
      color: var(--text-muted);
    }

    .blog-rail-list {
      flex: 1 1 auto;
      min-height: 0;
      overflow-y: auto;
      overflow-x: hidden;
      padding: 8px 10px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      scroll-behavior: smooth;
      overscroll-behavior: contain;
      scrollbar-width: thin;
      scrollbar-color: var(--rose) var(--blush);
    }

    .blog-rail-list::-webkit-scrollbar { width: 5px; }
    .blog-rail-list::-webkit-scrollbar-track { background: var(--blush); border-radius: 999px; }
    .blog-rail-list::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 999px; }

    .blog-scroll-hint {
      text-align: center;
      font-size: 0.62rem;
      color: var(--text-muted);
      padding: 4px 0 2px;
      flex-shrink: 0;
      letter-spacing: 0.04em;
    }

    .blog-rail-item {
      display: block;
      text-decoration: none;
      color: inherit;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid transparent;
      transition: border-color 0.2s, transform 0.2s;
      flex-shrink: 0;
    }

    .blog-rail-item:hover {
      border-color: var(--pink);
      transform: scale(1.01);
    }

    .blog-rail-item.pinned {
      border-color: var(--rose);
      background: var(--blush);
    }

    .blog-rail-thumb {
      aspect-ratio: 16 / 9;
      background: var(--blush);
      position: relative;
    }

    .blog-rail-pin {
      position: absolute;
      top: 6px;
      left: 6px;
      background: var(--rose-deep);
      color: white;
      font-size: 0.58rem;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 999px;
      letter-spacing: 0.03em;
    }

    .blog-rail-body { padding: 7px 9px 9px; }

    .blog-rail-body h4 {
      font-size: 0.72rem;
      font-weight: 600;
      line-height: 1.35;
      color: var(--soft-plum);
      margin-bottom: 2px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .blog-rail-body time {
      font-size: 0.62rem;
      color: var(--text-muted);
    }

    .blog-rail-footer {
      padding: 10px 12px;
      border-top: 1px solid var(--border);
      text-align: center;
      flex-shrink: 0;
      background: var(--white);
    }

    .blog-rail-footer a {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--rose-deep);
      text-decoration: none;
    }

    .blog-rail-footer a:hover { text-decoration: underline; }

    /* Cinematic hero stage — full photo, text overlaid properly */
    .hero-main {
      position: relative;
      height: 100%;
      min-height: 0;
      overflow: hidden;
      display: flex;
      align-items: center;
      border-radius: 28px;
    }

    .hero-photo {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: #2f1a26;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      margin: 0;
      opacity: 0;
      transform: scale(1.05);
      transition: opacity 1.25s ease, transform 7.5s ease;
      pointer-events: none;
    }

    .hero-slide.is-active {
      opacity: 1;
      transform: scale(1);
      z-index: 1;
    }

    .hero-photo img,
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* Bias upward so faces/crowns stay in frame */
      object-position: center 14%;
      display: block;
      /* Light punch only — avoid softening/blurring */
      filter: contrast(1.04) saturate(1.05);
      image-rendering: auto;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      transform: translateZ(0);
    }

    /* Text-readable scrim on LEFT only — keep subject vivid on right */
    .hero-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(
        100deg,
        rgba(247, 235, 230, 0.88) 0%,
        rgba(247, 235, 230, 0.55) 26%,
        rgba(247, 235, 230, 0.12) 48%,
        rgba(47, 26, 38, 0.08) 72%,
        rgba(47, 26, 38, 0.18) 100%
      );
      transition: background 0.6s ease;
    }

    /* Dark gallery first slide — cream wash would hide it */
    .hero-photo.is-dark-slide::after {
      background: linear-gradient(
        100deg,
        rgba(20, 12, 18, 0.78) 0%,
        rgba(20, 12, 18, 0.45) 28%,
        rgba(20, 12, 18, 0.12) 52%,
        rgba(0, 0, 0, 0.15) 100%
      );
    }

    .hero-photo.is-dark-slide ~ .hero-content,
    .hero-main:has(.hero-photo.is-dark-slide) .hero-content h1 {
      color: #fff9f7;
    }

    .hero-main:has(.hero-photo.is-dark-slide) .hero-content p {
      color: rgba(255, 249, 247, 0.88);
    }

    .hero-main:has(.hero-photo.is-dark-slide) .hero-content h1 em {
      color: #f3c4d4;
    }

    .hero-main:has(.hero-photo.is-dark-slide) .hero-badge {
      background: rgba(255, 252, 251, 0.14);
      color: #fff9f7;
      border-color: rgba(255, 255, 255, 0.28);
    }

    .hero-main:has(.hero-photo.is-dark-slide) .btn-outline {
      background: rgba(255, 255, 255, 0.08);
      color: #fff9f7;
      border-color: rgba(255, 255, 255, 0.55);
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-slide {
        transition: opacity 0.01s linear;
        transform: none;
      }
      .hero-photo img,
      .hero-slide img {
        filter: contrast(1.06) saturate(1.08);
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 32px 40px 32px max(28px, calc((100vw - 1140px) / 2 * 0.15 + 28px));
      max-width: 480px;
    }

    .hero-badge {
      display: inline-block;
      padding: 6px 14px;
      background: rgba(255, 252, 251, 0.9);
      color: var(--rose-deep);
      font-size: 0.72rem;
      font-weight: 600;
      border-radius: 999px;
      margin-bottom: 14px;
      border: 1px solid var(--border);
      backdrop-filter: blur(6px);
    }

    .hero h1 {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 600;
      line-height: 1.1;
      color: var(--soft-plum);
      margin-bottom: 12px;
      text-shadow: 0 1px 0 rgba(255,255,255,0.4);
    }

    .hero h1 em {
      font-family: "Dancing Script", cursive;
      font-style: normal;
      font-size: 1.1em;
      color: var(--rose-deep);
      display: block;
      margin-top: 2px;
    }

    .hero p {
      color: var(--text);
      font-size: 0.95rem;
      max-width: 340px;
      margin-bottom: 20px;
      line-height: 1.55;
      opacity: 0.9;
    }

    .hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

    .hero-trust-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      padding: 9px 16px;
      background: rgba(255, 250, 248, 0.96);
      border-radius: 999px;
      border: 1px solid rgba(194, 51, 104, 0.35);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--text);
      box-shadow: 0 6px 18px rgba(20, 12, 18, 0.22);
      backdrop-filter: blur(8px);
    }

    .hero-trust-chip strong { color: var(--rose-deep); }

    /* Keep chip readable on dark hero slides (do not inherit white text) */
    .hero-main:has(.hero-photo.is-dark-slide) .hero-trust-chip {
      color: var(--text);
      background: rgba(255, 250, 248, 0.97);
    }

    /* Membership / rewards */
    .membership-section {
      padding: 56px 24px;
      background: var(--white);
    }

    .membership-card {
      max-width: 1140px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 32px;
      align-items: center;
      background: linear-gradient(135deg, var(--lavender) 0%, var(--blush) 100%);
      border-radius: 32px;
      padding: 40px 44px;
      border: 1px solid var(--border);
      box-shadow: 0 12px 40px rgba(212, 120, 154, 0.12);
    }

    .membership-card h2 {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      color: var(--soft-plum);
      margin-bottom: 10px;
    }

    .membership-card > div > p {
      color: var(--text-muted);
      font-size: 0.92rem;
      margin-bottom: 20px;
      max-width: 420px;
    }

    .member-id-preview {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      padding: 12px 18px;
      border-radius: 16px;
      border: 1px dashed var(--rose);
      margin-bottom: 18px;
    }

    .member-id-preview .label {
      font-size: 0.72rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .member-id-preview .id {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--rose-deep);
      letter-spacing: 0.04em;
    }

    .points-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .points-item {
      background: var(--white);
      border-radius: 18px;
      padding: 16px 14px;
      text-align: center;
      border: 1px solid var(--border);
    }

    .points-item .icon { font-size: 1.3rem; margin-bottom: 6px; }
    .points-item h4 {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--soft-plum);
      margin-bottom: 4px;
    }
    .points-item p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }

    .member-panel {
      background: var(--white);
      border-radius: 24px;
      padding: 28px 24px;
      border: 1px solid var(--border);
    }

    .member-panel h3 {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.2rem;
      color: var(--soft-plum);
      margin-bottom: 16px;
    }

    .member-stat {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.85rem;
    }

    .member-stat:last-of-type { border-bottom: none; margin-bottom: 16px; }

    .member-stat strong { color: var(--rose-deep); font-size: 1rem; }

    .referral-box {
      background: var(--blush);
      border-radius: 14px;
      padding: 12px 14px;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .referral-box code {
      display: block;
      margin-top: 6px;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--rose-deep);
      letter-spacing: 0.05em;
    }

    .header-member {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      background: var(--lavender);
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--soft-plum);
      text-decoration: none;
      border: 1px solid var(--border);
    }

    .header-member:hover { background: var(--blush); }

    /* Circular shortcuts — SamsBeauty pattern */
    .circle-shortcuts {
      padding: 36px 24px 28px;
      background: var(--cream);
    }

    .circle-row {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 22px 28px;
    }

    .circle-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: inherit;
      width: 110px;
      transition: transform 0.25s ease;
    }

    .circle-link:hover { transform: translateY(-4px); }

    .circle-icon {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 0.72rem;
      font-weight: 700;
      text-align: center;
      line-height: 1.25;
      letter-spacing: 0.02em;
      background: var(--white);
      border: 3px solid var(--pink);
      color: var(--soft-plum);
      padding: 12px;
      box-shadow: 0 6px 20px rgba(212, 120, 154, 0.12);
    }

    .circle-link:nth-child(1) .circle-icon { border-color: #c45d7e; background: #f8e4eb; }
    .circle-link:nth-child(2) .circle-icon { border-color: #8f5a7a; background: #efe4f0; }
    .circle-link:nth-child(3) .circle-icon { border-color: #c4784a; background: #f8ebe3; }
    .circle-link:nth-child(4) .circle-icon { border-color: #4f8a6a; background: #e5f2ea; }
    .circle-link:nth-child(5) .circle-icon { border-color: #b03d68; background: #f3d4de; }
    .circle-link:nth-child(6) .circle-icon { border-color: #6b5a9a; background: #ebe6f5; }

    .circle-label {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--text);
      text-align: center;
    }

    /* Soft pink category band — SamsBeauty "100% HUMAN HAIR" style */
    .pink-band {
      background: linear-gradient(180deg, #f4b9cc 0%, #efc2d2 55%, #f6cfe0 100%);
      padding: 56px 24px;
    }

    .pink-band .section-title {
      text-align: center;
      width: 100%;
      color: var(--rose-deep);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      letter-spacing: 0.04em;
      margin-bottom: 28px;
    }

    .pink-band-label {
      text-align: center;
      font-family: "Dancing Script", cursive;
      font-size: 1.3rem;
      color: var(--rose-deep);
      margin-bottom: 4px;
    }

    .cat-tile-row {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
      max-width: 1140px;
      margin: 0 auto;
    }

    .cat-tile {
      position: relative;
      aspect-ratio: 3/4;
      border-radius: 18px;
      overflow: hidden;
      text-decoration: none;
      background: linear-gradient(180deg, #fff 0%, #fff5f8 100%);
      border: 1px solid rgba(255,255,255,0.85);
      box-shadow: var(--plastic-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cat-tile:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 34px rgba(194, 51, 104, 0.24), inset 0 1px 0 rgba(255,255,255,0.85);
    }

    .cat-tile img {
      height: 72%;
      object-fit: cover;
      object-position: top center;
    }

    /* Frosted plastic label bar — high contrast on any photo */
    .cat-tile-name {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      min-height: 28%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 10px;
      background: linear-gradient(180deg, rgba(255,252,251,0.88) 0%, rgba(255,245,248,0.98) 100%);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: var(--rose-deep);
      font-size: clamp(0.72rem, 1.5vw, 0.88rem);
      font-weight: 700;
      letter-spacing: 0.04em;
      text-align: center;
      text-transform: uppercase;
      line-height: 1.25;
      border-top: 1px solid rgba(255,255,255,0.95);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 -8px 18px rgba(61, 36, 52, 0.1);
      text-shadow: none;
    }

    /* Sale strip — honest seasonal, no fake countdown */
    .sale-strip {
      background: var(--lavender);
      padding: 48px 24px;
    }

    .sale-card {
      max-width: 1140px; margin: 0 auto;
      background: var(--white);
      border-radius: 28px;
      padding: 36px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      border: 1px solid var(--border);
      box-shadow: 0 8px 32px rgba(212, 120, 154, 0.1);
    }

    .sale-card h2 {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.8rem;
      color: var(--soft-plum);
      margin-bottom: 6px;
    }

    .sale-card p { color: var(--text-muted); font-size: 0.92rem; }

    .sale-tag {
      display: inline-block;
      background: var(--rose-deep);
      color: white;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    /* Explore products — UniWigs tabs pattern */
    .explore-section { background: var(--blush); }

    .explore-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .explore-tab {
      padding: 10px 22px;
      border-radius: 999px;
      border: 2px solid var(--border);
      background: var(--white);
      color: var(--text);
      font-family: inherit;
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.25s;
    }

    .explore-tab.active,
    .explore-tab:hover {
      background: var(--rose-deep);
      color: white;
      border-color: var(--rose-deep);
    }

    .explore-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .explore-card {
      background: var(--white);
      border-radius: 24px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      border: 1px solid var(--border);
      transition: transform 0.35s, box-shadow 0.35s;
    }

    .explore-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(212, 120, 154, 0.15);
    }

    .explore-card img { aspect-ratio: 4/3; }
    .explore-card-body { padding: 18px 20px; }
    .explore-card-body h3 {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.2rem;
      color: var(--soft-plum);
      margin-bottom: 4px;
    }
    .explore-card-body p { font-size: 0.82rem; color: var(--text-muted); }

    /* Help me choose — beginner guides */
    .guide-section { background: var(--cream); }

    .guide-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .guide-card {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 28px 32px;
      background: var(--white);
      border-radius: 28px;
      border: 1px solid var(--border);
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .guide-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(212, 120, 154, 0.12);
    }

    .guide-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--blush);
      display: grid; place-items: center;
      font-size: 1.6rem;
      flex-shrink: 0;
    }

    .guide-card h3 {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.25rem;
      color: var(--soft-plum);
      margin-bottom: 4px;
    }

    .guide-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
    .guide-link { font-size: 0.82rem; font-weight: 700; color: var(--rose-deep); }

    /* Shop by lifestyle */
    .lifestyle-section {
      background: linear-gradient(180deg, var(--lavender) 0%, var(--cream) 100%);
    }

    .lifestyle-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .lifestyle-card {
      padding: 28px 22px;
      background: var(--white);
      border-radius: 24px;
      border: 1px solid var(--border);
      text-decoration: none;
      color: inherit;
      text-align: center;
      transition: transform 0.3s;
    }

    .lifestyle-card:nth-child(2) { transform: translateY(10px); }
    .lifestyle-card:nth-child(4) { transform: translateY(10px); }

    .lifestyle-card:hover { transform: translateY(-4px) !important; }

    .lifestyle-emoji { font-size: 2rem; margin-bottom: 12px; }

    .lifestyle-card h3 {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.15rem;
      color: var(--soft-plum);
      margin-bottom: 8px;
    }

    .lifestyle-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

    /* Customer show */
    .customer-show { background: var(--blush); }

    .show-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(2, 190px);
      gap: 14px;
    }

    .show-card {
      position: relative;
      overflow: hidden;
      border-radius: 22px;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(212, 120, 154, 0.1);
    }

    .show-card:nth-child(1) { grid-column: span 5; grid-row: span 2; border-radius: 28px 28px 28px 8px; }
    .show-card:nth-child(2) { grid-column: span 3; }
    .show-card:nth-child(3) { grid-column: span 4; border-radius: 8px 28px 22px 22px; }
    .show-card:nth-child(4) { grid-column: span 4; }
    .show-card:nth-child(5) { grid-column: span 3; border-radius: 22px 8px 28px 22px; }

    .show-label {
      position: absolute; bottom: 12px; left: 12px; right: 12px;
      padding: 10px 14px;
      background: rgba(255, 252, 251, 0.94);
      border-radius: 14px;
      font-size: 0.78rem; font-weight: 600;
      color: var(--soft-plum);
      opacity: 0; transform: translateY(6px);
      transition: all 0.3s;
    }

    .show-card:hover .show-label { opacity: 1; transform: translateY(0); }

    /* Products — cleaner SamsBeauty-style cards */
    .products-section { background: var(--cream); }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .product-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: none;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(212, 120, 154, 0.14);
    }

    .product-image {
      aspect-ratio: 3/4;
      background: linear-gradient(180deg, #dceee4 0%, #fff9f7 100%);
      position: relative;
      overflow: hidden;
    }

    .sale-badge {
      position: absolute;
      bottom: 12px;
      left: 0;
      background: #7a3d96;
      color: white;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 0 8px 8px 0;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .product-info { padding: 12px 10px 16px; }
    .product-stars {
      font-size: 0.72rem;
      color: #c9a227;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }
    .product-name {
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 8px;
      line-height: 1.4;
      color: var(--text-muted);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .product-price { display: flex; align-items: baseline; gap: 8px; }
    .price-now { font-weight: 700; color: var(--soft-plum); font-size: 0.95rem; }
    .price-was { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }

    /* Why us panel */
    .why-section { background: var(--cream); padding-bottom: 40px; }

    .why-panel {
      background: linear-gradient(145deg, var(--rose-deep) 0%, var(--mauve) 100%);
      border-radius: 36px;
      padding: 52px 44px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .why-panel .section-label { color: rgba(255,255,255,0.9); }
    .why-panel .section-title { color: white; }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 36px;
    }

    .why-item {
      background: rgba(255,255,255,0.14);
      backdrop-filter: blur(8px);
      padding: 22px 18px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .why-item h3 {
      font-family: "Cormorant Garamond", serif;
      font-size: 1.2rem;
      margin-bottom: 6px;
    }

    .why-item p { font-size: 0.85rem; color: rgba(255,255,255,0.88); line-height: 1.55; }

    /* Reviews */
    .reviews-section { background: var(--blush); }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-card {
      padding: 26px 24px;
      background: var(--white);
      border-radius: 22px;
      border: 1px solid var(--border);
    }

    .review-card:nth-child(2) { transform: translateY(12px); }

    .stars { color: var(--rose); font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 2px; }
    .review-text { font-size: 0.9rem; color: var(--text-muted); font-style: italic; margin-bottom: 14px; line-height: 1.7; }
    .review-author { font-size: 0.8rem; font-weight: 600; color: var(--rose-deep); }
    .review-verified { font-size: 0.72rem; color: var(--success); margin-top: 4px; }

    /* Booking */
    .booking-cta {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      padding: 72px 24px;
      max-width: 1140px;
      margin: 0 auto;
      align-items: center;
    }

    .booking-content {
      padding: 44px 36px;
      background: var(--white);
      border-radius: 28px;
      border: 1px solid var(--border);
      box-shadow: 0 12px 40px rgba(212, 120, 154, 0.1);
    }

    .booking-image {
      min-height: 400px;
      border-radius: 40% 60% 55% 45% / 45% 50% 50% 55%;
      overflow: hidden;
      transform: rotate(-2deg);
      box-shadow: 0 20px 50px rgba(212, 120, 154, 0.18);
    }

    /* Instagram */
    .insta-strip { padding: 60px 24px; background: var(--cream); text-align: center; }

    .insta-grid {
      display: flex; flex-wrap: wrap;
      justify-content: center; gap: 12px;
      max-width: 880px; margin: 24px auto 0;
    }

    .insta-item {
      width: 120px; height: 120px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid var(--white);
      box-shadow: 0 6px 20px rgba(212, 120, 154, 0.12);
      transition: transform 0.3s;
    }

    .insta-item:nth-child(odd) { transform: translateY(-6px); }
    .insta-item:nth-child(even) { transform: translateY(6px); }
    .insta-item:hover { transform: scale(1.08) !important; }

    /* Footer */
    footer {
      background: linear-gradient(160deg, #2a1520 0%, #4a2a3c 100%);
      color: rgba(255, 248, 246, 0.88);
      padding: 60px 24px 28px;
      border-radius: 44px 44px 0 0;
      margin-top: 32px;
    }

    .footer-grid {
      max-width: 1140px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 40px;
    }

    .footer-brand .logo { margin-bottom: 14px; }
    .footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; color: rgba(255,248,246,0.72); }

    .footer-col h4 {
      font-family: "Dancing Script", cursive;
      font-size: 1.15rem; color: var(--pink);
      margin-bottom: 12px; font-weight: 600;
    }

    .footer-col a {
      display: block; color: rgba(255,248,246,0.68);
      text-decoration: none; font-size: 0.86rem;
      margin-bottom: 9px; transition: color 0.2s;
    }

    .footer-col a:hover { color: white; }

    .footer-trust {
      max-width: 1140px; margin: 0 auto 28px;
      padding: 16px 20px;
      background: rgba(255,255,255,0.06);
      border-radius: 16px;
      font-size: 0.78rem;
      color: rgba(255,248,246,0.6);
      line-height: 1.6;
    }

    .footer-bottom {
      max-width: 1140px; margin: 0 auto;
      padding-top: 20px;
      border-top: 1px solid rgba(255,248,246,0.12);
      display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
      font-size: 0.76rem; color: rgba(255,248,246,0.45);
    }

    .whatsapp-float {
      position: fixed; bottom: 28px; right: 28px;
      width: 56px; height: 56px;
      background: #25d366; border-radius: 50%;
      display: grid; place-items: center;
      color: white; font-size: 1.4rem;
      text-decoration: none;
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
      z-index: 200;
      transition: transform 0.3s;
    }

    .whatsapp-float:hover { transform: scale(1.1); }

  /* Cookie banner — compliant, not intrusive popup */
    .cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--white);
      border-top: 1px solid var(--border);
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      z-index: 300;
      box-shadow: 0 -8px 32px rgba(0,0,0,0.06);
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .cookie-banner a { color: var(--rose-deep); font-weight: 600; }

    .design-notes {
      max-width: 1140px;
      margin: 0 auto;
      padding: 24px;
      background: #f0f7f2;
      border: 1px dashed #5a9e7a;
      border-radius: 16px;
      font-size: 0.8rem;
      color: #3d5c4a;
      line-height: 1.6;
    }

    .design-notes h4 { margin-bottom: 8px; color: #2d4a38; }

    @media (max-width: 1100px) {
      .hero-layout { grid-template-columns: minmax(180px, 0.85fr) minmax(0, 2.5fr); }
      .hero-content { max-width: 400px; padding: 24px; }
    }

    @media (max-width: 900px) {
      nav { display: none; }
      .logo img { height: 44px; max-width: 170px; }
      .header-member span:last-child { display: none; }
      .hero {
        height: auto;
        max-height: none;
        min-height: 0;
        padding: 0 0 16px;
      }
      .hero-layout { grid-template-columns: 1fr; height: auto; }
      .hero-main {
        height: min(70vh, 520px);
        min-height: 380px;
      }
      .hero-content {
        max-width: 100%;
        padding: 36px 24px;
      }
      .hero-photo::after {
        background: linear-gradient(
          180deg,
          rgba(47, 26, 38, 0.25) 0%,
          rgba(247, 235, 230, 0.9) 75%
        );
      }
      .hero-blog-rail {
        width: calc(100% - 32px);
        height: 300px;
        max-height: 300px;
        order: 3;
        border-radius: 24px;
        border: 1px solid var(--border);
        box-shadow: 0 8px 28px rgba(212, 120, 154, 0.1);
        margin: 0 16px 16px;
      }
      .blog-rail-list {
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
      }
      .blog-rail-item { min-width: 0; }
      .membership-card { grid-template-columns: 1fr; padding: 28px 24px; }
      .points-grid { grid-template-columns: 1fr; }
      .circle-row { gap: 16px; }
      .circle-icon { width: 80px; height: 80px; font-size: 0.62rem; }
      .circle-link { width: 90px; }
      .cat-tile-row { grid-template-columns: repeat(3, 1fr); }
      .explore-grid, .guide-grid, .lifestyle-grid, .product-grid, .why-grid { grid-template-columns: 1fr 1fr; }
      .show-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
      .show-card { grid-column: span 1 !important; grid-row: span 1 !important; aspect-ratio: 3/4; border-radius: 22px !important; }
      .review-grid { grid-template-columns: 1fr; }
      .review-card { transform: none !important; }
      .booking-cta { grid-template-columns: 1fr; }
      .booking-image { transform: none; border-radius: 24px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .guide-card { flex-direction: column; text-align: center; }
      footer { border-radius: 28px 28px 0 0; }
    }
  

/* WordPress / WooCommerce helpers */
.wp-site-blocks, .woocommerce-page .site-main { margin: 0; }
.site-content-wrap { min-height: 40vh; }
.page-shell { max-width: 1140px; margin: 40px auto; padding: 0 20px; }
.admin-bar header.site-header { top: 44px; }

/* ── Unice-inspired shop layout ── */
.shop-shell {
  max-width: none;
  width: 100%;
  margin: 12px 0 48px;
  padding: 0 16px; /* side gutters */
}

/* Brand reputation marquee */
.shop-reputation {
  margin: 0 0 18px;
  padding: 4px 0 2px;
}
.shop-reputation__intro {
  margin-bottom: 8px;
  padding: 0 4px;
}
.shop-reputation__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rose-deep);
}
.shop-reputation__heading {
  display: none;
}
.shop-reputation__viewport {
  overflow: hidden;
  border-radius: 0;
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}
.shop-reputation__track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
  transform: translateX(0);
}
.shop-reputation.is-in-view .shop-reputation__track {
  animation: leriezShopRepPan 42s linear infinite;
}
.shop-reputation__card {
  position: relative;
  margin: 0;
  /* Scrolling strip: wide landscape rectangles */
  width: min(52vw, 480px);
  flex: 0 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: #ead7d0;
  aspect-ratio: 2.2 / 1;
  min-height: 200px;
  height: auto;
  max-width: none;
}
.shop-reputation__card img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.shop-reputation__card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 14px 10px;
  background: linear-gradient(180deg, transparent, rgba(20, 12, 18, 0.72));
  color: #fff9f7;
  display: grid;
  gap: 2px;
}
.shop-reputation__card figcaption strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.shop-reputation__card figcaption span {
  font-size: 0.76rem;
  opacity: 0.92;
}
@keyframes leriezShopRepPan {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .shop-reputation.is-in-view .shop-reputation__track {
    animation: none;
  }
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.shop-filters-toggle {
  display: none;
}
.shop-filters-backdrop {
  display: none;
}
.shop-filters {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow: auto;
  padding: 4px 8px 16px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border-right: 1px solid rgba(194, 51, 104, 0.12);
}
.shop-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.shop-filters__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.shop-filters__close {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}
.shop-filters__clear {
  margin: 12px 0 0;
  font-size: 0.92rem;
}
.shop-filters__clear a {
  color: var(--rose-deep);
  font-weight: 600;
}
.shop-filter-group {
  padding: 0;
  border-bottom: 1px solid rgba(47, 26, 38, 0.08);
}
.shop-filter-group__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 11px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text);
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  line-height: 1.25;
}
.shop-filter-group__chevron {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.shop-filter-group.is-open .shop-filter-group__chevron {
  transform: rotate(-135deg);
}
.shop-filter-group__body {
  display: none;
  padding: 0 0 8px;
}
.shop-filter-group.is-open .shop-filter-group__body {
  display: block;
}
.shop-filter-group__title {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}
.shop-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
}
.shop-filter-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 5px 3px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}
.shop-filter-link small {
  color: var(--text-muted);
  font-size: 0.78rem;
}
.shop-filter-link:hover,
.shop-filter-link.is-active {
  background: rgba(242, 157, 181, 0.18);
  color: var(--rose-deep);
}
.shop-filters__clear {
  margin: 8px 0 0;
  font-size: 0.7rem;
}
.shop-filters__clear a {
  color: var(--rose-deep);
  font-weight: 600;
}

.shop-archive-header {
  margin-bottom: 6px;
}
.shop-main .woocommerce-products-header__title,
.shop-main .page-title,
.tax-product_cat .woocommerce-products-header__title,
.woocommerce-products-header__title.page-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text);
  position: relative;
  z-index: 0;
}
.shop-main .woocommerce-result-count,
.shop-main .woocommerce-ordering {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.shop-main .woocommerce-ordering select {
  border: 1px solid rgba(194, 51, 104, 0.25);
  border-radius: 999px;
  padding: 7px 12px;
  background: #fff;
  color: var(--text);
}

/* Product cards — fixed grid so 1 product stays normal card size (never full-width) */
.woocommerce ul.products,
.wc-block-product-template,
.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px 14px !important;
  list-style: none;
  padding: 14px 0 0;
  margin: 0;
  width: 100% !important;
  clear: both !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.wc-block-grid__products::before,
.wc-block-grid__products::after {
  display: none !important;
  content: none !important;
}
.products-section .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px 14px !important;
}
.woocommerce ul.products li.product,
.wc-block-product,
.wc-block-grid__product {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  flex: none !important;
  background: transparent;
  border: 0;
  text-align: left;
  position: relative;
}
.products-section .woocommerce ul.products li.product {
  flex: none !important;
  width: 100% !important;
  max-width: 100% !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product > a {
  display: block;
  text-decoration: none;
}
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product img,
.wc-block-grid__product-image img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 3 / 4 !important; /* standing portrait — rest on short side */
  object-fit: cover !important;
  object-position: center top !important; /* keep long hair / crown in frame */
  border-radius: 12px;
  background: #f3e4de;
  margin: 0 0 10px !important;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.woocommerce ul.products li.product:hover a img,
.woocommerce ul.products li.product:hover img {
  transform: scale(1.03);
  filter: brightness(1.03);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product-title {
  font-size: 0.86rem !important;
  font-weight: 600;
  color: var(--text) !important;
  padding: 0 !important;
  margin: 0 0 4px !important;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.woocommerce ul.products li.product .price,
.wc-block-grid__product-price {
  color: var(--text) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product .price del {
  opacity: 0.55;
  font-weight: 500;
  margin-right: 6px;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  color: var(--rose-deep);
}

/* Add to cart: quiet until hover (desktop) */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .added_to_cart {
  margin-top: 8px !important;
  border-radius: 999px !important;
  padding: 8px 14px !important;
  font-size: 0.75rem !important;
  min-height: 0 !important;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  pointer-events: none;
}
.woocommerce ul.products li.product:hover .button,
.woocommerce ul.products li.product:hover a.button,
.woocommerce ul.products li.product:hover .added_to_cart,
.woocommerce ul.products li.product .button.added {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.woocommerce span.onsale {
  background: var(--rose-deep);
  border-radius: 999px;
  min-height: 0;
  line-height: 1;
  padding: 5px 8px;
  top: 10px;
  left: 10px;
  right: auto;
  font-size: 0.68rem;
}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce .button {
  background: var(--soft-plum) !important; color: #fff !important; border-radius: 999px !important;
  font-weight: 600 !important; padding: 12px 22px !important;
}
.woocommerce a.button:hover { background: var(--rose-deep) !important; }

@media (max-width: 1100px) {
  .woocommerce ul.products,
  .wc-block-product-template,
  .wc-block-grid__products,
  .products-section .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .woocommerce ul.products li.product,
  .wc-block-product,
  .wc-block-grid__product,
  .products-section .woocommerce ul.products li.product {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .woocommerce ul.products li.product a img,
  .woocommerce ul.products li.product img {
    max-height: none !important;
    aspect-ratio: 3 / 4 !important;
    object-position: center top !important;
  }
}

@media (max-width: 980px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-filters-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 10px 16px;
    border: 1px solid rgba(194, 51, 104, 0.3);
    border-radius: 999px;
    background: rgba(255, 250, 248, 0.95);
    color: var(--text);
    font-weight: 700;
    font-size: 0.86rem;
    cursor: pointer;
  }
  .shop-filters {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    width: min(86vw, 340px);
    height: 100vh;
    max-height: none;
    margin: 0;
    padding: 18px 16px 28px;
    background: #fffaf8;
    border-right: 0;
    border-radius: 0;
    box-shadow: 18px 0 40px rgba(47, 26, 38, 0.18);
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    display: block;
  }
  .shop-filter-group {
    border-right: 0 !important;
    padding-right: 0 !important;
  }
  .shop-filters__close { display: inline-flex; }
  .shop-layout.is-filters-open .shop-filters {
    transform: translateX(0);
  }
  .shop-filters-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(20, 12, 18, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }
  .shop-layout.is-filters-open .shop-filters-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .shop-layout.is-filters-open .shop-filters-backdrop[hidden] {
    display: block;
  }
  body.shop-filters-open {
    overflow: hidden;
  }
  .woocommerce ul.products,
  .wc-block-product-template,
  .wc-block-grid__products,
  .products-section .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 10px !important;
  }
  .woocommerce ul.products li.product,
  .wc-block-product,
  .wc-block-grid__product,
  .products-section .woocommerce ul.products li.product {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .woocommerce ul.products li.product a img,
  .woocommerce ul.products li.product img {
    max-height: none !important;
    aspect-ratio: 3 / 4 !important;
    object-position: center top !important;
    border-radius: 10px;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.8rem !important;
  }
  .woocommerce ul.products li.product .price {
    font-size: 0.84rem !important;
  }
  /* Always show ATC on touch devices */
  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product a.button {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

@media (max-width: 560px) {
  .shop-shell { margin-top: 8px; padding: 0 12px 36px; }
  .shop-reputation__card {
    width: min(78vw, 320px) !important;
    height: auto !important;
    max-width: none !important;
    flex: 0 0 auto !important;
    min-height: 140px !important;
    aspect-ratio: 2.1 / 1 !important;
    border-radius: 8px;
  }
  .woocommerce ul.products li.product a img,
  .woocommerce ul.products li.product img {
    max-height: none !important;
    aspect-ratio: 3 / 4 !important;
    object-position: center top !important;
  }
}


/* Primary menu + hover dropdowns */
nav .primary-menu {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav .primary-menu > li {
  margin: 0;
  position: relative;
}
/* Extra hit area under parent so mouse can reach the dropdown */
nav .primary-menu > li.menu-item-has-children {
  padding-bottom: 14px;
  margin-bottom: -14px;
}
nav .primary-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}
nav .primary-menu a:hover,
nav .primary-menu .current-menu-item > a,
nav .primary-menu .current-menu-ancestor > a {
  color: var(--rose-deep);
}
nav .primary-menu > li.menu-item-has-children > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.75;
}
nav .primary-menu .sub-menu {
  position: absolute;
  top: calc(100% - 10px); /* overlap parent hit area — easier to catch */
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  margin: 0;
  padding: 10px 8px 8px;
  list-style: none;
  background: rgba(255, 250, 248, 0.98);
  border: 1px solid rgba(194, 51, 104, 0.16);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(47, 26, 38, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 120;
}
/* Invisible bridge above the panel (inside the submenu box) */
nav .primary-menu .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
nav .primary-menu .sub-menu li {
  margin: 0;
}
nav .primary-menu .sub-menu a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
nav .primary-menu .sub-menu a:hover {
  background: rgba(242, 157, 181, 0.2);
  color: var(--rose-deep);
}
nav .primary-menu > li:hover > .sub-menu,
nav .primary-menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Booking section fallback layout */
.booking-cta { padding: 60px 20px; }
.booking-image { border-radius: 24px; overflow: hidden; min-height: 280px; }
.booking-image img { width: 100%; height: 100%; object-fit: cover; }
.instagram-strip { text-align: center; padding: 48px 20px 20px; }
@media (max-width: 900px) {
  .booking-cta .container { grid-template-columns: 1fr !important; }
}

/* ===== Mobile-first smart navigation & shorter homepage ===== */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-deep);
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
}
.mobile-nav-panel,
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 900px) {
  /* Shorter chrome */
  .trust-bar { display: none; }
  body.home .hero,
  body.front-page .hero {
    margin-top: -52px;
    padding-top: 64px !important;
  }
  body.home header.site-header,
  body.front-page header.site-header,
  body.admin-bar.home header.site-header,
  body.admin-bar.front-page header.site-header {
    top: 0;
  }
  body.admin-bar.home header.site-header,
  body.admin-bar.front-page header.site-header {
    top: 46px;
  }
  .announcement {
    font-size: 0.72rem;
    padding: 8px 12px;
    line-height: 1.35;
  }
  header.site-header {
    top: 0;
    padding: 0;
  }
  .admin-bar header.site-header { top: 46px; }
  header.site-header .header-inner {
    padding: 10px 14px;
    gap: 10px;
    border-radius: 0 0 18px 18px;
  }
  .desktop-nav { display: none !important; }
  .header-search--desktop { display: none !important; }
  .header-book-btn { display: none; }
  .header-member { display: none; }
  .menu-toggle { display: inline-flex; }

  .logo img {
    height: 38px;
    max-width: 140px;
  }

  /* Mobile hero: taller stage, content low — more of the photo shows */
  .hero {
    padding: 6px 0 10px !important;
  }
  .hero-blog-rail {
    display: none !important;
  }
  .hero-main {
    height: min(70vh, 540px) !important;
    min-height: 400px !important;
    border-radius: 24px;
    margin: 8px 12px 0;
    align-items: flex-end !important; /* text sits at bottom */
  }
  .hero-photo img {
    object-position: center 12% !important;
  }
  .hero-photo::after {
    background: linear-gradient(
      180deg,
      rgba(20, 12, 18, 0.08) 0%,
      rgba(20, 12, 18, 0.12) 42%,
      rgba(20, 12, 18, 0.55) 72%,
      rgba(20, 12, 18, 0.88) 100%
    ) !important;
  }
  .hero-photo.is-dark-slide::after {
    background: linear-gradient(
      180deg,
      rgba(20, 12, 18, 0.08) 0%,
      rgba(20, 12, 18, 0.12) 42%,
      rgba(20, 12, 18, 0.55) 72%,
      rgba(20, 12, 18, 0.88) 100%
    ) !important;
  }
  .hero-content {
    padding: 0 18px 20px !important;
    max-width: 100% !important;
    width: 100%;
  }
  .hero-badge {
    margin-bottom: 8px;
    font-size: 0.68rem;
    padding: 5px 12px;
  }
  .hero-content h1 {
    font-size: clamp(1.85rem, 7.2vw, 2.35rem) !important;
    line-height: 1.12;
    margin-bottom: 8px !important;
  }
  .hero-content p {
    font-size: 0.86rem;
    margin-bottom: 12px !important;
    max-width: 30ch;
    line-height: 1.45;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-actions .btn {
    padding: 11px 18px;
    font-size: 0.82rem;
  }
  /* Trust chip crowds the photo on small screens */
  .hero-trust-chip {
    display: none !important;
  }

  /* Quick category circles — scroll with page (only header stays sticky) */
  .circle-shortcuts {
    padding: 14px 8px 8px !important;
    position: static;
    background: var(--cream);
  }
  .circle-row {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 0 8px 8px;
    -webkit-overflow-scrolling: touch;
  }
  .circle-link { flex: 0 0 auto; width: 76px; }
  .circle-icon {
    width: 68px;
    height: 68px;
    font-size: 0.55rem;
  }
  .circle-label { font-size: 0.7rem; }

  /* Hide longer / secondary homepage blocks on phones */
  .membership-section .points-grid,
  .guide-section,
  .instagram-strip,
  .sale-strip p,
  .whatsapp-float {
    display: none !important;
  }
  .membership-section {
    padding-top: 18px !important;
    padding-bottom: 10px !important;
  }
  .membership-card {
    padding: 22px 18px !important;
  }
  .membership-card h2 { font-size: 1.45rem; }
  .sale-strip { padding: 12px 12px 0 !important; }
  .sale-card {
    padding: 18px !important;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }
  .pink-band { padding: 28px 12px !important; }
  .pink-band .section-title { font-size: 1.5rem; }
  .cat-tile-row {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px;
  }
  .cat-tile-name {
    font-size: 0.7rem !important;
    padding: 10px 6px !important;
    letter-spacing: 0.03em;
  }
  .products-section { padding: 28px 12px !important; }
  .products-section .section-title { font-size: 1.5rem; }
  .booking-cta { padding: 28px 12px 90px !important; }
  .booking-image { min-height: 180px; }
  footer {
    padding-bottom: 90px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 22px;
  }

  /* Slide-down menu */
  .mobile-nav-panel {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    top: 78px;
    z-index: 120;
    background: rgba(255, 252, 251, 0.98);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 10px;
    box-shadow: 0 16px 40px rgba(61, 36, 52, 0.18);
    flex-direction: column;
    gap: 2px;
  }
  .admin-bar .mobile-nav-panel { top: 124px; }
  .mobile-nav-panel.is-open { display: flex; }
  .mobile-nav-panel a {
    display: block;
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
  }
  .mobile-nav-panel a:hover,
  .mobile-nav-panel a:focus {
    background: var(--blush);
    color: var(--rose-deep);
  }
  body.mobile-nav-open { overflow: hidden; }

  /* Sticky bottom nav — easiest path on phones */
  .mobile-bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 130;
    background: rgba(255, 252, 251, 0.96);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  }
  .mobile-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    min-height: 52px;
  }
  .mobile-bottom-nav__item span {
    font-size: 1.05rem;
    line-height: 1;
  }
  .mobile-bottom-nav__item small {
    font-size: 0.62rem;
    letter-spacing: 0.02em;
  }
  .mobile-bottom-nav__item--accent {
    color: var(--rose-deep);
  }
  .woocommerce ul.products,
  .products-section .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
  }
  .woocommerce ul.products li.product,
  .products-section .woocommerce ul.products li.product {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

.leriez-item-no {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.leriez-item-no span {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.leriez-item-no--loop {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.shop-reputation h2,
.shop-reputation .shop-reputation__heading,
.shop-reputation__heading {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  font-size: 0 !important;
}
.shop-shell {
  max-width: none !important;
  width: 100% !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}
.shop-layout {
  grid-template-columns: 260px minmax(0, 1fr) !important;
}
.shop-reputation__card {
  width: min(52vw, 480px) !important;
  height: auto !important;
  max-width: none !important;
  flex: 0 0 auto !important;
  aspect-ratio: 2.2 / 1 !important;
  min-height: 200px !important;
  border-radius: 10px !important;
}
.shop-reputation__card img {
  width: 100% !important;
  height: 100% !important;
  min-height: 200px !important;
  object-fit: cover !important;
  object-position: center 28% !important;
}

/* Shop product wig frames: standing portrait (rest on short side) */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product img,
.wc-block-grid__product-image img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 3 / 4 !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 12px !important;
}
.shop-filters__title {
  font-size: 1.55rem !important;
  font-weight: 700 !important;
}
.shop-filters__title,
.shop-filter-group__toggle,
.shop-filter-group__toggle span,
.shop-filter-link,
.shop-filter-link span {
  font-weight: 700 !important;
}
.shop-filter-group__toggle {
  font-size: 0.98rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text) !important;
}
.shop-filter-link {
  font-size: 0.92rem !important;
}
.shop-filter-link small {
  font-size: 0.78rem !important;
}
.shop-filters__clear,
.shop-filters__clear a {
  font-size: 0.92rem !important;
  font-weight: 700 !important;
}

/* Policy / content pages */
.page-shell article {
  max-width: 760px;
}
.page-shell article h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  margin: 1.6em 0 0.55em;
  color: var(--text);
}
.page-shell article h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 1.15em 0 0.4em;
  color: var(--text);
}
.page-shell article p,
.page-shell article li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}
.page-shell article ul {
  margin: 0.4em 0 1em 1.2em;
}
.page-shell article a {
  color: var(--rose-deep);
  font-weight: 600;
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--pink);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
