/* ============================================================
   MODERN YOGI — Complete Theme Stylesheet
   ============================================================ */

/* ── CUSTOM PROPERTIES ───────────────────────────────────── */
:root {
  --teal:        #2E8B8B;
  --teal-d:      #1F6B6B;
  --teal-l:      #4AADAD;
  --teal-pale:   #D6EEEE;
  --teal-xpale:  #EEF7F7;
  --sage:        #8CB84A;
  --sage-d:      #6E9638;
  --sage-pale:   #EAF4D8;
  --white:       #FFFFFF;
  --warm:        #FAFCFC;
  --off:         #F4F9F9;
  --light:       #E8F0F0;
  --text:        #3D5555;
  --dark:        #1A3030;
  --ink:         #0F2020;
  --success:     #22c55e;
  --error:       #ef4444;
  --fd: 'Playfair Display', Georgia, serif;
  --fb: 'Nunito', system-ui, sans-serif;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-pill: 999px;
  --shadow-sm:   0 2px 8px rgba(46,139,139,.08);
  --shadow:      0 8px 32px rgba(46,139,139,.12);
  --shadow-lg:   0 20px 60px rgba(46,139,139,.16);
  --transition:  .25s cubic-bezier(.16,1,.3,1);
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--fb); background: var(--warm); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--fb); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--fb); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--fd); font-weight: 400; line-height: 1.15; color: var(--dark); }

