/*
Theme Name:  Little Yoga Project
Theme URI:   https://littleyogaproject.co
Author:      Little Yoga Project
Description: Custom WooCommerce theme for Little Yoga Project — yoga mats for little ones. Melbourne, Australia.
Version:     1.0.0
Requires at least: 6.0
Tested up to:      6.7
Requires PHP:      8.0
License:     Proprietary
Text Domain: lyp
*/

/* ================================================================
   DESIGN TOKENS
================================================================ */
:root {
  --lyp-cloud:          #FAF8F4;
  --lyp-oat:            #E8DECE;
  --lyp-oat-dark:       #D4C8B4;
  --lyp-sage:           #7BAE8C;
  --lyp-sage-dark:      #527A62;
  --lyp-sage-light:     #D0E6D8;
  --lyp-peach:          #F5845A;
  --lyp-peach-dark:     #E06840;
  --lyp-peach-light:    #FDDDD2;
  --lyp-lavender:       #C4B5E0;
  --lyp-lavender-light: #EDE9F6;
  --lyp-moss:           #2D3A2E;
  --lyp-moss-mid:       #4A5F4C;
  --lyp-moss-light:     #8A9E8C;
  --lyp-gold:           #F4C97A;
  --lyp-teal-light:     #D0EEF0;
  --lyp-error:          #D94F3D;
  --lyp-success:        #3D9E6E;
  --lyp-font-display:   'Fraunces', Georgia, serif;
  --lyp-font-body:      'DM Sans', system-ui, -apple-system, sans-serif;
  --lyp-radius-sm:      8px;
  --lyp-radius-md:      14px;
  --lyp-radius-lg:      20px;
  --lyp-radius-xl:      28px;
  --lyp-radius-pill:    100px;
  --lyp-shadow-sm:      0 2px 12px rgba(45,58,46,0.07);
  --lyp-shadow-md:      0 6px 24px rgba(45,58,46,0.10);
  --lyp-shadow-lg:      0 16px 48px rgba(45,58,46,0.14);
  --lyp-shadow-xl:      0 24px 64px rgba(45,58,46,0.18);
  --lyp-max-w:          1200px;
  --lyp-gap:            clamp(14px, 2.2vw, 26px);
  --lyp-pad-x:          clamp(20px, 5vw, 60px);
  --lyp-pad-y:          clamp(48px, 7vw, 96px);
  --lyp-header-h:       68px;
  --lyp-transition:     0.2s cubic-bezier(0.4,0,0.2,1);
}

/* ================================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--lyp-cloud); color: var(--lyp-moss); font-family: var(--lyp-font-body); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--lyp-transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ================================================================ LAYOUT */
.lyp-container { width: 100%; max-width: var(--lyp-max-w); margin-inline: auto; padding-inline: var(--lyp-pad-x); }
.lyp-container--narrow { max-width: 860px; }
.lyp-section { padding-block: var(--lyp-pad-y); }
.lyp-section--sm { padding-block: clamp(32px, 4vw, 56px); }
.lyp-section--cloud    { background: var(--lyp-cloud); }
.lyp-section--oat      { background: var(--lyp-oat); }
.lyp-section--moss     { background: var(--lyp-moss); color: var(--lyp-cloud); }
.lyp-section--lavender { background: var(--lyp-lavender-light); }
.lyp-divider { border: none; border-top: 1px solid var(--lyp-oat); margin-block: 20px; }
.lyp-section-header { margin-bottom: 40px; }
.lyp-section-header--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.lyp-section-header .lyp-eyebrow { margin-bottom: 8px; }

/* ================================================================ TYPOGRAPHY */
.lyp-eyebrow { font-family: var(--lyp-font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lyp-sage-dark); display: block; }
h1,.lyp-h1 { font-family: var(--lyp-font-display); font-size: clamp(40px,6vw,80px); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; }
h2,.lyp-h2 { font-family: var(--lyp-font-display); font-size: clamp(28px,3.5vw,48px); font-weight: 500; line-height: 1.1; letter-spacing: -0.015em; }
h3,.lyp-h3 { font-family: var(--lyp-font-display); font-size: clamp(20px,2.2vw,28px); font-weight: 500; line-height: 1.2; }
h4,.lyp-h4 { font-family: var(--lyp-font-display); font-size: clamp(17px,1.6vw,20px); font-weight: 500; }
p { line-height: 1.7; }
.lyp-lead { font-size: clamp(16px,1.4vw,19px); font-weight: 300; color: var(--lyp-moss-mid); line-height: 1.75; }
.lyp-body-sm { font-size: 13px; color: var(--lyp-moss-mid); }
.lyp-field-label, .lyp-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lyp-moss-mid); margin-bottom: 8px; display: block; }