/* ── LAYOUT ───────────────────────────────────────────────── */
.my-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.my-container-sm { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.my-container-xs { max-width: 640px; margin: 0 auto; padding: 0 40px; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.my-eyebrow { display: inline-block; font-size: .64rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); margin-bottom: 12px; }
.my-h1 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
.my-h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
.my-h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.my-lead { font-size: 1rem; color: var(--text); line-height: 1.85; max-width: 560px; }
em.teal  { color: var(--teal); font-style: italic; }
em.light { color: var(--teal-l); font-style: italic; }

/* ── ANIMATION ────────────────────────────────────────────── */
.fu { opacity: 0; transform: translateY(28px); transition: .65s cubic-bezier(.16,1,.3,1); }
.fu.vis { opacity: 1; transform: none; }
.fu.d1 { transition-delay: .07s; }
.fu.d2 { transition-delay: .14s; }
.fu.d3 { transition-delay: .21s; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.my-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--fb); font-weight: 700; font-size: .85rem;
  padding: 13px 28px; border-radius: var(--radius-pill);
  border: 2px solid transparent; transition: var(--transition);
  cursor: pointer; line-height: 1; white-space: nowrap;
}
.my-btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); box-shadow: 0 6px 22px rgba(46,139,139,.35); }
.my-btn-primary:hover { background: var(--teal-d); border-color: var(--teal-d); transform: translateY(-2px); color: #fff; }
.my-btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.my-btn-outline:hover { background: var(--teal); color: #fff; }
.my-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.my-btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.my-btn-white { background: #fff; color: var(--teal); border-color: #fff; }
.my-btn-white:hover { background: var(--teal-xpale); color: var(--teal); }
.my-btn-wa { background: #25D366; color: #fff; border-color: #25D366; }
.my-btn-wa:hover { background: #1da851; border-color: #1da851; color: #fff; }
.my-btn-sm { padding: 9px 20px; font-size: .78rem; }
.my-btn-lg { padding: 16px 36px; font-size: .95rem; }

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.my-ann {
  background: var(--teal); color: #fff;
  text-align: center; padding: 10px 20px;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  font-family: var(--fb);
}
.my-ann a { color: var(--teal-pale); text-decoration: underline; }

/* ── HEADER ───────────────────────────────────────────────── */
.my-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--light);
  transition: box-shadow .2s;
}
.my-header.scrolled { box-shadow: 0 4px 24px rgba(46,139,139,.1); }
.my-header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 70px;
}
.my-logo { display: flex; align-items: center; gap: 10px; }
.my-logo-mark {
  width: 40px; height: 40px; background: var(--teal);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-style: italic; font-size: 1.15rem; color: #fff; flex-shrink: 0;
}
.my-logo-text { font-weight: 800; font-size: .95rem; color: var(--dark); }
.my-logo-text em { color: var(--teal); font-style: normal; }
.my-nav { display: flex; align-items: center; gap: 4px; }
.my-nav-link {
  font-size: .82rem; font-weight: 600; color: var(--dark);
  padding: 8px 14px; border-radius: 8px; transition: .15s;
}
.my-nav-link:hover, .my-nav-link.current { background: var(--teal-xpale); color: var(--teal); }
.my-nav-actions { display: flex; align-items: center; gap: 8px; }
.my-cart-btn {
  position: relative; display: flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 700; color: var(--dark);
  padding: 8px 14px; border-radius: 8px; transition: .15s;
}
.my-cart-btn:hover { background: var(--teal-xpale); color: var(--teal); }
.my-cart-count {
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--teal); color: #fff; border-radius: 999px;
  font-size: .62rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.my-nav-wa { background: var(--teal); color: #fff; border-radius: var(--radius-pill); padding: 9px 18px; font-size: .8rem; font-weight: 700; transition: .2s; }
.my-nav-wa:hover { background: var(--teal-d); color: #fff; }
.my-menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.my-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: .2s; }

/* ── TICKER ───────────────────────────────────────────────── */
.my-ticker { background: var(--dark); padding: 13px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(46,139,139,.15); }
.my-ticker-track { display: inline-flex; animation: ticker 32s linear infinite; }
.my-ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.my-ticker-item { font-size: .67rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); padding: 0 26px; }
.my-ticker-dot { color: var(--teal); }

/* ── HERO ─────────────────────────────────────────────────── */
.my-hero {
  display: grid; grid-template-columns: 1.1fr .9fr;
  min-height: 92vh; background: var(--ink); position: relative; overflow: hidden;
}
.my-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 25% 60%, rgba(46,139,139,.18) 0%, transparent 55%); pointer-events: none; }
.my-hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px 60px 90px 80px; position: relative; z-index: 2;
}
.my-hero-eyebrow { display: flex; align-items: center; gap: 10px; font-size: .63rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); margin-bottom: 22px; }
.my-hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--sage); flex-shrink: 0; }
.my-hero h1 { font-size: clamp(2.8rem, 4.2vw, 5rem); color: #fff; margin-bottom: 24px; }
.my-hero h1 em { color: var(--teal-l); font-style: italic; }
.my-hero-sub { font-size: .97rem; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.88; max-width: 460px; margin-bottom: 40px; }
.my-hero-sub strong { color: rgba(255,255,255,.88); font-weight: 600; }
.my-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.my-hero-stats { display: flex; gap: 40px; }
.my-hero-stat-num { font-family: var(--fd); font-size: 2rem; color: #fff; line-height: 1; }
.my-hero-stat-num em { color: var(--teal-l); font-style: italic; }
.my-hero-stat-label { font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.4); margin-top: 4px; text-transform: uppercase; letter-spacing: .08em; }
.my-hero-img { background: linear-gradient(145deg,#152a2a,#0a1f1f); display: flex; align-items: center; justify-content: center; padding: 60px; position: relative; overflow: hidden; }
.my-hero-img::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(46,139,139,.1) 0%, transparent 65%); top: -100px; right: -100px; pointer-events: none; }
.my-hero-img-inner { position: relative; z-index: 1; width: 100%; max-width: 380px; }
.my-hero-img-inner img { width: 100%; border-radius: 20px; box-shadow: 0 40px 80px rgba(0,0,0,.4); }
.my-hero-badge { position: absolute; bottom: -16px; left: -16px; background: var(--sage); color: #fff; border-radius: 14px; padding: 14px 20px; font-size: .72rem; font-weight: 700; box-shadow: 0 10px 28px rgba(140,184,74,.4); }
.my-hero-badge span { display: block; font-size: 1.1rem; font-weight: 800; margin-bottom: 2px; }

/* ── SECTION ──────────────────────────────────────────────── */
.my-section { padding: 100px 0; }
.my-section-sm { padding: 72px 0; }
.my-section-lg { padding: 120px 0; }
.my-section-dark { background: var(--ink); }
.my-section-teal { background: var(--teal-xpale); border-top: 1px solid var(--teal-pale); border-bottom: 1px solid var(--teal-pale); }
.my-section-off { background: var(--off); }
.my-section-white { background: #fff; }
.my-section-head { margin-bottom: 56px; }
.my-section-head.center { text-align: center; }

/* ── GRID LAYOUTS ─────────────────────────────────────────── */
.my-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.my-g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.my-g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.my-g-auto3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }

/* ── PRODUCT CARDS ────────────────────────────────────────── */
.my-pcard {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--light); transition: var(--transition);
}
.my-pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal-pale); }
.my-pcard-img { display: block; height: 280px; position: relative; overflow: hidden; background: var(--off); }
.my-pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.my-pcard:hover .my-pcard-img img { transform: scale(1.05); }
.my-pbadge { position: absolute; top: 14px; left: 14px; background: var(--sage); color: #fff; border-radius: var(--radius-pill); padding: 4px 12px; font-size: .6rem; font-weight: 800; }
.my-pswatch { position: absolute; bottom: 14px; left: 14px; width: 22px; height: 22px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.my-pcard-body { padding: 18px 20px 20px; }
.my-pcat { font-size: .6rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin-bottom: 6px; }
.my-pname { display: block; font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; line-height: 1.3; transition: color .15s; }
.my-pname:hover { color: var(--teal); }
.my-pvars { font-size: .72rem; color: var(--text); margin-bottom: 10px; }
.my-pprice { margin-bottom: 14px; }
.my-pprice .woocommerce-Price-amount, .my-pprice .price { font-family: var(--fd); font-size: 1.1rem; color: var(--teal); }
.my-pprice del { color: #aaa; font-size: .85rem; }
.my-pactions { display: flex; gap: 8px; }
.my-btn-cart { flex: 1; display: flex; align-items: center; justify-content: center; padding: 10px 12px; border-radius: var(--radius-pill); background: var(--teal); color: #fff; font-size: .78rem; font-weight: 700; transition: .2s; border: none; cursor: pointer; }
.my-btn-cart:hover { background: var(--teal-d); color: #fff; }
.my-btn-wa { display: flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: var(--radius-pill); background: transparent; color: var(--teal); font-size: .78rem; font-weight: 700; transition: .2s; border: 1.5px solid var(--teal); white-space: nowrap; }
.my-btn-wa:hover { background: var(--teal); color: #fff; }

/* ── FEATURED SPLIT ───────────────────────────────────────── */
.my-feat-img { position: relative; }
.my-feat-img img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-lg); }
.my-feat-badge { position: absolute; top: 24px; left: 24px; background: var(--sage); color: #fff; border-radius: var(--radius-pill); padding: 6px 16px; font-size: .65rem; font-weight: 800; letter-spacing: .1em; }
.my-checklist { list-style: none; margin: 20px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.my-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text); line-height: 1.6; }
.my-checklist li::before { content: '✓'; color: var(--teal); font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.my-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── CATEGORY CARDS ───────────────────────────────────────── */
.my-cat-card { display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--light); background: var(--off); transition: var(--transition); }
.my-cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal-pale); }
.my-cat-img { height: 220px; position: relative; overflow: hidden; }
.my-cat-img img { width: 100%; height: 100%; object-fit: cover; }
.my-cat-body { padding: 20px; }
.my-cat-name { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.my-cat-desc { font-size: .78rem; color: var(--text); line-height: 1.6; margin-bottom: 12px; }
.my-cat-link { font-size: .75rem; font-weight: 700; color: var(--teal); }

/* ── MANIFESTO ────────────────────────────────────────────── */
.my-manifesto-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 60px; }
.my-mq { background: rgba(46,139,139,.08); border: 1px solid rgba(46,139,139,.18); border-radius: var(--radius); padding: 36px; }
.my-mq p { font-family: var(--fd); font-style: italic; font-size: 1.2rem; color: rgba(255,255,255,.85); line-height: 1.55; }
.my-principles { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.my-principle { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: 28px 22px; transition: var(--transition); }
.my-principle:hover { background: rgba(46,139,139,.1); border-color: rgba(46,139,139,.25); transform: translateY(-4px); }
.my-p-num { font-family: var(--fd); font-style: italic; font-size: 1.8rem; color: rgba(46,139,139,.38); line-height: 1; margin-bottom: 12px; }
.my-p-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.my-p-text { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.7; }

/* ── STAT CARDS ───────────────────────────────────────────── */
.my-stat-card { background: #fff; border-radius: var(--radius); padding: 36px 24px; text-align: center; border: 1px solid var(--teal-pale); transition: var(--transition); }
.my-stat-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.my-stat-num { font-family: var(--fd); font-size: 3rem; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.my-stat-title { font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.my-stat-desc { font-size: .78rem; color: var(--text); line-height: 1.6; }

/* ── INITIATIVE ITEMS ─────────────────────────────────────── */
.my-init-item { display: flex; gap: 14px; padding: 16px; background: var(--teal-xpale); border-radius: 12px; border: 1px solid var(--teal-pale); transition: .2s; margin-bottom: 12px; }
.my-init-item:last-child { margin-bottom: 0; }
.my-init-item:hover { border-color: var(--teal); }
.my-init-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; border: 1px solid var(--teal-pale); }
.my-init-title { font-size: .85rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.my-init-text { font-size: .78rem; color: var(--text); line-height: 1.6; }

/* ── TRUST BANNER ─────────────────────────────────────────── */
.my-trust-bar { background: var(--teal-xpale); border-top: 1px solid var(--teal-pale); border-bottom: 1px solid var(--teal-pale); padding: 20px 0; }
.my-trust-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.my-trust-item { display: flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; color: var(--dark); }
.my-trust-icon { font-size: 1rem; }

/* ── NEWSLETTER ───────────────────────────────────────────── */
.my-nl-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.my-nl-input { padding: 13px 22px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08); color: #fff; font-family: var(--fb); font-size: .88rem; width: 300px; outline: none; transition: .2s; }
.my-nl-input::placeholder { color: rgba(255,255,255,.35); }
.my-nl-input:focus { border-color: var(--teal); }

/* ── VARIANT SELECTOR ─────────────────────────────────────── */
.my-variant-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.my-variant-btn { padding: 10px 20px; border-radius: var(--radius-sm); border: 2px solid var(--light); font-size: .82rem; font-weight: 600; color: var(--text); background: #fff; cursor: pointer; transition: .2s; }
.my-variant-btn.active, .my-variant-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-xpale); }
.my-variant-note { margin-top: 10px; padding: 12px 16px; border-radius: var(--radius-sm); background: var(--teal-xpale); border: 1px solid var(--teal-pale); font-size: .8rem; color: var(--teal-d); line-height: 1.65; }
.my-colour-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.my-cswatch { width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; box-shadow: 0 2px 6px rgba(0,0,0,.15); transition: .2s; }
.my-cswatch.active, .my-cswatch:hover { box-shadow: 0 0 0 3px var(--teal); transform: scale(1.1); }

/* ── PRODUCT TABS ─────────────────────────────────────────── */
.my-tabs-nav { display: flex; border-bottom: 2px solid var(--light); margin-bottom: 40px; overflow-x: auto; }
.my-tab-btn { padding: 14px 24px; font-size: .88rem; font-weight: 600; color: var(--text); background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; transition: .2s; white-space: nowrap; }
.my-tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }
.my-tab-btn:hover { color: var(--teal); }
.my-tab-pane { display: none; }
.my-tab-pane.active { display: block; }
.my-tab-pane p { font-size: .93rem; line-height: 1.85; color: var(--text); margin-bottom: 16px; }

/* ── SPEC TABLE ───────────────────────────────────────────── */
.my-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.my-spec-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--light); font-size: .85rem; gap: 16px; }
.my-spec-label { font-weight: 700; color: var(--dark); }
.my-spec-value { color: var(--text); text-align: right; }

/* ── CARE GRID ────────────────────────────────────────────── */
.my-care-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.my-care-card { background: #fff; border-radius: 12px; padding: 24px; text-align: center; border: 1px solid var(--light); }
.my-care-icon { font-size: 2rem; margin-bottom: 10px; }
.my-care-title { font-size: .85rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.my-care-text { font-size: .78rem; color: var(--text); line-height: 1.6; }

/* ── FAQ ──────────────────────────────────────────────────── */
.my-faq-item { border: 1px solid var(--light); border-radius: 12px; overflow: hidden; margin-bottom: 10px; }
.my-faq-q { width: 100%; text-align: left; padding: 16px 20px; background: var(--off); font-size: .88rem; font-weight: 700; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: .15s; }
.my-faq-q:hover { background: var(--teal-xpale); color: var(--teal); }
.my-faq-q::after { content: '+'; font-size: 1.3rem; color: var(--teal); transition: .2s; flex-shrink: 0; }
.my-faq-item.open .my-faq-q::after { content: '−'; }
.my-faq-a { display: none; padding: 16px 20px; font-size: .85rem; color: var(--text); line-height: 1.78; border-top: 1px solid var(--light); }
.my-faq-item.open .my-faq-a { display: block; }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.my-breadcrumb { padding: 18px 0; font-size: .75rem; color: var(--text); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.my-breadcrumb a { color: var(--teal); }
.my-breadcrumb-sep { color: var(--light); }

/* ── SINGLE PRODUCT ───────────────────────────────────────── */
.my-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.my-product-gallery { position: sticky; top: 90px; }
.my-gallery-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 12px; position: relative; }
.my-gallery-main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.my-gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.my-thumb { width: 76px; height: 76px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: .2s; flex-shrink: 0; }
.my-thumb.active { border-color: var(--teal); }
.my-thumb img { width: 100%; height: 100%; object-fit: cover; }
.my-product-info h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; color: var(--dark); }
.my-product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.my-product-price { font-family: var(--fd); font-size: 2.2rem; color: var(--teal); margin-bottom: 20px; }
.my-product-price del { font-size: 1.2rem; color: #aaa; }
.my-product-short-desc { font-size: .92rem; line-height: 1.85; color: var(--text); margin-bottom: 24px; }
.my-product-actions { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.my-enquire-main { width: 100%; padding: 16px; border-radius: var(--radius-pill); background: var(--teal); color: #fff; font-size: .95rem; font-weight: 700; transition: .25s; box-shadow: 0 6px 22px rgba(46,139,139,.35); }
.my-enquire-main:hover { background: var(--teal-d); transform: translateY(-2px); }
.my-enquire-wa { width: 100%; padding: 14px; border-radius: var(--radius-pill); background: #25D366; color: #fff; font-size: .88rem; font-weight: 700; transition: .2s; }
.my-enquire-wa:hover { background: #1da851; }
.my-add-to-cart-main { width: 100%; padding: 15px; border-radius: var(--radius-pill); background: var(--dark); color: #fff; font-size: .92rem; font-weight: 700; transition: .2s; }
.my-add-to-cart-main:hover { background: var(--teal-d); }
.my-trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.my-tb { display: flex; gap: 10px; align-items: flex-start; padding: 14px; background: var(--off); border-radius: 12px; border: 1px solid var(--light); }
.my-tb-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.my-tb-title { font-size: .78rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.my-tb-text { font-size: .7rem; color: var(--text); line-height: 1.5; }

/* ── SHOP ARCHIVE ─────────────────────────────────────────── */
.my-shop-hero { background: var(--ink); padding: 90px 0 80px; text-align: center; position: relative; overflow: hidden; }
.my-shop-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(46,139,139,.15) 0%, transparent 60%); pointer-events: none; }
.my-shop-hero h1 { font-size: clamp(2.5rem, 4vw, 4rem); color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.my-shop-hero h1 em { color: var(--teal-l); font-style: italic; }
.my-shop-hero p { font-size: .95rem; color: rgba(255,255,255,.5); max-width: 560px; margin: 0 auto 36px; line-height: 1.75; position: relative; z-index: 1; }
.my-variant-cards { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.my-vc { flex: 1; min-width: 260px; padding: 20px 24px; border-radius: 14px; }
.my-vc-teal { background: var(--teal-xpale); border: 1px solid var(--teal-pale); }
.my-vc-sage { background: var(--sage-pale); border: 1px solid #c8e098; }
.my-vc-tag { font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; display: block; }
.my-vc-teal .my-vc-tag { color: var(--teal); }
.my-vc-sage .my-vc-tag { color: var(--sage-d); }
.my-vc p { font-size: .85rem; color: var(--text); line-height: 1.65; }

/* ── CART ─────────────────────────────────────────────────── */
.my-cart-hero { background: var(--ink); padding: 60px 0 50px; }
.my-cart-hero h1 { font-size: 2.8rem; color: #fff; }
.my-cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.my-cart-table { background: #fff; border-radius: var(--radius); border: 1px solid var(--light); overflow: hidden; }
.my-cart-table table { width: 100%; border-collapse: collapse; }
.my-cart-table th { background: var(--teal-xpale); padding: 14px 20px; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); text-align: left; border-bottom: 1px solid var(--teal-pale); }
.my-cart-table td { padding: 16px 20px; border-bottom: 1px solid var(--light); vertical-align: middle; }
.my-cart-table tr:last-child td { border-bottom: 0; }
.my-cart-product { display: flex; align-items: center; gap: 14px; }
.my-cart-product img { width: 70px; height: 70px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.my-cart-product-name { font-size: .88rem; font-weight: 700; color: var(--dark); }
.my-cart-product-meta { font-size: .75rem; color: var(--text); margin-top: 3px; }
.my-cart-remove { color: var(--error); font-size: 1.1rem; }
.my-cart-summary { background: #fff; border-radius: var(--radius); border: 1px solid var(--light); padding: 28px; position: sticky; top: 90px; }
.my-cart-summary h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--light); }
.my-cart-totals { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.my-cart-row { display: flex; justify-content: space-between; font-size: .88rem; color: var(--text); }
.my-cart-row.total { font-size: 1.05rem; font-weight: 700; color: var(--dark); padding-top: 12px; border-top: 1px solid var(--light); }
.my-cart-row .amount { font-family: var(--fd); color: var(--teal); }

/* ── CHECKOUT ─────────────────────────────────────────────── */
.my-checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 56px; align-items: start; }
.my-checkout-form h2 { font-size: 1.4rem; color: var(--dark); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--light); }
.my-form-row { margin-bottom: 18px; }
.my-form-row label { display: block; font-size: .8rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.my-form-row label .required { color: var(--error); margin-left: 2px; }
.my-form-input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--light); border-radius: var(--radius-sm); font-family: var(--fb); font-size: .88rem; color: var(--dark); background: #fff; transition: .2s; outline: none; }
.my-form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(46,139,139,.1); }
.my-form-row.half { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.my-form-select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--light); border-radius: var(--radius-sm); font-family: var(--fb); font-size: .88rem; color: var(--dark); background: #fff; cursor: pointer; }
.my-checkout-order { background: #fff; border-radius: var(--radius); border: 1px solid var(--light); padding: 28px; position: sticky; top: 90px; }
.my-checkout-order h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--light); }
.my-order-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--light); }
.my-order-item:last-child { border-bottom: 0; }
.my-order-item img { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.my-order-item-name { font-size: .85rem; font-weight: 700; color: var(--dark); flex: 1; }
.my-order-item-qty { font-size: .75rem; color: var(--text); margin-top: 2px; }
.my-order-item-price { font-family: var(--fd); font-size: 1rem; color: var(--teal); }
.my-payment-methods { margin: 20px 0; }
.my-payment-option { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1.5px solid var(--light); border-radius: var(--radius-sm); margin-bottom: 8px; cursor: pointer; transition: .15s; }
.my-payment-option:hover { border-color: var(--teal); background: var(--teal-xpale); }
.my-payment-option.selected { border-color: var(--teal); background: var(--teal-xpale); }
.my-payment-option input { accent-color: var(--teal); }
.my-payment-label { font-size: .88rem; font-weight: 600; color: var(--dark); }
.my-place-order { width: 100%; padding: 17px; border-radius: var(--radius-pill); background: var(--teal); color: #fff; font-size: 1rem; font-weight: 700; transition: .25s; box-shadow: 0 6px 22px rgba(46,139,139,.35); }
.my-place-order:hover { background: var(--teal-d); transform: translateY(-2px); }

/* ── ACCOUNT ──────────────────────────────────────────────── */
.my-account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.my-account-nav { background: #fff; border-radius: var(--radius); border: 1px solid var(--light); overflow: hidden; position: sticky; top: 90px; }
.my-account-nav-title { padding: 18px 20px; font-size: .64rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); border-bottom: 1px solid var(--light); }
.my-account-nav ul { list-style: none; }
.my-account-nav li a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; font-size: .88rem; font-weight: 600; color: var(--text); transition: .15s; border-bottom: 1px solid var(--light); }
.my-account-nav li:last-child a { border-bottom: 0; }
.my-account-nav li a:hover, .my-account-nav li.is-active a { background: var(--teal-xpale); color: var(--teal); }
.my-account-content { background: #fff; border-radius: var(--radius); border: 1px solid var(--light); padding: 32px; }
.my-account-content h2 { font-size: 1.4rem; color: var(--dark); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--light); }
.my-order-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.my-order-table th { background: var(--teal-xpale); padding: 12px 16px; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); text-align: left; border-bottom: 1px solid var(--teal-pale); }
.my-order-table td { padding: 12px 16px; border-bottom: 1px solid var(--light); color: var(--text); vertical-align: middle; }
.my-order-table tr:last-child td { border-bottom: 0; }
.my-order-status { display: inline-block; padding: 3px 12px; border-radius: var(--radius-pill); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.my-status-processing { background: #fef3c7; color: #92400e; }
.my-status-completed  { background: #d1fae5; color: #065f46; }
.my-status-pending    { background: var(--teal-xpale); color: var(--teal-d); }
.my-status-cancelled  { background: #fee2e2; color: #991b1b; }

/* ── ORDER CONFIRMATION ───────────────────────────────────── */
.my-order-confirmation { background: var(--teal-xpale); border: 1px solid var(--teal-pale); border-radius: var(--radius); padding: 40px; text-align: center; max-width: 700px; margin: 0 auto; }
.my-order-confirmation .my-check { font-size: 4rem; margin-bottom: 16px; }
.my-order-confirmation h2 { color: var(--teal); margin-bottom: 12px; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.my-about-hero { min-height: 80vh; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); overflow: hidden; position: relative; }
.my-about-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 25% 60%, rgba(46,139,139,.15) 0%, transparent 55%); pointer-events: none; }
.my-about-hero-text { display: flex; flex-direction: column; justify-content: center; padding: 90px 60px 90px 80px; position: relative; z-index: 2; }
.my-about-hero-text h1 { font-size: clamp(2.4rem, 4vw, 4.4rem); color: #fff; margin-bottom: 24px; }
.my-pull-quote { border-left: 3px solid var(--teal); padding: 18px 22px; background: var(--teal-xpale); border-radius: 0 12px 12px 0; margin: 24px 0; }
.my-pull-quote p { font-family: var(--fd); font-style: italic; font-size: 1.1rem; color: var(--dark); line-height: 1.55; margin: 0; }
.my-phil-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.my-phil-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 32px 26px; transition: var(--transition); position: relative; overflow: hidden; }
.my-phil-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--teal), var(--sage)); opacity: 0; transition: .3s; }
.my-phil-card:hover { background: rgba(46,139,139,.09); border-color: rgba(46,139,139,.2); transform: translateY(-4px); }
.my-phil-card:hover::before { opacity: 1; }
.my-sanskrit { font-family: var(--fd); font-style: italic; font-size: 2rem; color: rgba(46,139,139,.38); line-height: 1; margin-bottom: 12px; }
.my-phil-title { font-family: var(--fd); font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.my-phil-title em { color: var(--teal-l); font-style: italic; }
.my-phil-text { font-size: .8rem; color: rgba(255,255,255,.48); line-height: 1.72; }
.my-timeline { max-width: 800px; }
.my-t-item { margin-bottom: 44px; padding-left: 28px; border-left: 2px solid var(--teal-pale); position: relative; }
.my-t-item::before { content: ''; position: absolute; left: -7px; top: 8px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--teal); }
.my-t-year { font-family: var(--fd); font-size: .95rem; color: var(--teal); margin-bottom: 5px; }
.my-t-place { display: inline-flex; align-items: center; gap: 5px; background: var(--teal-xpale); border-radius: var(--radius-pill); padding: 3px 10px; font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-d); margin-bottom: 8px; }
.my-t-title { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.my-t-text { font-size: .8rem; color: var(--text); line-height: 1.7; }

/* ── NOTICE BOXES ─────────────────────────────────────────── */
.my-notice { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .88rem; }
.my-notice-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.my-notice-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.my-notice-info    { background: var(--teal-xpale); color: var(--teal-d); border: 1px solid var(--teal-pale); }
.woocommerce-message { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .88rem; background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.woocommerce-error  { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .88rem; background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; list-style: none; }
.woocommerce-info   { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .88rem; background: var(--teal-xpale); color: var(--teal-d); border: 1px solid var(--teal-pale); }

/* ── WOOCOMMERCE GLOBAL OVERRIDES ─────────────────────────── */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: inline-flex !important; align-items: center !important; justify-content: center !important;
  font-family: var(--fb) !important; font-weight: 700 !important; font-size: .88rem !important;
  padding: 12px 26px !important; border-radius: var(--radius-pill) !important;
  background: var(--teal) !important; color: #fff !important; border: none !important;
  transition: var(--transition) !important; cursor: pointer !important; text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(46,139,139,.3) !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce .button.alt:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--teal-d) !important; color: #fff !important;
}
.woocommerce .woocommerce-Price-amount, .woocommerce span.amount { color: var(--teal) !important; font-family: var(--fd) !important; }
.woocommerce span.onsale { background: var(--sage) !important; border-radius: var(--radius-pill) !important; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  border: 1.5px solid var(--light) !important; border-radius: var(--radius-sm) !important;
  font-family: var(--fb) !important; padding: 11px 14px !important;
  transition: .2s !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 3px rgba(46,139,139,.1) !important; outline: none !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block; padding: 10px 16px; border-radius: 8px;
  font-size: .88rem; font-weight: 600; color: var(--text); transition: .15s;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: var(--teal-xpale); color: var(--teal);
}
.woocommerce table.shop_table { border: 1px solid var(--light); border-radius: var(--radius); overflow: hidden; }
.woocommerce table.shop_table th { background: var(--teal-xpale); color: var(--dark); font-family: var(--fb); font-weight: 700; font-size: .78rem; letter-spacing: .06em; }
.woocommerce-order-received .woocommerce-thankyou-order-received { font-family: var(--fd); font-style: italic; font-size: 1.3rem; color: var(--teal); }

/* ── FOOTER ───────────────────────────────────────────────── */
.my-footer { background: var(--ink); padding: 80px 0 0; }
.my-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.05); }
.my-footer-brand p { font-size: .82rem; color: rgba(255,255,255,.3); line-height: 1.82; max-width: 260px; margin: 14px 0; }
.my-footer-tag { font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-l); }
.my-footer-col h4 { font-size: .64rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--teal-l); margin-bottom: 16px; font-family: var(--fb); }
.my-footer-col li { padding: 4px 0; }
.my-footer-col a { font-size: .82rem; color: rgba(255,255,255,.3); transition: .15s; }
.my-footer-col a:hover { color: rgba(255,255,255,.75); }
.my-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; max-width: 1280px; margin: 0 auto; }
.my-footer-bottom p { font-size: .7rem; color: rgba(255,255,255,.18); }
.my-footer-bottom a { color: rgba(255,255,255,.3); }
.my-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 40px; }

/* ── 404 ──────────────────────────────────────────────────── */
.my-404 { text-align: center; padding: 120px 20px; }
.my-404 h1 { font-family: var(--fd); font-size: 7rem; color: var(--teal-pale); line-height: 1; margin-bottom: 20px; }
.my-404 h2 { font-size: 1.6rem; color: var(--dark); margin-bottom: 14px; }
.my-404 p { font-size: .95rem; color: var(--text); margin-bottom: 32px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .my-container, .my-container-sm, .my-container-xs { padding: 0 24px; }
  .my-header-inner { padding: 0 24px; }
  .my-hero { grid-template-columns: 1fr; }
  .my-hero-img { display: none; }
  .my-hero-text { padding: 80px 24px; }
  .my-g2 { grid-template-columns: 1fr; gap: 40px; }
  .my-g4 { grid-template-columns: repeat(2,1fr); }
  .my-g3 { grid-template-columns: repeat(2,1fr); }
  .my-principles { grid-template-columns: repeat(2,1fr); }
  .my-manifesto-quotes { grid-template-columns: 1fr; }
  .my-about-hero { grid-template-columns: 1fr; }
  .my-cart-layout { grid-template-columns: 1fr; }
  .my-checkout-layout { grid-template-columns: 1fr; }
  .my-account-layout { grid-template-columns: 1fr; }
  .my-account-nav { position: static; }
  .my-product-layout { grid-template-columns: 1fr; gap: 40px; }
  .my-product-gallery { position: static; }
  .my-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .my-trust-items { gap: 20px; }
  .my-phil-grid { grid-template-columns: 1fr 1fr; }
  .my-specs { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .my-header-inner { padding: 0 16px; }
  .my-nav, .my-nav-actions .my-nav-wa { display: none; }
  .my-nav.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 20px 16px; border-bottom: 1px solid var(--light); box-shadow: 0 8px 24px rgba(0,0,0,.08); z-index: 300; }
  .my-menu-toggle { display: flex; }
  .my-g4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .my-g3 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .my-principles { grid-template-columns: 1fr; }
  .my-care-grid { grid-template-columns: 1fr 1fr; }
  .my-footer-grid { grid-template-columns: 1fr; }
  .my-footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; padding: 20px 16px; }
  .my-hero-stats { gap: 20px; }
  .my-hero-ctas { flex-direction: column; gap: 10px; }
  .my-trust-badges { grid-template-columns: 1fr; }
  .my-checkout-order { display: none; }
  .my-form-row.half { grid-template-columns: 1fr; }
  .my-phil-grid { grid-template-columns: 1fr; }
  .my-about-hero-text { padding: 60px 16px; }
  .my-section { padding: 72px 0; }
  .my-section-lg { padding: 80px 0; }
}