/* ================================================================ BUTTONS */
.lyp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--lyp-font-body); font-size: 14px; font-weight: 500; line-height: 1;
  border-radius: var(--lyp-radius-pill); padding: 14px 28px;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: transform var(--lyp-transition), box-shadow var(--lyp-transition),
              background var(--lyp-transition), color var(--lyp-transition), border-color var(--lyp-transition);
}
.lyp-btn:focus-visible { outline: 3px solid var(--lyp-sage); outline-offset: 3px; }
.lyp-btn:hover  { transform: translateY(-2px); }
.lyp-btn:active { transform: translateY(0); }
.lyp-btn--primary { background: var(--lyp-peach); color: #fff; border-color: var(--lyp-peach); box-shadow: 0 4px 20px rgba(245,132,90,.30); }
.lyp-btn--primary:hover { background: var(--lyp-peach-dark); border-color: var(--lyp-peach-dark); box-shadow: 0 8px 28px rgba(245,132,90,.40); color: #fff; }
.lyp-btn--sage   { background: var(--lyp-sage); color: #fff; border-color: var(--lyp-sage); box-shadow: 0 4px 18px rgba(123,174,140,.32); }
.lyp-btn--sage:hover { background: var(--lyp-sage-dark); border-color: var(--lyp-sage-dark); box-shadow: 0 8px 24px rgba(123,174,140,.42); color: #fff; }
.lyp-btn--outline { background: transparent; color: var(--lyp-moss); border-color: var(--lyp-oat-dark); }
.lyp-btn--outline:hover { background: var(--lyp-moss); border-color: var(--lyp-moss); color: var(--lyp-cloud); }
.lyp-btn--ghost { background: transparent; color: var(--lyp-moss-mid); border-color: transparent; padding-inline: 8px; }
.lyp-btn--ghost:hover { color: var(--lyp-moss); transform: none; }
.lyp-btn--lg   { font-size: 16px; padding: 17px 36px; }
.lyp-btn--sm   { font-size: 12px; padding: 9px 18px; }
.lyp-btn--full, .lyp-btn--block { width: 100%; display: flex; }

/* ================================================================ BADGES */
.lyp-badge { display: inline-flex; align-items: center; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--lyp-radius-pill); line-height: 1; }
.lyp-badge--new  { background: var(--lyp-sage); color: #fff; }
.lyp-badge--sale { background: var(--lyp-peach); color: #fff; }
.lyp-badge--eco  { background: var(--lyp-sage-light); color: var(--lyp-sage-dark); }

/* ================================================================ STARS */
.lyp-stars     { color: var(--lyp-gold); font-size: 14px; letter-spacing: 1px; line-height: 1; }
.lyp-stars--sm { font-size: 12px; }

/* ================================================================ FORMS */
.lyp-input, .lyp-select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--lyp-oat-dark);
  border-radius: var(--lyp-radius-md); background: white; color: var(--lyp-moss);
  font-size: 14px; transition: border-color var(--lyp-transition), box-shadow var(--lyp-transition);
  appearance: none; -webkit-appearance: none;
}
.lyp-input:focus, .lyp-select:focus { outline: none; border-color: var(--lyp-sage); box-shadow: 0 0 0 3px rgba(123,174,140,0.18); }
.lyp-input::placeholder { color: var(--lyp-moss-light); }
.lyp-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5F4C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.lyp-field { display: flex; flex-direction: column; gap: 6px; }
.lyp-field label { font-size: 12.5px; font-weight: 500; color: var(--lyp-moss-mid); }
.lyp-field abbr { text-decoration: none; color: var(--lyp-peach); }
.lyp-checkbox-row { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--lyp-moss-mid); cursor: pointer; }
.lyp-checkbox-row input[type="checkbox"] { width: 17px; height: 17px; accent-color: var(--lyp-sage); cursor: pointer; flex-shrink: 0; }

/* ================================================================ PAYMENT CHIPS */
.lyp-payment-icon { display: inline-flex; align-items: center; font-size: 10px; font-weight: 600; padding: 4px 8px; background: var(--lyp-oat); border-radius: 5px; color: var(--lyp-moss-mid); letter-spacing: .03em; }

/* ================================================================ ANNOUNCE BAR */
.lyp-announce { background: var(--lyp-moss); color: var(--lyp-cloud); text-align: center; font-size: 12.5px; font-weight: 500; padding: 10px var(--lyp-pad-x); letter-spacing: .03em; }
.lyp-announce a { color: var(--lyp-gold); text-decoration: underline; }

/* ================================================================ HEADER */
.lyp-header { position: sticky; top: 0; z-index: 1000; background: rgba(250,248,244,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--lyp-oat); height: var(--lyp-header-h); }
.lyp-header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: var(--lyp-max-w); margin-inline: auto; padding-inline: var(--lyp-pad-x); gap: 24px; }
.lyp-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.lyp-logo__wordmark { font-family: var(--lyp-font-display); font-size: 18px; font-weight: 500; color: var(--lyp-moss); line-height: 1.1; }
.lyp-logo__tagline { font-size: 11px; color: var(--lyp-moss-light); font-weight: 400; }
.lyp-nav { display: flex; align-items: center; gap: 32px; }
.lyp-nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.lyp-nav__links a { font-size: 14px; font-weight: 500; color: var(--lyp-moss-mid); transition: color var(--lyp-transition); }
.lyp-nav__links a:hover,.lyp-nav__links .current-menu-item > a { color: var(--lyp-moss); }
.lyp-nav__actions { display: flex; align-items: center; gap: 12px; }
.lyp-nav__cart { position: relative; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--lyp-oat); transition: background var(--lyp-transition); }
.lyp-nav__cart:hover { background: var(--lyp-oat-dark); }
.lyp-nav__cart svg { width: 18px; height: 18px; stroke: var(--lyp-moss); stroke-width: 1.8; fill: none; }
.lyp-nav__cart-count { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; background: var(--lyp-peach); color: white; font-size: 10px; font-weight: 700; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding-inline: 4px; line-height: 1; }
.lyp-nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.lyp-nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--lyp-moss); border-radius: 2px; transition: transform var(--lyp-transition), opacity var(--lyp-transition); }
.lyp-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lyp-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.lyp-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.lyp-mobile-nav { display: none; position: fixed; top: var(--lyp-header-h); left: 0; right: 0; bottom: 0; background: var(--lyp-cloud); z-index: 999; overflow-y: auto; padding: 24px var(--lyp-pad-x) 40px; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); }
.lyp-mobile-nav.is-open { transform: translateX(0); }
.lyp-mobile-nav__links { list-style: none; margin-bottom: 32px; }
.lyp-mobile-nav__links li + li { border-top: 1px solid var(--lyp-oat); }
.lyp-mobile-nav__links a { display: block; font-size: 20px; font-family: var(--lyp-font-display); font-weight: 500; padding: 18px 0; color: var(--lyp-moss); }
.lyp-mobile-nav__ctas { display: flex; flex-direction: column; gap: 12px; }

/* ================================================================ BREADCRUMB */
.lyp-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--lyp-moss-light); margin-bottom: 28px; flex-wrap: wrap; }
.lyp-breadcrumb a { color: var(--lyp-moss-light); }
.lyp-breadcrumb a:hover { color: var(--lyp-sage-dark); }
.lyp-breadcrumb__sep { color: var(--lyp-oat-dark); }
.lyp-breadcrumb [aria-current] { color: var(--lyp-moss-mid); }