/* ── ABOUT PAGE RESPONSIVE ─────────────────────────────────── */
@media (max-width:1100px) {
  .my-about-hero-col { padding:60px 40px !important; }
  section[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns:1fr !important;
    gap:40px !important;
  }
  section[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns:repeat(2,1fr) !important;
  }
}
@media (max-width:640px) {
  .my-about-hero-col { padding:48px 16px !important; }
  section[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns:1fr !important;
  }
}

/* ── POLICY / GENERIC PAGES ────────────────────────────────── */
.my-page-content h2 { font-size:1.4rem; color:var(--dark); margin:32px 0 12px; }
.my-page-content h3 { font-size:1.1rem; color:var(--dark); margin:24px 0 10px; }
.my-page-content p  { margin-bottom:16px; }
.my-page-content ul, .my-page-content ol { padding-left:20px; margin-bottom:16px; }
.my-page-content ul li { list-style:disc; margin-bottom:8px; }
.my-page-content a  { color:var(--teal); text-decoration:underline; }
.my-page-content strong { color:var(--dark); }
.my-page-content table { width:100%; border-collapse:collapse; margin-bottom:20px; font-size:.88rem; }
.my-page-content th { background:var(--teal-xpale); padding:10px 14px; font-weight:700; text-align:left; border:1px solid var(--teal-pale); }
.my-page-content td { padding:10px 14px; border:1px solid var(--light); }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════ */

/* Hero */
.my-about-hero {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}
.my-about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 60%, rgba(46,139,139,.15) 0%, transparent 55%);
    pointer-events: none;
}
.my-about-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    position: relative;
    z-index: 1;
}
.my-about-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 60px 90px 80px;
}
.my-about-h1 {
    font-size: clamp(2.2rem, 3.8vw, 4.2rem);
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.12;
}
.my-about-hero-p {
    font-size: .97rem;
    color: rgba(255,255,255,.55);
    line-height: 1.88;
    max-width: 460px;
    margin-bottom: 32px;
}
.my-about-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.my-about-hero-card-wrap {
    background: linear-gradient(145deg,#152a2a,#0a1f1f);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}
.my-about-stat-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 40px;
    max-width: 300px;
    width: 100%;
}
.my-about-stat-eyebrow {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--teal-l, #6fcfcf);
    margin-bottom: 24px;
}
.my-about-stat-row { }
.my-about-stat-num {
    font-family: var(--fd);
    font-style: italic;
    font-size: 2.6rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}
.my-about-stat-label { font-size: .75rem; color: rgba(255,255,255,.45); line-height: 1.55; }

/* Impact card */
.my-about-impact-card {
    background: linear-gradient(135deg, var(--dark), #1a3535);
    border-radius: 20px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: visible;
}
.my-about-impact-num {
    font-family: var(--fd);
    font-size: 5.5rem;
    color: var(--teal-l, #6fcfcf);
    line-height: 1;
    margin-bottom: 10px;
}
.my-about-impact-text {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
    max-width: 230px;
}
.my-about-impact-badge {
    position: absolute;
    right: -28px;
    top: 56px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 12px 36px rgba(46,139,139,.14);
    border: 1px solid var(--teal-pale);
    text-align: center;
}
.my-about-impact-badge-num {
    font-family: var(--fd);
    font-size: 1.9rem;
    color: var(--teal);
    line-height: 1;
}
.my-about-impact-badge-label {
    font-size: .62rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 4px;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Blockquote */
.my-about-quote {
    border-left: 3px solid var(--teal);
    padding: 18px 22px;
    background: var(--teal-xpale);
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    font-family: var(--fd);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.55;
}

/* Philosophy grid */
.my-about-phi-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius);
    padding: 32px 26px;
}
.my-about-phi-sanskrit {
    font-family: var(--fd);
    font-style: italic;
    font-size: 2rem;
    color: rgba(46,139,139,.4);
    line-height: 1;
    margin-bottom: 12px;
}
.my-about-phi-title {
    font-family: var(--fd);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}
.my-about-phi-title em { color: var(--teal-l, #6fcfcf); font-style: normal; }
.my-about-phi-text { font-size: .8rem; color: rgba(255,255,255,.48); line-height: 1.72; }

/* Manifesto quote */
.my-about-manifesto-quote {
    background: rgba(46,139,139,.09);
    border: 1px solid rgba(46,139,139,.18);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    margin-top: 48px;
}
.my-about-manifesto-quote p {
    font-family: var(--fd);
    font-style: italic;
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    color: rgba(255,255,255,.82);
    line-height: 1.65;
    max-width: 800px;
    margin: 0 auto 16px;
}
.my-about-manifesto-quote cite {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal-l, #6fcfcf);
    font-style: normal;
}

/* Timeline */
.my-about-timeline-item {
    margin-bottom: 44px;
    padding-left: 28px;
    border-left: 2px solid var(--teal-pale);
    position: relative;
}
.my-about-timeline-dot {
    position: absolute;
    left: -7px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--teal);
}
.my-about-timeline-year {
    font-family: var(--fd);
    font-size: .95rem;
    color: var(--teal);
    margin-bottom: 5px;
}
.my-about-timeline-place {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--teal-xpale);
    border-radius: 999px;
    padding: 3px 10px;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--teal-d);
    margin-bottom: 8px;
}
.my-about-timeline-title { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.my-about-timeline-text  { font-size: .8rem; color: var(--text); line-height: 1.7; }

/* Initiative items */
.my-about-initiative-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: var(--teal-xpale);
    border-radius: 12px;
    border: 1px solid var(--teal-pale);
    margin-bottom: 12px;
    align-items: flex-start;
}
.my-about-initiative-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--teal-pale);
}
.my-about-initiative-title { font-size: .85rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.my-about-initiative-text  { font-size: .78rem; color: var(--text); line-height: 1.6; }

/* Globe card */
.my-about-globe-card {
    background: linear-gradient(135deg, var(--teal), var(--teal-d));
    border-radius: 20px;
    padding: 52px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.my-about-globe-icon  { font-size: 5rem; margin-bottom: 18px; }
.my-about-globe-title {
    font-family: var(--fd);
    font-style: italic;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 14px;
}
.my-about-globe-text  { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.72; max-width: 270px; margin: 0 auto; }

/* About responsive */
@media (max-width: 900px) {
    .my-about-hero-inner  { grid-template-columns: 1fr !important; min-height: auto; }
    .my-about-hero-text   { padding: 60px 40px; }
    .my-about-hero-card-wrap { padding: 40px; }
    .my-about-two-col     { grid-template-columns: 1fr !important; gap: 40px !important; }
    .my-about-phi-grid    { grid-template-columns: repeat(2,1fr) !important; }
    .my-about-impact-card { height: auto; padding: 36px; }
    .my-about-impact-badge{ position: static; margin: 16px auto 0; display: inline-block; }
}
@media (max-width: 540px) {
    .my-about-hero-text { padding: 48px 20px; }
    .my-about-phi-grid  { grid-template-columns: 1fr !important; }
    .my-about-manifesto-quote { padding: 28px 20px; }
    .my-about-hero-card-wrap { display: none; } /* hide stat card on tiny screens */
}

/* ═══════════════════════════════════════════════════════════════
   GENERIC PAGE TEMPLATE (privacy, terms, shipping, etc.)
═══════════════════════════════════════════════════════════════ */

.my-page-hero {
    background: linear-gradient(135deg, var(--teal-xpale), #fff);
    padding: 48px 0 40px;
    border-bottom: 1px solid var(--light);
}
.my-page-hero-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 16px;
}
.my-page-hero-icon  { font-size: 2.5rem; flex-shrink: 0; }
.my-page-hero-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--dark);
    font-family: var(--fd);
    font-weight: 400;
    margin: 0;
}
.my-page-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}
.my-page-main { min-width: 0; }
.my-page-sidebar { position: sticky; top: 100px; }
.my-page-sidebar-card {
    background: var(--off);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}