/* ================================================================ MARQUEE STRIP */
.lyp-marquee { overflow: hidden; background: var(--lyp-moss); color: var(--lyp-cloud); padding: 14px 0; }
.lyp-marquee__track { display: flex; gap: 48px; width: max-content; animation: lyp-marquee 28s linear infinite; }
.lyp-marquee__item { display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 500; letter-spacing: .04em; white-space: nowrap; }
.lyp-marquee__dot { color: var(--lyp-sage); font-size: 16px; }
@keyframes lyp-marquee { to { transform: translateX(-50%); } }

/* ================================================================ HERO */
.lyp-hero { background: var(--lyp-cloud); overflow: hidden; padding-top: calc(var(--lyp-pad-y) + 16px); padding-bottom: 0; }
.lyp-hero__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(32px,5vw,80px); max-width: var(--lyp-max-w); margin: auto; padding-inline: var(--lyp-pad-x); }
.lyp-hero__eyebrow { margin-bottom: 12px; }
.lyp-hero__h1 { font-family: var(--lyp-font-display); font-size: clamp(40px,6vw,76px); font-weight: 500; line-height: 1.03; letter-spacing: -0.025em; color: var(--lyp-moss); margin-bottom: 20px; }
.lyp-hero__h1 em { font-style: italic; color: var(--lyp-sage-dark); }
.lyp-hero__sub { font-size: clamp(15px,1.3vw,18px); color: var(--lyp-moss-mid); font-weight: 300; line-height: 1.75; max-width: 440px; margin-bottom: 32px; }
.lyp-hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.lyp-hero__social-proof { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.lyp-hero__avatar-stack { display: flex; }
.lyp-hero__avatar-stack span { width: 32px; height: 32px; border-radius: 50%; background: var(--lyp-oat); border: 2px solid var(--lyp-cloud); margin-left: -8px; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.lyp-hero__avatar-stack span:first-child { margin-left: 0; }
.lyp-hero__social-text { font-size: 12.5px; color: var(--lyp-moss-mid); }
.lyp-hero__social-text strong { color: var(--lyp-moss); }
/* Mat stage blob */
.lyp-mat-stage { position: relative; display: flex; align-items: flex-end; justify-content: center; min-height: 480px; }
.lyp-mat-stage__blob { position: absolute; inset: -20px; z-index: 0; }
.lyp-mat-stage__blob svg { width: 100%; height: 100%; }
.lyp-mat-stage__blob path { fill: var(--lyp-sage-light); animation: lyp-morph 8s ease-in-out infinite; }
@keyframes lyp-morph {
  0%,100% { d: path("M200,80 C280,40 360,80 380,160 C400,240 360,320 280,360 C200,400 100,360 60,280 C20,200 60,120 140,80 Z"); }
  50%      { d: path("M200,60 C300,40 380,100 380,180 C380,260 320,340 240,370 C160,400 60,360 40,270 C20,180 80,100 160,70 Z"); }
}
.lyp-mat-stage__img { position: relative; z-index: 1; max-width: 320px; width: 80%; object-fit: contain; }
.lyp-mat-stage__float { position: absolute; z-index: 2; background: white; border-radius: var(--lyp-radius-lg); padding: 12px 16px; box-shadow: var(--lyp-shadow-md); font-size: 12px; font-weight: 500; color: var(--lyp-moss); }
.lyp-mat-stage__float--review { top: 28px; left: -16px; max-width: 200px; animation: lyp-float-a 4s ease-in-out infinite; }
.lyp-mat-stage__float--eco    { bottom: 80px; right: -16px; animation: lyp-float-b 5s ease-in-out infinite 0.5s; }
.lyp-float__stars  { margin-bottom: 4px; }
.lyp-float__name   { font-size: 10px; color: var(--lyp-moss-light); margin-top: 4px; }
.lyp-float__badge  { display: flex; align-items: center; gap: 8px; }
.lyp-float__icon   { font-size: 22px; }
.lyp-float__text   { font-size: 11.5px; font-weight: 500; color: var(--lyp-moss); }
.lyp-float__sub    { font-size: 10px; color: var(--lyp-moss-light); }
@keyframes lyp-float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes lyp-float-b { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ================================================================ CATEGORY CARDS */
.lyp-categories { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--lyp-gap); }
.lyp-cat-card { border-radius: var(--lyp-radius-xl); overflow: hidden; position: relative; cursor: pointer; }
.lyp-cat-card__inner { position: relative; aspect-ratio: 3/4; }
.lyp-cat-card__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.lyp-cat-card:hover .lyp-cat-card__bg { transform: scale(1.04); }
.lyp-cat-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(45,58,46,0.7) 0%, transparent 55%); }
.lyp-cat-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px; color: white; }
.lyp-cat-card__age  { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .8; margin-bottom: 4px; display: block; }
.lyp-cat-card__name { font-family: var(--lyp-font-display); font-size: 24px; font-weight: 500; line-height: 1.1; }
.lyp-cat-card__cta  { margin-top: 10px; font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; opacity: .85; }

/* ================================================================ PRODUCT GRID & CARDS */
.lyp-product-grid, .lyp-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--lyp-gap); }
.lyp-product-card { background: white; border-radius: var(--lyp-radius-xl); overflow: hidden; box-shadow: var(--lyp-shadow-sm); transition: box-shadow var(--lyp-transition), transform var(--lyp-transition); display: flex; flex-direction: column; }
.lyp-product-card:hover { box-shadow: var(--lyp-shadow-md); transform: translateY(-4px); }
.lyp-product-card__image { position: relative; }
.lyp-product-card__img-wrap { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.lyp-product-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lyp-product-card:hover .lyp-product-card__img-wrap img { transform: scale(1.04); }
.lyp-card-tint--sage     { background: var(--lyp-sage-light); }
.lyp-card-tint--lavender { background: var(--lyp-lavender-light); }
.lyp-card-tint--peach    { background: var(--lyp-peach-light); }
.lyp-card-tint--sun      { background: #FFF6E0; }
.lyp-card-tint--teal     { background: var(--lyp-teal-light); }
.lyp-product-card__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; }
.lyp-product-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.lyp-product-card__name { font-family: var(--lyp-font-display); font-size: 16px; font-weight: 500; color: var(--lyp-moss); line-height: 1.25; }
.lyp-product-card__meta { font-size: 12px; color: var(--lyp-moss-light); }
.lyp-product-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.lyp-product-card__price { font-family: var(--lyp-font-display); font-size: 19px; font-weight: 500; color: var(--lyp-moss); }
.lyp-product-card__price del { font-size: 14px; color: var(--lyp-moss-light); margin-right: 4px; }
.lyp-atc-circle { width: 38px; height: 38px; border-radius: 50%; background: var(--lyp-peach); color: white; font-size: 20px; font-weight: 300; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--lyp-transition), background var(--lyp-transition), box-shadow var(--lyp-transition); box-shadow: 0 3px 12px rgba(245,132,90,0.3); }
.lyp-atc-circle:hover { transform: scale(1.12); background: var(--lyp-peach-dark); box-shadow: 0 6px 18px rgba(245,132,90,0.4); }