.my-page-sidebar-icon  { font-size: 1.8rem; margin-bottom: 10px; }
.my-page-sidebar-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.my-page-sidebar-text  { font-size: .82rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.my-page-sidebar-links { list-style: none; padding: 0; margin: 0; }
.my-page-sidebar-links li { margin-bottom: 10px; }
.my-page-sidebar-links a {
    font-size: .85rem;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    transition: .2s;
}
.my-page-sidebar-links a:hover { color: var(--teal-d); }

@media (max-width: 900px) {
    .my-page-layout { grid-template-columns: 1fr; }
    .my-page-sidebar { position: static; }
}

/* ── FOOTER LOGO (white on dark) ─────────────────────────────── */
.my-footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.88;
    margin-bottom: 14px;
    display: block;
}

/* ── FOOTER 5-COLUMN GRID ────────────────────────────────────── */
.my-footer-top { padding: 64px 0 48px; }
.my-footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0; }
.my-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.my-footer-bottom-inner p { font-size: .75rem; color: rgba(255,255,255,.3); margin: 0; }
.my-footer-bottom-inner a { font-size: .75rem; color: rgba(255,255,255,.3); text-decoration: none; }
.my-footer-bottom-inner a:hover { color: rgba(255,255,255,.6); }

.my-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}
@media (max-width: 1100px) {
    .my-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .my-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .my-footer-grid { grid-template-columns: 1fr 1fr; }
    .my-footer-brand { grid-column: 1 / -1; }
}

/* ── CART TABLE RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
    .my-cart-table thead { display: none; }
    .my-cart-table td { display: block; padding: 8px 0; border: none; }
    .my-cart-table tr { display: block; border-bottom: 1px solid var(--light); padding: 16px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   v7 FIXES
═══════════════════════════════════════════════════════════════ */

/* Footer — text wordmark replacing logo image */
.my-footer-wordmark {
    display: block;
    text-decoration: none;
    margin-bottom: 16px;
}
.my-footer-wordmark-name {
    display: block;
    font-family: var(--fd);
    font-size: 1.6rem;
    color: #fff;
    font-style: italic;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.01em;
}
.my-footer-wordmark-tagline {
    display: block;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal-l, #4AADAD);
    margin-top: 4px;
}

/* Footer social buttons */
.my-footer-social {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 7px 12px;
    font-size: .72rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: .2s;
    white-space: nowrap;
}
.my-footer-social:hover { background: rgba(255,255,255,.12); color: #fff; }
.my-footer-social-wa {
    background: rgba(37,211,102,.1) !important;
    border-color: rgba(37,211,102,.22) !important;
    color: #25D366 !important;
}

/* Footer bottom links */
.my-footer-bottom-inner a {
    font-size: .74rem;
    color: rgba(255,255,255,.28);
    text-decoration: none;
    transition: .15s;
}
.my-footer-bottom-inner a:hover { color: rgba(255,255,255,.6); }

/* ── FIX: Proceed to Checkout button visibility ──────────────── */
/* Was white text on white/light background — force correct colours */
.wc-proceed-to-checkout a.checkout-button,
.wc-proceed-to-checkout .checkout-button,
a.checkout-button {
    display: block !important;
    width: 100% !important;
    padding: 16px !important;
    background: var(--teal) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: .95rem !important;
    font-family: var(--fb) !important;
    text-align: center !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 6px 22px rgba(46,139,139,.32) !important;
    transition: all .25s !important;
    cursor: pointer !important;
    margin-top: 16px !important;
}
.wc-proceed-to-checkout a.checkout-button:hover,
a.checkout-button:hover {
    background: var(--teal-d) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}

/* ── FIX: Cart & Checkout — prevent double page title ──────── */
/* WooCommerce injects its own H1 via the_title on WC pages.
   We render our own title in the template — hide the WC one. */
.is-cart    .my-page-hero ~ .entry-title,
.is-checkout .my-page-hero ~ .entry-title,
.woocommerce-page h1.entry-title { display: none !important; }
/* Also hide the generic page hero icon/title on cart/checkout
   since those templates have their own styled hero */
.is-cart .my-page-hero,
.is-checkout .my-page-hero { display: none !important; }

/* ── FIX: Nav — 6 items need slightly smaller text on medium screens */
@media (max-width: 1180px) {
    .my-nav-link { font-size: .8rem; }
}
@media (max-width: 980px) {
    .my-nav { display: none; }
    .my-nav.open { display: flex; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--dark); padding: 80px 32px 40px; z-index: 999; box-shadow: -8px 0 32px rgba(0,0,0,.3); }
    .my-nav.open .my-nav-link { font-size: 1rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
    .my-menu-toggle { display: flex; }
}

/* ── Product card — single action button only (no Enquire in grid) */
.my-pactions {
    display: flex;
    gap: 0;
}
.my-pactions .my-btn-cart {
    flex: 1;
    width: 100%;
}

/* WC pages passthrough wrapper */
.my-wc-page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px;
}
.my-wc-page-wrap .woocommerce-cart-form,
.my-wc-page-wrap .cart-collaterals { padding: 0; }

/* WC empty notices */
.woocommerce-info, .woocommerce-error, .woocommerce-message {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: .88rem;
    border-left: 4px solid var(--teal);
    background: var(--teal-xpale);
    color: var(--dark);
    list-style: none;
}

/* ═══════════════════════════════════════════════════════════
   v8 — ANNOUNCEMENT BAR REMOVED, LOGO, PRODUCT UI, CHECKOUT
═══════════════════════════════════════════════════════════ */

/* Remove announcement bar completely */
.my-ann { display: none !important; }