/* ================================================================ VALUES */
.lyp-values__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--lyp-gap); }
.lyp-value-card { padding: 28px 24px; border-radius: var(--lyp-radius-xl); }
.lyp-value-card__icon  { font-size: 32px; margin-bottom: 16px; }
.lyp-value-card__title { font-family: var(--lyp-font-display); font-size: 18px; font-weight: 500; color: var(--lyp-cloud); margin-bottom: 8px; }
.lyp-value-card__body  { font-size: 13.5px; color: var(--lyp-moss-light); line-height: 1.65; }

/* ================================================================ TESTIMONIALS */
.lyp-testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--lyp-gap); }
.lyp-testimonial-card { background: white; border-radius: var(--lyp-radius-xl); padding: 28px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--lyp-shadow-sm); }
.lyp-testimonial-card__stars  { color: var(--lyp-gold); font-size: 14px; letter-spacing: 2px; }
.lyp-testimonial-card__text   { font-size: 14.5px; color: var(--lyp-moss-mid); line-height: 1.7; flex: 1; }
.lyp-testimonial-card__author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--lyp-oat); padding-top: 16px; }
.lyp-testimonial-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--lyp-oat); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.lyp-testimonial-card__name   { font-size: 13px; font-weight: 600; color: var(--lyp-moss); }
.lyp-testimonial-card__loc    { font-size: 11.5px; color: var(--lyp-moss-light); }

/* ================================================================ SIGNUP */
.lyp-signup { background: var(--lyp-oat); border-radius: var(--lyp-radius-xl); overflow: hidden; }
.lyp-signup__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; padding: clamp(40px,5vw,64px); }
.lyp-signup__h2 { font-family: var(--lyp-font-display); font-size: clamp(26px,3vw,38px); font-weight: 500; color: var(--lyp-moss); margin-bottom: 12px; line-height: 1.15; }
.lyp-signup__sub { font-size: 14px; color: var(--lyp-moss-mid); line-height: 1.65; margin-top: 10px; }
.lyp-signup__form { display: flex; flex-direction: column; gap: 12px; }
.lyp-signup__row { display: flex; gap: 10px; }
.lyp-signup__input { flex: 1; padding: 13px 16px; border: 1.5px solid var(--lyp-oat-dark); border-radius: var(--lyp-radius-pill); background: white; font-size: 14px; color: var(--lyp-moss); transition: border-color var(--lyp-transition); }
.lyp-signup__input:focus { outline: none; border-color: var(--lyp-sage); }
.lyp-signup__note { font-size: 11.5px; color: var(--lyp-moss-light); }

/* ================================================================ FOOTER */
.lyp-footer { background: var(--lyp-moss); color: var(--lyp-cloud); padding-top: clamp(48px,6vw,80px); }
.lyp-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--lyp-gap); padding-bottom: 48px; }
.lyp-footer__brand .lyp-logo__wordmark { color: var(--lyp-cloud); font-size: 20px; }
.lyp-footer__brand .lyp-logo__tagline  { color: var(--lyp-moss-light); }
.lyp-footer__desc { font-size: 13.5px; color: var(--lyp-moss-light); line-height: 1.7; margin-top: 14px; max-width: 260px; }
.lyp-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.lyp-footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background var(--lyp-transition); }
.lyp-footer__social a:hover { background: var(--lyp-sage); }
.lyp-footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--lyp-cloud); margin-bottom: 16px; }
.lyp-footer__links { display: flex; flex-direction: column; gap: 10px; }
.lyp-footer__links a { font-size: 13.5px; color: var(--lyp-moss-light); transition: color var(--lyp-transition); }
.lyp-footer__links a:hover { color: var(--lyp-cloud); }
.lyp-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.lyp-footer__copy { font-size: 12px; color: var(--lyp-moss-light); }
.lyp-footer__pay  { display: flex; gap: 6px; flex-wrap: wrap; }

/* ================================================================ SHOP / ARCHIVE */
.lyp-shop-header { padding-block: clamp(32px,4vw,48px); border-bottom: 1px solid var(--lyp-oat); }
.lyp-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.lyp-shop-count { font-size: 13px; color: var(--lyp-moss-mid); }
.lyp-shop-sort select { padding: 9px 36px 9px 14px; border: 1.5px solid var(--lyp-oat-dark); border-radius: var(--lyp-radius-pill); background: white; font-size: 13px; color: var(--lyp-moss); -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234A5F4C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; cursor: pointer; }
.lyp-filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.lyp-filter-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 500; padding: 7px 14px; border-radius: var(--lyp-radius-pill); border: 1.5px solid var(--lyp-oat-dark); background: white; color: var(--lyp-moss-mid); cursor: pointer; transition: all var(--lyp-transition); }
.lyp-filter-pill:hover,.lyp-filter-pill.is-active { border-color: var(--lyp-sage); background: var(--lyp-sage-light); color: var(--lyp-sage-dark); }
.lyp-shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }
.lyp-shop-sidebar__widget { background: white; border-radius: var(--lyp-radius-lg); padding: 20px; margin-bottom: 16px; box-shadow: var(--lyp-shadow-sm); }
.lyp-shop-sidebar__title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--lyp-moss); margin-bottom: 14px; }
.lyp-shop-sidebar__list { display: flex; flex-direction: column; gap: 8px; }
.lyp-shop-sidebar__item { display: flex; align-items: center; justify-content: space-between; font-size: 13.5px; color: var(--lyp-moss-mid); padding: 4px 0; cursor: pointer; transition: color var(--lyp-transition); }
.lyp-shop-sidebar__item:hover { color: var(--lyp-sage-dark); }
.lyp-shop-sidebar__count { font-size: 11px; background: var(--lyp-oat); padding: 2px 7px; border-radius: 10px; color: var(--lyp-moss-light); }
.lyp-shop-empty { text-align: center; padding: 80px 20px; }
.lyp-shop-empty__icon { font-size: 56px; margin-bottom: 20px; }
.woocommerce-pagination { display: flex; justify-content: center; margin-top: 48px; }
.woocommerce-pagination .page-numbers { display: flex; gap: 8px; list-style: none; }
.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--lyp-oat-dark); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; color: var(--lyp-moss-mid); transition: all var(--lyp-transition); }
.woocommerce-pagination .page-numbers a:hover { border-color: var(--lyp-sage); color: var(--lyp-sage-dark); }
.woocommerce-pagination .page-numbers .current { background: var(--lyp-sage); border-color: var(--lyp-sage); color: white; }

/* ================================================================ SINGLE PRODUCT */
.lyp-single-product { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: start; }
.lyp-gallery { display: flex; flex-direction: column; gap: 10px; position: sticky; top: calc(var(--lyp-header-h) + 20px); }
.lyp-gallery__main { border-radius: var(--lyp-radius-xl); overflow: hidden; background: var(--lyp-oat); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.lyp-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.lyp-gallery__thumbs { display: flex; gap: 8px; }
.lyp-gallery__thumb { width: 72px; height: 72px; border-radius: var(--lyp-radius-md); overflow: hidden; border: 2px solid transparent; padding: 0; flex-shrink: 0; transition: border-color var(--lyp-transition); background: var(--lyp-oat); cursor: pointer; }
.lyp-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lyp-gallery__thumb.is-active { border-color: var(--lyp-sage); }
.lyp-gallery__thumb:hover { border-color: var(--lyp-sage-dark); }
.lyp-product-details { display: flex; flex-direction: column; gap: 20px; }
.lyp-product-details__head { display: flex; flex-direction: column; gap: 8px; }
.lyp-product-details__rating { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.lyp-product-details__price-row { display: flex; align-items: baseline; gap: 10px; }
.lyp-price-main { font-family: var(--lyp-font-display); font-size: 32px; font-weight: 500; color: var(--lyp-moss); }
.lyp-price-was  { font-family: var(--lyp-font-display); font-size: 18px; text-decoration: line-through; color: var(--lyp-moss-light); }
.lyp-price-save { font-size: 12px; font-weight: 700; background: var(--lyp-peach-light); color: var(--lyp-peach-dark); padding: 3px 10px; border-radius: var(--lyp-radius-pill); }
.lyp-option-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.lyp-option-pill { padding: 9px 18px; border: 1.5px solid var(--lyp-oat-dark); border-radius: var(--lyp-radius-pill); font-size: 13px; font-weight: 500; color: var(--lyp-moss-mid); cursor: pointer; transition: all var(--lyp-transition); background: white; }
.lyp-option-pill:hover { border-color: var(--lyp-sage); color: var(--lyp-sage-dark); }
.lyp-option-pill.is-selected { border-color: var(--lyp-sage); background: var(--lyp-sage-light); color: var(--lyp-sage-dark); }
.lyp-product-details__atc { display: flex; gap: 10px; align-items: center; }
.lyp-qty { display: flex; align-items: center; border: 1.5px solid var(--lyp-oat-dark); border-radius: var(--lyp-radius-pill); overflow: hidden; background: white; flex-shrink: 0; }
.lyp-qty__btn { width: 40px; height: 48px; font-size: 20px; font-weight: 300; color: var(--lyp-moss); display: flex; align-items: center; justify-content: center; transition: background var(--lyp-transition); }
.lyp-qty__btn:hover { background: var(--lyp-oat); }
.lyp-qty__val { width: 44px; text-align: center; font-size: 15px; font-weight: 500; color: var(--lyp-moss); border: none; border-left: 1px solid var(--lyp-oat); border-right: 1px solid var(--lyp-oat); outline: none; height: 48px; -moz-appearance: textfield; }
.lyp-qty__val::-webkit-inner-spin-button,.lyp-qty__val::-webkit-outer-spin-button { -webkit-appearance: none; }
.lyp-product-features { display: flex; flex-direction: column; gap: 10px; }
.lyp-feature-item { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: var(--lyp-moss-mid); line-height: 1.5; }
.lyp-feature-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ================================================================ CART */
.lyp-cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.lyp-cart-table__head { display: grid; grid-template-columns: 1fr 80px 120px 80px 40px; gap: 12px; padding: 0 0 12px; border-bottom: 2px solid var(--lyp-oat); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--lyp-moss-light); }
.lyp-cart-item { display: grid; grid-template-columns: 1fr 80px 120px 80px 40px; gap: 12px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--lyp-oat); }
.lyp-cart-item__product { display: flex; align-items: center; gap: 14px; }
.lyp-cart-item__img { width: 72px; height: 88px; border-radius: var(--lyp-radius-md); overflow: hidden; background: var(--lyp-sage-light); flex-shrink: 0; }
.lyp-cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.lyp-cart-item__name { font-family: var(--lyp-font-display); font-size: 15px; font-weight: 500; color: var(--lyp-moss); line-height: 1.25; }
.lyp-cart-item__name a { color: var(--lyp-moss); }
.lyp-cart-item__name a:hover { color: var(--lyp-sage-dark); }
.lyp-cart-item__meta { font-size: 12px; color: var(--lyp-moss-light); margin-top: 4px; }
.lyp-cart-item__price,.lyp-cart-item__subtotal { font-family: var(--lyp-font-display); font-size: 16px; font-weight: 500; color: var(--lyp-moss); }
.lyp-cart-item__qty .quantity input.qty { width: 80px; padding: 8px 12px; border: 1.5px solid var(--lyp-oat-dark); border-radius: var(--lyp-radius-md); text-align: center; font-size: 14px; font-weight: 500; color: var(--lyp-moss); }
.lyp-cart-item__remove { width: 32px; height: 32px; border-radius: 50%; font-size: 18px; color: var(--lyp-moss-light); display: flex; align-items: center; justify-content: center; transition: background var(--lyp-transition), color var(--lyp-transition); }
.lyp-cart-item__remove:hover { background: var(--lyp-peach-light); color: var(--lyp-error); }
.lyp-cart-sidebar { background: white; border-radius: var(--lyp-radius-xl); padding: 24px; box-shadow: var(--lyp-shadow-sm); position: sticky; top: calc(var(--lyp-header-h) + 20px); }
.lyp-cart-sidebar__title { font-family: var(--lyp-font-display); font-size: 20px; font-weight: 500; color: var(--lyp-moss); margin-bottom: 20px; }
.lyp-shipping-bar { margin-bottom: 16px; }
.lyp-shipping-bar__label { font-size: 13px; color: var(--lyp-moss-mid); margin-bottom: 10px; }
.lyp-shipping-bar__label span { font-weight: 600; color: var(--lyp-moss); }
.lyp-shipping-bar__track { height: 6px; background: var(--lyp-oat); border-radius: 3px; overflow: hidden; }
.lyp-shipping-bar__fill  { height: 100%; background: var(--lyp-sage); border-radius: 3px; transition: width 0.6s ease; }
.lyp-order-line { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--lyp-moss-mid); padding: 6px 0; }
.lyp-order-line--total { font-family: var(--lyp-font-display); font-size: 20px; font-weight: 500; color: var(--lyp-moss); border-top: 1.5px solid var(--lyp-oat-dark); padding-top: 14px; margin-top: 6px; }
.lyp-order-total-price  { font-family: var(--lyp-font-display); font-size: 24px; font-weight: 600; color: var(--lyp-moss); }
.lyp-coupon-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.lyp-cart-trust { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.lyp-cart-trust-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--lyp-moss-mid); }
.lyp-cart-trust-icon { font-size: 15px; }
.lyp-cart-empty { text-align: center; padding: 80px 20px; }