/* ── Logo sizing (transparent PNG) */
.my-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* ── Quantity stepper ───────────────────────────────────── */
.my-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--light);
    border-radius: 999px;
    overflow: hidden;
    height: 48px;
    background: #fff;
}
.my-qty-stepper input.qty {
    width: 52px !important;
    height: 100% !important;
    border: none !important;
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: var(--fb) !important;
    color: var(--dark) !important;
    background: transparent !important;
    -moz-appearance: textfield;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    outline: none;
}
.my-qty-stepper input.qty::-webkit-outer-spin-button,
.my-qty-stepper input.qty::-webkit-inner-spin-button { -webkit-appearance: none; }
.my-qty-btn {
    width: 44px;
    height: 100%;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .15s;
    flex-shrink: 0;
}
.my-qty-btn:hover { background: var(--off); }
.my-qty-btn:disabled { opacity: .3; cursor: not-allowed; }

/* ── Variation pill buttons ─────────────────────────────── */
.my-attr-ui { margin-bottom: 22px; }
.my-attr-ui-label {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 10px;
}
.my-attr-ui-label .my-chosen-label {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: .82rem;
    color: var(--teal);
}
.my-pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.my-pill {
    padding: 8px 18px;
    border-radius: 999px;
    border: 2px solid var(--light);
    background: #fff;
    color: var(--dark);
    font-size: .82rem;
    font-weight: 600;
    font-family: var(--fb);
    cursor: pointer;
    transition: all .18s;
}
.my-pill:hover { border-color: var(--teal); color: var(--teal); }
.my-pill.active {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

/* ── Colour swatches ────────────────────────────────────── */
.my-swatch-row { display: flex; flex-wrap: wrap; gap: 10px; }
.my-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all .18s;
    position: relative;
    outline: none;
}
.my-swatch::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: .18s;
}
.my-swatch:hover::after { border-color: var(--teal); }
.my-swatch.active::after { border-color: var(--teal); }
.my-swatch.active { border-color: #fff; box-shadow: 0 0 0 3px var(--teal); }

/* ── Checkout redesign ──────────────────────────────────── */
.my-checkout-hero {
    background: #fff;
    border-bottom: 1px solid var(--light);
    padding: 28px 0;
}
.my-checkout-steps {
    display: flex;
    align-items: center;
    padding: 16px 0;
    gap: 0;
}
.my-checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.my-step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--light);
    color: var(--text);
    font-size: .78rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    transition: .2s;
}
.my-checkout-step.active .my-step-num {
    background: var(--teal); color: #fff;
}
.my-checkout-step.done .my-step-num {
    background: var(--sage); color: #fff;
}
.my-step-label { font-size: .65rem; font-weight: 700; color: var(--text); letter-spacing: .06em; text-transform: uppercase; }
.my-checkout-step.active .my-step-label { color: var(--teal); }
.my-checkout-step-line {
    flex: 1;
    height: 2px;
    background: var(--light);
    margin: 0 8px;
    margin-bottom: 18px;
}
.my-checkout-step-line.done { background: var(--sage); }

.my-checkout-block {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--light);
    padding: 28px;
    margin-bottom: 16px;
}
.my-checkout-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--light);
}
.my-checkout-block-icon { font-size: 1.3rem; }
.my-checkout-block-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 0; }
.my-checkout-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.my-checkout-fields-grid .my-form-row.full { grid-column: 1 / -1; }

/* WC field styling inside checkout */
.my-checkout-block .woocommerce-input-wrapper input,
.my-checkout-block .woocommerce-input-wrapper select,
.my-checkout-block .woocommerce-input-wrapper textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: .9rem;
    font-family: var(--fb);
    color: var(--dark);
    background: var(--off);
    transition: border .2s;
    box-sizing: border-box;
}
.my-checkout-block .woocommerce-input-wrapper input:focus,
.my-checkout-block .woocommerce-input-wrapper select:focus,
.my-checkout-block .woocommerce-input-wrapper textarea:focus {
    border-color: var(--teal);
    background: #fff;
    outline: none;
}
.my-checkout-block label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    display: block;
    letter-spacing: .04em;
}
.my-checkout-toggle {
    display: flex; align-items: center; gap: 10px;
    font-size: .88rem; font-weight: 600; color: var(--dark);
    cursor: pointer; padding: 12px 0;
}

/* Payment options */
.my-payment-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.my-payment-option {
    border: 2px solid var(--light);
    border-radius: 12px;
    padding: 16px 18px;
    transition: .2s;
    cursor: pointer;
}
.my-payment-option:has(input:checked) { border-color: var(--teal); background: var(--teal-xpale); }
.my-payment-label { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.my-payment-name { font-size: .9rem; font-weight: 600; color: var(--dark); }
.my-payment-desc { font-size: .8rem; color: var(--text); margin: 10px 0 0 28px; line-height: 1.6; }

/* Checkout order summary */
.my-checkout-order-inner {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--light);
    padding: 28px;
    position: sticky;
    top: 80px;
}
.my-order-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
}
.my-order-item:last-of-type { border-bottom: none; }

@media (max-width: 860px) {
    .my-checkout-fields-grid { grid-template-columns: 1fr; }
    .my-checkout-order { margin-top: 24px; }
    .my-checkout-order-inner { position: static; }
    .my-checkout-steps { gap: 4px; }
    .my-step-label { display: none; }
}

/* ── Header height adjustment (no announcement bar) */
.my-header { top: 0; }
body.nav-open { overflow: hidden; }

/* ── Footer brand symbols ──────────────────────────────────── */
.my-footer-symbols {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}
.my-footer-symbol {
    font-size: 1.4rem;
    line-height: 1;
    opacity: .8;
}
/* Ashok Chakra rendered as SVG inline via CSS content */
.my-footer-symbol[title="India"] {
    font-size: 1.3rem;
    color: #138808; /* India green */
    font-style: normal;
    font-weight: 900;
}
.my-footer-symbol-sep {
    color: rgba(255,255,255,.2);
    font-size: 1rem;
}

/* ── Footer bottom bar ─────────────────────────────────────── */
.my-footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 16px 0;
}
.my-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.my-footer-bottom-inner p {
    font-size: .74rem;
    color: rgba(255,255,255,.28);
    margin: 0;
}
.my-footer-bottom-inner a {
    font-size: .74rem;
    color: rgba(255,255,255,.28);
    text-decoration: none;
    transition: .15s;
}
.my-footer-bottom-inner a:hover { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════════════════
   v9 — background-image cards (bypass WC lazy loader)
═══════════════════════════════════════════════════════════ */

/* Product card image area as background div */
.my-pcard-img {
    display: block;
    aspect-ratio: 1;
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    overflow: hidden;
    background-color: var(--off); /* fallback while loading */
    text-decoration: none;
}
.my-pcard-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .25s;
}
.my-pcard:hover .my-pcard-img::after { background: rgba(0,0,0,.06); }

/* Hero image area */
.my-hero-img-inner > div { border-radius: 20px; }

/* Shop hero badge pills — always visible on dark bg */
.my-shop-hero .my-trust-item,
.my-shop-hero > .my-container > div > div {
    color: #fff !important;
}

/* my-cat-img as background */
.my-cat-img {
    aspect-ratio: 4/3;
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    overflow: hidden;
    background-color: var(--teal-pale);
}