/* ================================================================ CHECKOUT */
.lyp-checkout-steps { display: flex; align-items: center; margin-bottom: 36px; }
.lyp-checkout-step { display: flex; align-items: center; gap: 10px; }
.lyp-checkout-step__num { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--lyp-oat-dark); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--lyp-moss-light); background: white; flex-shrink: 0; transition: all var(--lyp-transition); }
.lyp-checkout-step__label { font-size: 13px; font-weight: 500; color: var(--lyp-moss-light); }
.lyp-checkout-step__connector { flex: 1; height: 2px; background: var(--lyp-oat-dark); min-width: 32px; margin: 0 8px; }
.lyp-checkout-step.is-active .lyp-checkout-step__num { border-color: var(--lyp-peach); background: var(--lyp-peach); color: white; box-shadow: 0 0 0 4px var(--lyp-peach-light); }
.lyp-checkout-step.is-active .lyp-checkout-step__label { color: var(--lyp-moss); font-weight: 600; }
.lyp-checkout-step.is-complete .lyp-checkout-step__num { border-color: var(--lyp-sage); background: var(--lyp-sage); color: white; }
.lyp-checkout-step.is-complete .lyp-checkout-step__label { color: var(--lyp-moss-mid); }
.lyp-checkout-layout { display: grid; grid-template-columns: minmax(0, 3fr) 360px; gap: 28px; align-items: start; }
.lyp-checkout-form { display: flex; flex-direction: column; gap: 16px; }
.lyp-checkout-block { background: white; border-radius: var(--lyp-radius-xl); overflow: hidden; box-shadow: var(--lyp-shadow-sm); }
.lyp-checkout-block__title { display: flex; align-items: center; gap: 12px; font-family: var(--lyp-font-display); font-size: 18px; font-weight: 500; color: var(--lyp-moss); padding: 20px 24px; border-bottom: 1px solid var(--lyp-oat); }
.lyp-checkout-block__num { width: 28px; height: 28px; border-radius: 50%; background: var(--lyp-peach); color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lyp-checkout-block__body { padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.lyp-form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lyp-form-row--3  { grid-template-columns: 1fr 1fr 1fr; }
.lyp-form-row--full { grid-template-columns: 1fr; }
.lyp-shipping-options { display: flex; flex-direction: column; gap: 10px; }
.lyp-shipping-method { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1.5px solid var(--lyp-oat-dark); border-radius: var(--lyp-radius-md); cursor: pointer; transition: all var(--lyp-transition); }
.lyp-shipping-method:hover { border-color: var(--lyp-sage-light); }
.lyp-shipping-method.is-selected { border-color: var(--lyp-sage); background: var(--lyp-sage-light); }
.lyp-shipping-method input[type="radio"] { accent-color: var(--lyp-sage); width: 16px; height: 16px; flex-shrink: 0; }
.lyp-shipping-method__info  { flex: 1; }
.lyp-shipping-method__label { font-size: 14px; font-weight: 500; color: var(--lyp-moss); }
.lyp-shipping-method__sub   { font-size: 12px; color: var(--lyp-moss-light); margin-top: 2px; }
.lyp-shipping-method__price { font-family: var(--lyp-font-display); font-size: 15px; font-weight: 500; color: var(--lyp-moss); }
.lyp-shipping-method__price--free { color: var(--lyp-sage-dark); }
.lyp-payment-list   { display: flex; flex-direction: column; gap: 10px; }
.lyp-payment-method { border: 1.5px solid var(--lyp-oat-dark); border-radius: var(--lyp-radius-md); overflow: hidden; cursor: pointer; transition: border-color var(--lyp-transition); }
.lyp-payment-method.is-selected { border-color: var(--lyp-sage); }
.lyp-payment-method__header { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: white; transition: background var(--lyp-transition); }
.lyp-payment-method.is-selected .lyp-payment-method__header { background: var(--lyp-sage-light); }
.lyp-payment-method__radio  { accent-color: var(--lyp-sage); width: 16px; height: 16px; flex-shrink: 0; }
.lyp-payment-method__name   { font-size: 14px; font-weight: 500; color: var(--lyp-moss); flex: 1; }
.lyp-payment-method__icons  { display: flex; gap: 5px; }
.lyp-payment-method__body   { padding: 20px 18px; background: #FAFAFA; border-top: 1px solid var(--lyp-oat); display: none; }
.lyp-payment-method.is-selected .lyp-payment-method__body { display: block; }
.lyp-card-fields { display: flex; flex-direction: column; gap: 12px; }
.lyp-checkout-sidebar { position: sticky; top: calc(var(--lyp-header-h) + 20px); display: flex; flex-direction: column; gap: 16px; }
.lyp-checkout-order-card { background: white; border-radius: var(--lyp-radius-xl); overflow: hidden; box-shadow: var(--lyp-shadow-sm); }
.lyp-checkout-order-card__header { padding: 18px 22px; background: var(--lyp-oat); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--lyp-oat-dark); }
.lyp-checkout-order-card__title  { font-family: var(--lyp-font-display); font-size: 16px; font-weight: 500; }
.lyp-checkout-order-items { padding: 16px 22px; display: flex; flex-direction: column; gap: 14px; border-bottom: 1px solid var(--lyp-oat); }
.lyp-checkout-order-item  { display: flex; gap: 12px; align-items: center; }
.lyp-checkout-order-item__img { width: 56px; height: 70px; border-radius: var(--lyp-radius-sm); overflow: hidden; background: var(--lyp-sage-light); flex-shrink: 0; position: relative; }
.lyp-checkout-order-item__img img { width: 100%; height: 100%; object-fit: cover; }
.lyp-checkout-order-item__qty { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; background: var(--lyp-moss); color: white; font-size: 10px; font-weight: 600; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lyp-checkout-order-item__info  { flex: 1; }
.lyp-checkout-order-item__name  { font-family: var(--lyp-font-display); font-size: 13.5px; font-weight: 500; color: var(--lyp-moss); line-height: 1.25; }
.lyp-checkout-order-item__var   { font-size: 11.5px; color: var(--lyp-moss-mid); margin-top: 2px; }
.lyp-checkout-order-item__price { font-family: var(--lyp-font-display); font-size: 15px; font-weight: 500; color: var(--lyp-moss); }
.lyp-checkout-order-totals { padding: 16px 22px; display: flex; flex-direction: column; gap: 10px; }
.lyp-checkout-order-line  { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--lyp-moss-mid); }
.lyp-checkout-order-line--total { font-family: var(--lyp-font-display); font-size: 18px; font-weight: 500; color: var(--lyp-moss); border-top: 1.5px solid var(--lyp-oat-dark); padding-top: 12px; margin-top: 4px; }
.lyp-checkout-security { background: white; border-radius: var(--lyp-radius-lg); padding: 18px 20px; box-shadow: var(--lyp-shadow-sm); display: flex; flex-direction: column; gap: 10px; }
.lyp-checkout-security__item { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--lyp-moss-mid); }
.lyp-checkout-security__icon { font-size: 16px; }
.lyp-place-order-btn { display: flex; width: 100%; padding: 18px; font-size: 16px; font-weight: 600; justify-content: center; }

/* ================================================================ ORDER CONFIRMATION */
.lyp-thankyou { max-width: 720px; margin: 0 auto; padding-block: clamp(48px,7vw,96px); }
.lyp-thankyou__check { width: 80px; height: 80px; background: var(--lyp-sage-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 28px; animation: lyp-pop 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both; }
@keyframes lyp-pop { from{transform:scale(0.5);opacity:0} to{transform:scale(1);opacity:1} }
.lyp-thankyou__heading { font-family: var(--lyp-font-display); font-size: clamp(28px,4vw,44px); font-weight: 500; color: var(--lyp-moss); margin-bottom: 12px; text-align: center; }
.lyp-thankyou__sub { font-size: 15px; color: var(--lyp-moss-mid); text-align: center; line-height: 1.7; margin-bottom: 36px; }
.lyp-thankyou__detail-card { background: white; border-radius: var(--lyp-radius-xl); padding: 28px 32px; box-shadow: var(--lyp-shadow-sm); margin-bottom: 20px; }
.lyp-thankyou__detail-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--lyp-oat); font-size: 14px; gap: 24px; }
.lyp-thankyou__detail-row:last-child { border-bottom: none; }
.lyp-thankyou__detail-key { color: var(--lyp-moss-mid); font-weight: 500; flex-shrink: 0; }
.lyp-thankyou__detail-val { color: var(--lyp-moss); text-align: right; }
.lyp-thankyou__items { background: white; border-radius: var(--lyp-radius-xl); overflow: hidden; box-shadow: var(--lyp-shadow-sm); margin-bottom: 20px; }
.lyp-thankyou__items-header { padding: 18px 28px; border-bottom: 1px solid var(--lyp-oat); font-family: var(--lyp-font-display); font-size: 16px; font-weight: 500; }
.lyp-thankyou__item { display: flex; align-items: center; gap: 14px; padding: 16px 28px; border-bottom: 1px solid var(--lyp-oat); }
.lyp-thankyou__item:last-child { border-bottom: none; }
.lyp-thankyou__item-img { width: 60px; height: 72px; border-radius: var(--lyp-radius-sm); overflow: hidden; background: var(--lyp-sage-light); flex-shrink: 0; }
.lyp-thankyou__item-img img { width: 100%; height: 100%; object-fit: cover; }
.lyp-thankyou__item-name  { font-family: var(--lyp-font-display); font-size: 15px; font-weight: 500; color: var(--lyp-moss); flex: 1; }
.lyp-thankyou__item-meta  { font-size: 12px; color: var(--lyp-moss-light); margin-top: 3px; }
.lyp-thankyou__item-price { font-family: var(--lyp-font-display); font-size: 16px; font-weight: 500; color: var(--lyp-moss); }
.lyp-thankyou__totals { padding: 16px 28px; display: flex; flex-direction: column; gap: 8px; }
.lyp-thankyou__total-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--lyp-moss-mid); }
.lyp-thankyou__total-row--grand { font-family: var(--lyp-font-display); font-size: 20px; font-weight: 600; color: var(--lyp-moss); border-top: 1.5px solid var(--lyp-oat-dark); padding-top: 12px; margin-top: 4px; }
.lyp-thankyou__next-steps { background: var(--lyp-sage-light); border-radius: var(--lyp-radius-xl); padding: 28px 32px; margin-bottom: 28px; }
.lyp-thankyou__next-steps h3 { font-family: var(--lyp-font-display); font-size: 18px; font-weight: 500; color: var(--lyp-sage-dark); margin-bottom: 16px; }
.lyp-thankyou__steps { display: flex; flex-direction: column; gap: 12px; }
.lyp-thankyou__step { display: flex; align-items: flex-start; gap: 14px; }
.lyp-thankyou__step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--lyp-sage); color: white; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.lyp-thankyou__step-text { font-size: 13.5px; color: var(--lyp-moss-mid); line-height: 1.6; }
.lyp-thankyou__step-text strong { color: var(--lyp-moss); }

/* ================================================================ WOO OVERRIDES */
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info { background: var(--lyp-sage-light); border-top-color: var(--lyp-sage); color: var(--lyp-sage-dark); border-radius: var(--lyp-radius-md); padding: 14px 18px; margin-bottom: 20px; }
.woocommerce-notices-wrapper .woocommerce-error { background: #FFF0EE; border-top-color: var(--lyp-error); color: var(--lyp-error); border-radius: var(--lyp-radius-md); padding: 14px 18px; }
.woocommerce-notices-wrapper .woocommerce-message a.button { background: var(--lyp-sage); color: white; padding: 6px 16px; border-radius: var(--lyp-radius-pill); font-size: 13px; float: right; margin-top: -3px; }
.woocommerce-Reviews .woocommerce-Reviews-title { font-family: var(--lyp-font-display); font-size: clamp(18px,2vw,24px); font-weight: 500; margin-bottom: 28px; color: var(--lyp-moss); }
.woocommerce-Reviews .review { padding: 20px 0; border-bottom: 1px solid var(--lyp-oat); }
.woocommerce-Reviews .star-rating { color: var(--lyp-gold); }
.comment-form-rating .stars { display: flex; gap: 4px; }
.comment-form-rating .stars a { color: var(--lyp-oat-dark); font-size: 22px; }
.comment-form-rating .stars.selected a,.comment-form-rating .stars a:hover { color: var(--lyp-gold); }
.woocommerce .quantity .qty { width: 44px; text-align: center; padding: 0; height: 48px; border: none; font-size: 15px; font-weight: 500; }

/* ================================================================ UTILITIES */
.lyp-text-center { text-align: center; }
.lyp-mt-sm  { margin-top: 12px; }
.lyp-mt-md  { margin-top: 24px; }
.lyp-mt-lg  { margin-top: 40px; }
.lyp-mb-sm  { margin-bottom: 12px; }
.lyp-mb-md  { margin-bottom: 24px; }
.lyp-hidden { display: none !important; }

/* ================================================================ RESPONSIVE 960px */
@media (max-width: 960px) {
  .lyp-hero__inner         { grid-template-columns: 1fr; padding-bottom: 48px; }
  .lyp-hero__visual        { order: -1; max-width: 380px; margin: 0 auto; }
  .lyp-categories          { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .lyp-product-grid,.lyp-grid-4 { grid-template-columns: repeat(2,1fr); }
  .lyp-values__grid        { grid-template-columns: repeat(2,1fr); }
  .lyp-testimonials__grid  { grid-template-columns: 1fr 1fr; }
  .lyp-testimonials__grid .lyp-testimonial-card:nth-child(3) { display: none; }
  .lyp-signup__inner       { grid-template-columns: 1fr; gap: 28px; }
  .lyp-footer__grid        { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lyp-single-product      { grid-template-columns: 1fr; }
  .lyp-gallery             { position: static; }
  .lyp-cart-layout         { grid-template-columns: 1fr; }
  .lyp-cart-sidebar        { position: static; }
  .lyp-cart-table__head    { grid-template-columns: 1fr 80px 40px; }
  .lyp-cart-item           { grid-template-columns: 1fr 80px 40px; }
  .lyp-cart-item__price,.lyp-cart-item__subtotal { display: none; }
  .lyp-checkout-layout     { grid-template-columns: 2fr; }
  .lyp-checkout-sidebar    { position: static; order: -1; }
  .lyp-shop-layout         { grid-template-columns: 1fr; }
  .lyp-nav__links          { display: none; }
  .lyp-nav__hamburger      { display: flex; }
  .lyp-mobile-nav          { display: block; }
  .lyp-nav__actions .lyp-btn { display: none; }
}

/* ================================================================ RESPONSIVE 600px */
@media (max-width: 600px) {
  :root { --lyp-pad-x: 18px; --lyp-pad-y: clamp(36px,8vw,56px); }
  .lyp-categories    { grid-template-columns: 1fr; }
  .lyp-cat-card__inner { aspect-ratio: 4/3; }
  .lyp-product-grid,.lyp-grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lyp-product-card__body  { padding: 12px 14px 16px; }
  .lyp-product-card__name  { font-size: 15px; }
  .lyp-product-card__price { font-size: 17px; }
  .lyp-values__grid  { grid-template-columns: 1fr; }
  .lyp-testimonials__grid  { grid-template-columns: 1fr; }
  .lyp-testimonials__grid .lyp-testimonial-card:nth-child(n) { display: flex; }
  .lyp-testimonials__grid .lyp-testimonial-card:nth-child(2) { display: none; }
  .lyp-footer__grid  { grid-template-columns: 1fr; gap: 28px; }
  .lyp-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .lyp-form-row,.lyp-form-row--3 { grid-template-columns: 1fr; }
  .lyp-checkout-step__label { display: none; }
  .lyp-checkout-step.is-active .lyp-checkout-step__label { display: block; }
  .lyp-checkout-steps { gap: 4px; }
  .lyp-logo__tagline { display: none; }
  .lyp-hero__actions .lyp-btn:nth-child(2) { display: none; }
  .lyp-section-header--split { flex-direction: column; align-items: flex-start; gap: 12px; }
  .lyp-mat-stage__float--eco { display: none; }
  .lyp-cart-table__head { display: none; }
  .lyp-cart-item { grid-template-columns: 72px 1fr auto; gap: 10px; }
  .lyp-thankyou__detail-card,.lyp-thankyou__next-steps { padding: 20px; }
  .lyp-thankyou { padding-inline: 0; }
}

/* ================================================================ REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .lyp-mat-stage__blob path { animation: none; }
  .lyp-mat-stage__float,.lyp-marquee__track,.lyp-thankyou__check { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
