/* ============================================================
   Glo Girl — Bold homepage stylesheet
   Scoped under .glogirl so it doesn't conflict with admin UI.
   ============================================================ */

.glogirl {
  --black:#15110F;
  --black-soft:#1F1B18;
  --cream:#F1E8DC;
  --cream-deep:#E5D8C4;
  --rose-deep:#8B2C45;
  --rose-darker:#5F1C2E;
  --terracotta:#C97B5C;
  --terracotta-deep:#A35B40;
  --rose:#EC6490;
  --gold:#B8895A;
  --line:rgba(241,232,220,.15);
}

.glogirl,
.glogirl *,
.glogirl *::before,
.glogirl *::after { box-sizing: border-box; }

html, body { margin:0; padding:0; }
body.glogirl-home {
  background: var(--black, #15110F);
  color: var(--cream, #F1E8DC);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
}

/* Top-of-page padding when admin bar is visible */
body.admin-bar.glogirl-home { padding-top: 32px; }
@media (max-width:782px) {
  body.admin-bar.glogirl-home { padding-top: 46px; }
}

.glogirl h1, .glogirl h2, .glogirl h3, .glogirl h4,
.glogirl h5, .glogirl h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  letter-spacing: -.01em;
  margin: 0;
  /* Parent Bluehost Blueprint theme injects a dark default color on headings via
     its CSS layer. Force inherit so each section's own color rule wins. */
  color: inherit !important;
}
.glogirl p, .glogirl span, .glogirl li, .glogirl a:not(.btn):not(.add) {
  /* Same defensive guard against parent theme color overrides on body text. */
  color: inherit;
}
.glogirl .it {
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.glogirl a { color: inherit; text-decoration: none; }
.glogirl img { display: block; max-width: 100%; height: auto; }
.glogirl .wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.glogirl .sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* ---------- Top strip ---------- */
.glogirl .top-strip {
  background: var(--black-soft);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.glogirl .strip-inner {
  display: flex; gap: 60px;
  justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.glogirl .strip-inner span {
  display: inline-flex; align-items: center; gap: 60px;
}
.glogirl .strip-inner span + span::before {
  content: "·"; color: var(--gold); font-size: 18px;
}

/* ---------- Hamburger button (mobile only) ---------- */
.glogirl .gg-hamburger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 110;
}
.glogirl .gg-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform .25s ease, opacity .15s ease;
}
.glogirl .gg-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.glogirl .gg-hamburger.is-open span:nth-child(2) { opacity: 0; }
.glogirl .gg-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile slide-down menu ---------- */
.glogirl .gg-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.glogirl .gg-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.glogirl .gg-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 24px;
  width: 100%;
  max-width: 380px;
}
.glogirl .gg-mobile-menu-inner a {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--cream);
  padding: 14px 16px;
  text-decoration: none;
  transition: color .15s ease;
  text-align: center;
  display: block;
  width: 100%;
}
.glogirl .gg-mobile-menu-inner a:hover,
.glogirl .gg-mobile-menu-inner a:active { color: var(--rose); }
.glogirl .gg-mobile-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(241,232,220,.25);
  margin: 18px 0 8px;
}

/* Mobile-menu close button (X) — top-right of overlay */
.glogirl .gg-mobile-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 160;
  padding: 0;
}
.glogirl .gg-mobile-close svg { width: 24px; height: 24px; }
.glogirl .gg-mobile-close:hover { color: var(--rose); }

body.gg-no-scroll { overflow: hidden; position: fixed; width: 100%; }

/* ---------- Nav icons (mobile-friendly) ---------- */
/* Account person icon — hidden on desktop, shown on mobile */
.glogirl .nav-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--cream);
  text-decoration: none;
  transition: color .15s ease;
}
.glogirl .nav-icon svg { width: 22px; height: 22px; }
.glogirl .nav-icon:hover { color: var(--rose); }

/* Bag — always visible; switches between text on desktop and icon on mobile */
.glogirl .nav-bag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  transition: color .15s ease;
  position: relative;
}
.glogirl .nav-bag:hover { color: var(--rose); }
.glogirl .nav-bag-text { display: inline; }
.glogirl .nav-bag-icon {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 44px;
  height: 44px;
}
.glogirl .nav-bag-icon svg { width: 22px; height: 22px; }
.glogirl .nav-bag-count {
  position: absolute;
  top: 4px; right: 0;
  background: var(--rose);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Sticky header ---------- */
.glogirl .gg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  /* When scrolled, content slides under — translucent + blur for legibility. */
  background-color: rgba(21, 17, 15, .9);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  transition: padding .2s ease;
}
body.admin-bar .glogirl .gg-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .glogirl .gg-header { top: 46px; }
}

/* ---------- Nav ---------- */
.glogirl .gg-nav {
  position: relative; z-index: 5;
}
.glogirl .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 40px;
  max-width: 1320px; margin: 0 auto;
}
.glogirl .nav-links { display: flex; gap: 36px; font-size: 13px; letter-spacing: .04em; }
.glogirl .nav-links a { padding: 6px 0; color: var(--cream); }
.glogirl .nav-links a:hover { color: var(--rose); }
.glogirl .nav-logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.glogirl .nav-logo img {
  height: 74px;
  width: auto;
  max-width: none;
  /* Logo is already brand pink — no filter needed. */
}
.glogirl .nav-right { display: flex; gap: 24px; font-size: 13px; align-items: center; }

/* ---------- Hero ---------- */
.glogirl .hero {
  position: relative;
  min-height: 88vh;
  display: grid; align-items: center;
  overflow: hidden;
  padding: 40px 0 120px;
}
.glogirl .hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(139,44,69,.45), transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,123,92,.30), transparent 60%);
  pointer-events: none;
}
.glogirl .hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.glogirl .kicker {
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 32px;
  display: inline-flex; align-items: center; gap: 16px;
}
.glogirl .kicker::before {
  content: "";
  width: 48px; height: 1px;
  background: var(--terracotta);
  display: inline-block;
}
.glogirl .kicker-light { color: rgba(241,232,220,.78); }
.glogirl .kicker-light::before { background: rgba(241,232,220,.4); }

.glogirl .hero h1 {
  font-size: clamp(64px, 10vw, 168px);
  line-height: .88;
  margin: 0 0 36px;
  color: var(--cream);
  font-variation-settings: "opsz" 144;
}
.glogirl .hero h1 .it { color: var(--rose); font-weight: 400; }
.glogirl .hero h1 .sub-h {
  display: block;
  font-size: .42em;
  letter-spacing: .02em;
  margin-top: .12em;
  font-weight: 300;
  color: rgba(241,232,220,.85);
}
.glogirl .hero .lede {
  font-size: 19px;
  color: rgba(241,232,220,.75);
  max-width: 520px;
  line-height: 1.55;
  margin: 0 0 44px;
  font-weight: 300;
}

.glogirl .ctas { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.glogirl .btn {
  display: inline-flex; align-items: center; gap: 12px;
  cursor: pointer; border: none;
  font-family: inherit;
  font-weight: 500; font-size: 13px;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 0;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
}
.glogirl .btn-primary { background: var(--rose-deep); color: var(--cream); }
.glogirl .btn-primary:hover { background: var(--rose-darker); }
.glogirl .btn-line { background: transparent; color: var(--cream); border: 1px solid var(--cream); }
.glogirl .btn-line:hover { background: var(--cream); color: var(--black); }
.glogirl .btn-line-dark { border-color: var(--black) !important; color: var(--black) !important; }
.glogirl .btn-line-dark:hover { background: var(--black) !important; color: var(--cream) !important; }
.glogirl .btn .ar { transition: transform .2s ease; display: inline-block; }
.glogirl .btn:hover .ar { transform: translateX(4px); }

.glogirl .hero-meta {
  display: flex; gap: 40px;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.glogirl .hero-meta .m { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(241,232,220,.72); flex: 1; }
.glogirl .hero-meta .m--wide { flex: 2; }
.glogirl .hero-meta .lbl { display: block; }
.glogirl .hero-meta strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--cream);
  font-weight: 300;
  letter-spacing: -.01em;
  margin-top: 8px;
  text-transform: none;
  line-height: 1.1;
}
.glogirl .hero-meta strong em { color: var(--rose); font-style: italic; }

/* Hero visual — real product photo */
.glogirl .hero-visual {
  position: relative;
  aspect-ratio: .85 / 1;
}
.glogirl .hero-photo {
  position: relative;
  margin: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 300px 300px 60px 60px / 400px 400px 60px 60px;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,.7);
  background: radial-gradient(ellipse at 30% 30%, #C97B5C 0%, #8B2C45 50%, #2C0E18 100%);
}
.glogirl .hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  mix-blend-mode: multiply;
  filter: contrast(1.1) saturate(.9) brightness(.95);
}
.glogirl .hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 90%, rgba(15,17,15,.5), transparent 60%);
  pointer-events: none;
}
.glogirl .hero-photo figcaption {
  position: absolute;
  bottom: 22px; left: 24px; right: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 500;
}
.glogirl .hero-photo .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  display: inline-block;
  margin-right: 10px;
}
.glogirl .hero-photo .vol { color: rgba(241,232,220,.7); }
.glogirl .floating-num {
  position: absolute;
  top: -50px; right: -30px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 220px;
  color: rgba(241,232,220,.05);
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
  font-variation-settings: "opsz" 144;
}

/* ---------- Marquee ---------- */
.glogirl .marquee {
  background: var(--cream);
  color: var(--black);
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.glogirl .marquee-inner {
  display: flex; gap: 50px;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 300;
  animation: gg-slide 40s linear infinite;
  font-variation-settings: "opsz" 144;
}
.glogirl .marquee-inner span {
  display: inline-flex; align-items: center; gap: 50px;
  flex-shrink: 0;
}
.glogirl .marquee-inner span + span::before {
  content: "·"; color: var(--rose-deep); font-size: 24px;
}
.glogirl .marquee-inner .it { color: var(--rose-deep); }
@keyframes gg-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections shared ---------- */
.glogirl section { padding: 140px 0; position: relative; }

/* ---------- The Edit (featured) ---------- */
.glogirl .edit { background: var(--cream); color: var(--black); }
.glogirl .edit-grid {
  display: grid; grid-template-columns: .95fr 1.05fr;
  gap: 80px; align-items: center;
}
.glogirl .edit-photo {
  position: relative; margin: 0; aspect-ratio: .85/1;
  overflow: hidden; border-radius: 8px;
  background: radial-gradient(ellipse at 50% 35%, var(--rose-deep) 0%, var(--rose-darker) 100%);
  box-shadow: 0 60px 100px -40px rgba(0,0,0,.3);
}
.glogirl .edit-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.glogirl .edit-tag {
  position: absolute; top: 30px; left: 30px;
  background: var(--black); color: var(--cream);
  padding: 10px 18px;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.glogirl .edit-content .kicker { color: var(--terracotta-deep); }
.glogirl .edit-content .kicker::before { background: var(--terracotta-deep); }
.glogirl .edit-content h2 {
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: .95;
  margin: 0 0 28px;
  color: var(--black);
}
.glogirl .edit-content h2 .it { color: var(--rose-deep); }
.glogirl .edit-content p {
  font-size: 18px;
  color: #4F423B;
  margin: 0 0 18px;
  font-weight: 300;
  line-height: 1.65;
  max-width: 520px;
}
.glogirl .price-row {
  display: flex; align-items: baseline; gap: 14px;
  margin: 32px 0 28px;
}
.glogirl .price-row .now {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  color: var(--rose-deep);
  font-weight: 300;
}
.glogirl .price-row .meta {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7A6962;
  font-weight: 500;
}
.glogirl .spec-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0 32px;
  border-top: 1px solid rgba(0,0,0,.12);
}
.glogirl .spec-grid > div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.glogirl .spec-grid .sl {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #7A6962;
  margin-bottom: 6px;
  display: block;
}
.glogirl .spec-grid .sv {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--black);
  font-weight: 400;
}

/* ---------- Three editions ---------- */
.glogirl .three { background: var(--black); color: var(--cream); }
.glogirl .three-head {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; margin-bottom: 60px; align-items: end;
}
.glogirl .three-head h2 {
  font-size: clamp(48px, 7vw, 120px);
  line-height: .9; margin: 12px 0 0;
}
.glogirl .three-head h2 .it { color: var(--rose); }
.glogirl .three-head .three-intro {
  font-family: 'Fraunces', serif;
  font-size: 20px; line-height: 1.5;
  color: rgba(241,232,220,.7);
  font-weight: 300; max-width: 520px;
}
.glogirl .three-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.glogirl .three-card {
  background: var(--black-soft);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
}
.glogirl .three-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236,100,144,.4);
}
.glogirl .three-photo {
  position: relative; margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 30%, rgba(236,100,144,.2), transparent 70%), #2A2320;
}
.glogirl .three-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.glogirl .three-photo--alt { background: #EAE0D2; }
.glogirl .three-body {
  padding: 32px 28px 36px;
  display: flex; flex-direction: column;
  flex: 1;
}
.glogirl .three-card .num {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 12px;
}
.glogirl .three-card h3 {
  font-size: 38px;
  margin: 0 0 14px;
  line-height: 1;
}
.glogirl .three-card h3 .it { color: var(--rose); }
.glogirl .three-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(241,232,220,.82);
  margin: 0 0 28px;
  flex: 1;
}
.glogirl .three-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.glogirl .three-meta .price {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
}
.glogirl .three-meta .ar {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(241,232,220,.7);
  font-weight: 500;
}
.glogirl .three-meta .ar:hover { color: var(--rose); }

/* ---------- Ingredients ---------- */
.glogirl .ingr { background: var(--black); color: var(--cream); border-top: 1px solid var(--line); }
.glogirl .ingr-head {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; margin-bottom: 80px;
  align-items: end;
}
.glogirl .ingr-head h2 {
  font-size: clamp(56px, 8vw, 140px);
  line-height: .85; margin: 0;
}
.glogirl .ingr-head h2 .it { color: var(--rose); }
.glogirl .ingr-head .ingr-intro {
  font-size: 17px;
  color: rgba(241,232,220,.85);
  line-height: 1.6;
  font-weight: 400;
}
.glogirl .ingr-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 0;
  border-top: 1px solid var(--line);
}
.glogirl .ingr-row {
  display: grid; grid-template-columns: 60px 1fr 200px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: padding-left .2s ease, background .2s ease;
}
.glogirl .ingr-row:hover {
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(236,100,144,.06), transparent);
}
.glogirl .ingr-row .n {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--rose);
  font-weight: 400;
}
.glogirl .ingr-row h3 {
  font-size: 28px;
  margin: 0 0 8px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.05;
}
.glogirl .ingr-row p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(241,232,220,.82);
  line-height: 1.55;
}
.glogirl .ingr-row .pct {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14.5px;
  color: rgba(241,232,220,.62);
  text-align: right;
  letter-spacing: .01em;
}
/* Collapsed by default: hide ingredient rows 7-13 unless expanded */
.glogirl .ingr-list .ingr-row--more { display: none; }
.glogirl .ingr-list.is-expanded .ingr-row--more {
  display: grid;
  animation: gg-fade-in .3s ease;
}
@keyframes gg-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Show More / Show Less toggle */
.glogirl .ingr-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.glogirl .ingr-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid rgba(241,232,220,.3);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 18px 32px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.glogirl .ingr-toggle:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--cream);
}
.glogirl .ingr-toggle .t-open { display: inline-flex; align-items: center; gap: 12px; }
.glogirl .ingr-toggle .t-close { display: none; align-items: center; gap: 12px; }
.glogirl .ingr-list.is-expanded ~ .ingr-toggle-wrap .ingr-toggle .t-open { display: none; }
.glogirl .ingr-list.is-expanded ~ .ingr-toggle-wrap .ingr-toggle .t-close { display: inline-flex; }
.glogirl .ingr-toggle .ar { transition: transform .2s ease; }
.glogirl .ingr-toggle:hover .ar { transform: translateY(2px); }
.glogirl .ingr-list.is-expanded ~ .ingr-toggle-wrap .ingr-toggle:hover .ar { transform: translateY(-2px); }

.glogirl .ingr-bottom {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.glogirl .ingr-bottom .quote {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-style: italic;
  line-height: 1.25;
  font-weight: 300;
  color: var(--cream);
  margin: 0;
}
.glogirl .ingr-bottom .quote::before {
  content: "“";
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 80px;
  color: var(--rose);
  line-height: .5;
  margin-bottom: 14px;
  font-style: normal;
}
.glogirl .ingr-bottom .by {
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(241,232,220,.7);
}

/* ---------- Story ---------- */
.glogirl .story { background: var(--terracotta); color: var(--black); }
.glogirl .story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.glogirl .story-photo {
  position: relative;
  margin: 0;
  aspect-ratio: .85/1;
  overflow: hidden;
  border-radius: 8px;
  background: radial-gradient(ellipse at 30% 30%, #F4D9C9 0%, var(--terracotta) 50%, var(--rose-darker) 100%);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.4);
}
.glogirl .story-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.95);
}
.glogirl .story-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--black); color: var(--cream);
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.glogirl .story-text .kicker { color: var(--rose-darker); }
.glogirl .story-text .kicker::before { background: var(--rose-darker); }
.glogirl .story-text h2 {
  font-size: clamp(48px, 6vw, 96px);
  line-height: .95;
  margin: 0 0 32px;
  color: var(--black);
}
.glogirl .story-text h2 .it { color: var(--rose-darker); }
.glogirl .story-text p {
  font-size: 18px;
  color: #3D2820;
  max-width: 560px;
  margin: 0 0 18px;
  font-weight: 300;
}

/* ---------- Press ---------- */
.glogirl .press {
  background: var(--cream);
  color: var(--black);
  padding: 80px 0;
}
.glogirl .press-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}
.glogirl .press-label {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
}
.glogirl .press-logos {
  display: flex; gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  flex: 1; justify-content: flex-end;
}
.glogirl .press-logo {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  color: #3D2820;
  opacity: .7;
}
.glogirl .press-logo.bold {
  font-style: normal;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 16px;
}

/* ---------- Newsletter ---------- */
.glogirl .news {
  background: var(--rose-deep);
  color: var(--cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.glogirl .news::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,123,92,.4), transparent 60%);
}
.glogirl .news-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative;
}
.glogirl .news h2 {
  font-size: clamp(48px, 6vw, 108px);
  line-height: .92;
  margin: 0;
  font-weight: 300;
}
.glogirl .news h2 .it { color: #F4D9D9; }
.glogirl .news-right p {
  font-size: 18px;
  color: rgba(241,232,220,.85);
  margin: 0 0 32px;
}
.glogirl .news-form {
  display: flex; gap: 8px;
  border-bottom: 1px solid rgba(241,232,220,.4);
  padding-bottom: 12px;
}
.glogirl .news-form input {
  flex: 1;
  background: transparent; border: none; outline: none;
  color: var(--cream);
  font-size: 18px;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  padding: 8px 0;
}
.glogirl .news-form input::placeholder {
  color: rgba(241,232,220,.62);
  font-style: italic;
}
.glogirl .news-form button {
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex; align-items: center; gap: 10px;
}
.glogirl .news-form button:hover { color: #F4D9D9; }
.glogirl .news .fine {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(241,232,220,.72);
  margin-top: 20px;
}

/* Klaviyo subscribe — success / error inline message + subscribed state */
.glogirl .gg-news-msg {
  margin-top: 18px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: .04em;
  border-left: 3px solid var(--rose);
  background: rgba(241,232,220,.06);
  color: var(--cream);
  animation: gg-fade-in .25s ease;
}
.glogirl .gg-news-msg--error {
  border-left-color: #FFB46B;
  background: rgba(255,180,107,.08);
}
.glogirl .news-form button:disabled {
  opacity: .6; cursor: wait;
}
.glogirl .news-form.is-subscribed input,
.glogirl .news-form.is-subscribed button { opacity: .5; pointer-events: none; }
.glogirl .gg-foot .gg-news-msg,
.glogirl .news-right .gg-news-msg {
  background: rgba(241,232,220,.1);
}

/* ---------- Footer ---------- */
.glogirl .gg-foot {
  background: var(--black);
  color: var(--cream);
  padding: 100px 0 32px;
  border-top: 1px solid var(--line);
}
.glogirl .foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 80px;
}
.glogirl .foot-logo img {
  height: 128px;
  margin-bottom: 28px;
  filter: brightness(0) invert(.94);
}
.glogirl .foot-logo h3 {
  font-size: 32px;
  font-weight: 300;
  margin: 0 0 18px;
  line-height: 1.1;
  max-width: 340px;
}
.glogirl .foot-logo h3 .it { color: var(--rose); }
.glogirl .foot-col h4 {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(241,232,220,.72);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin: 0 0 24px;
}
.glogirl .foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.glogirl .foot-col a { font-size: 14px; }
.glogirl .foot-col a:hover { color: var(--rose); }
.glogirl .foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(241,232,220,.68);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .glogirl .hero-grid,
  .glogirl .edit-grid,
  .glogirl .three-head,
  .glogirl .ingr-head,
  .glogirl .story-grid,
  .glogirl .news-grid,
  .glogirl .ingr-bottom {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .glogirl .three-grid { grid-template-columns: 1fr; gap: 18px; }
  .glogirl .ingr-list { grid-template-columns: 1fr; }
  .glogirl .spec-grid { grid-template-columns: 1fr; }
  .glogirl .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .glogirl .nav-links { display: none !important; }
  .glogirl .nav-right-desktop { display: none !important; }
  .glogirl .nav-bag-text { display: none !important; }
  .glogirl .nav-bag-icon { display: inline-flex !important; }
  .glogirl .nav-bag { display: inline-flex; }
  .glogirl .nav-icon { display: inline-flex !important; }
  .glogirl .nav-right { gap: 4px; }
  .glogirl .gg-hamburger { display: flex !important; }
  .glogirl .nav-inner { padding: 14px 16px; }
  /* Logo a hair smaller on mobile so the wordmark doesn't crowd the icons */
  .glogirl .nav-logo img { height: 48px; width: auto !important; }
  /* Hide promo top-strip on mobile — it's too big and noisy */
  .glogirl .top-strip { display: none !important; }
  .glogirl section { padding: 90px 0; }
  .glogirl .hero-meta { flex-wrap: wrap; gap: 24px; }
  .glogirl .top-strip { font-size: 10px; padding: 10px 0; }
  .glogirl .strip-inner { gap: 24px; }
  .glogirl .strip-inner span { gap: 24px; }
  .glogirl .marquee-inner { font-size: 26px; }
  .glogirl .wrap { padding: 0 24px; }
  /* Newsletter form stacks vertically on mobile */
  .glogirl .news-form { flex-direction: column; align-items: stretch; gap: 14px; border-bottom: none; padding-bottom: 0; }
  .glogirl .news-form input { border-bottom: 1px solid rgba(241,232,220,.4); padding: 12px 0; font-size: 16px; }
  .glogirl .news-form button { padding: 16px 24px; background: var(--rose); border-radius: 0; min-height: 48px; justify-content: center; }
  /* Touch target enforcement */
  .glogirl .btn { min-height: 48px; padding: 16px 26px; }
  .glogirl ul.products li.product .button,
  .glogirl ul.products li.product a.add_to_cart_button { min-height: 48px; }
  .glogirl .nav-right a,
  .glogirl .nav-links a { min-height: 44px; display: inline-flex; align-items: center; }
}

/* ============================================================
   Inner page styles (Our Story / Ingredients / Journal)
   ============================================================ */

.glogirl .wrap-narrow {
  max-width: 780px; margin: 0 auto; padding: 0 40px;
}

/* Page hero — uses same dark gradient as homepage hero but shorter */
.glogirl .page-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.glogirl .page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(139,44,69,.35), transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(201,123,92,.22), transparent 60%);
  pointer-events: none;
}
.glogirl .page-hero .wrap { position: relative; z-index: 1; }
.glogirl .page-hero h1 {
  font-size: clamp(56px, 8.5vw, 144px);
  line-height: .9;
  margin: 0 0 28px;
  font-variation-settings: "opsz" 144;
}
.glogirl .page-hero h1 .it { color: var(--rose); }
.glogirl .page-hero .dek {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.4;
  color: rgba(241,232,220,.75);
  max-width: 640px;
  margin: 0;
}

/* Prose section — long-form editorial copy */
.glogirl .prose-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.glogirl .prose-section p {
  font-family: 'Fraunces', serif;
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.55;
  font-weight: 300;
  margin: 0 0 22px;
  color: rgba(241,232,220,.92);
}
.glogirl .prose-section p.lede {
  font-size: clamp(22px, 1.7vw, 26px);
  line-height: 1.45;
  margin-bottom: 30px;
}
.glogirl .prose-section .drop {
  float: left;
  font-family: 'Fraunces', serif;
  font-size: 92px;
  line-height: .8;
  font-weight: 400;
  color: var(--rose);
  padding: 6px 14px 0 0;
  font-variation-settings: "opsz" 144;
}
.glogirl .prose-section h2 {
  font-size: clamp(36px, 3.5vw, 56px);
  line-height: 1;
  margin: 56px 0 20px;
  color: var(--cream);
}
.glogirl .prose-section h2 .it { color: var(--rose); }
.glogirl .prose-section .pullquote {
  margin: 50px 0;
  padding: 28px 0 28px 40px;
  border-left: 3px solid var(--rose);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--cream);
}
.glogirl .prose-section .signature {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--rose);
  margin-top: 48px;
}

/* Full-bleed image feature */
.glogirl .image-feature {
  padding: 100px 0;
  background: var(--black-soft);
  border-bottom: 1px solid var(--line);
}
.glogirl .image-feature figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  box-shadow: 0 60px 100px -40px rgba(0,0,0,.6);
}
.glogirl .image-feature img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.95);
}
.glogirl .image-feature figcaption {
  position: absolute;
  bottom: 22px; left: 24px; right: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  display: flex; align-items: center;
}
.glogirl .image-feature figcaption .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  margin-right: 10px;
  display: inline-block;
}

/* Bottom CTA band */
.glogirl .cta-band {
  background: var(--rose-deep);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.glogirl .cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,123,92,.4), transparent 60%);
}
.glogirl .cta-band .wrap { position: relative; z-index: 1; }
.glogirl .cta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.glogirl .cta-band h2 {
  font-size: clamp(40px, 5vw, 80px);
  line-height: .95;
  margin: 0;
}
.glogirl .cta-band h2 .it { color: #F4D9D9; }
.glogirl .cta-band .kicker { color: rgba(241,232,220,.7); }
.glogirl .cta-band .kicker::before { background: rgba(241,232,220,.5); }
.glogirl .cta-band .cta-right p {
  font-size: 17px;
  color: rgba(241,232,220,.85);
  margin: 0 0 24px;
}

/* Ingredients deep-dive list */
.glogirl .ingr-deep {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.glogirl .ingr-deep-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.glogirl .ingr-deep-row:last-child { border-bottom: 1px solid var(--line); }
.glogirl .ingr-deep-row .idr-side {
  display: flex; flex-direction: column;
  gap: 12px;
}
.glogirl .ingr-deep-row .idr-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 64px;
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.glogirl .ingr-deep-row .idr-role {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(241,232,220,.72);
  font-weight: 600;
}
.glogirl .ingr-deep-row h3 {
  font-size: 40px;
  margin: 0 0 8px;
  line-height: 1;
  font-weight: 500;
  color: var(--cream);
}
.glogirl .ingr-deep-row .idr-inci {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(241,232,220,.72);
  margin-bottom: 22px;
}
.glogirl .ingr-deep-row p {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(241,232,220,.92);
  margin: 0;
  max-width: 720px;
}

/* Journal — populated state */
.glogirl .journal-grid-section { padding: 100px 0; border-bottom: 1px solid var(--line); }
.glogirl .journal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}
.glogirl .journal-card { display: flex; flex-direction: column; }
.glogirl .journal-thumb {
  display: block; aspect-ratio: 4/3;
  overflow: hidden; border-radius: 6px;
  margin-bottom: 20px;
}
.glogirl .journal-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.glogirl .journal-card:hover .journal-thumb img { transform: scale(1.04); }
.glogirl .journal-meta {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(241,232,220,.7);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
.glogirl .journal-card h2 {
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 14px;
}
.glogirl .journal-card h2 a:hover { color: var(--rose); }
.glogirl .journal-card p {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(241,232,220,.72);
  margin: 0 0 14px;
}
.glogirl .journal-read {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
}

/* Journal — empty state */
.glogirl .journal-empty {
  padding: 120px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.glogirl .journal-empty .empty-title {
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1;
  margin: 0 0 28px;
}
.glogirl .journal-empty .empty-title .it { color: var(--rose); }
.glogirl .journal-empty p {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(241,232,220,.75);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 20px;
}
.glogirl .journal-empty .empty-cta {
  display: inline-flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

/* ============================================================
   WooCommerce overrides — Shop, Product, Cart, Checkout, Account
   ============================================================ */

.glogirl .page-hero--woo { padding: 80px 0 60px; }

.glogirl .woo-main {
  background: var(--black);
  color: var(--cream);
  padding: 60px 0 120px;
  border-bottom: 1px solid var(--line);
}

/* Notices */
.glogirl .woocommerce-message,
.glogirl .woocommerce-info,
.glogirl .woocommerce-error,
.glogirl .woocommerce-notice {
  background: var(--black-soft);
  border-left: 4px solid var(--rose);
  color: var(--cream);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.glogirl .woocommerce-message .button,
.glogirl .woocommerce-info .button {
  background: transparent !important;
  color: var(--rose) !important;
  border: 1px solid var(--rose) !important;
  padding: 10px 18px !important;
  font-size: 11px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  font-family: 'Inter', sans-serif !important;
  border-radius: 0 !important;
}

/* Result count + sorting */
.glogirl .woocommerce-result-count {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(241,232,220,.78);
  font-weight: 600;
}
.glogirl .woocommerce-ordering select {
  background: var(--black-soft);
  color: var(--cream);
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* Breadcrumbs */
.glogirl .woocommerce-breadcrumb {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(241,232,220,.72);
  margin-bottom: 32px;
}
.glogirl .woocommerce-breadcrumb a { color: var(--cream); }
.glogirl .woocommerce-breadcrumb a:hover { color: var(--rose); }

/* Product grid */
.glogirl ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px 28px !important;
  margin: 40px 0 60px !important;
  padding: 0 !important;
  list-style: none !important;
}
.glogirl ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  text-align: left !important;
  background: var(--black-soft);
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  overflow: hidden;
}
.glogirl ul.products li.product:hover {
  transform: translateY(-6px);
  border-color: rgba(236,100,144,.4);
}
.glogirl ul.products li.product > a.woocommerce-LoopProduct-link {
  display: block !important;
  text-decoration: none !important;
}
.glogirl ul.products li.product img,
.glogirl ul.products li.product .attachment-woocommerce_thumbnail {
  margin: 0 !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  background: #2A2320;
  display: block !important;
}
.glogirl ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Fraunces', serif !important;
  font-size: 28px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  color: var(--cream) !important;
  padding: 24px 24px 8px !important;
  margin: 0 !important;
}
.glogirl ul.products li.product .price {
  font-family: 'Fraunces', serif !important;
  font-size: 22px !important;
  color: var(--rose) !important;
  padding: 0 24px 18px !important;
  display: block !important;
  font-weight: 400 !important;
}
.glogirl ul.products li.product .price del { color: rgba(241,232,220,.4); margin-right: 8px; }
.glogirl ul.products li.product .price ins { background: transparent !important; text-decoration: none; }
.glogirl ul.products li.product .button,
.glogirl ul.products li.product a.add_to_cart_button {
  display: block !important;
  margin: 0 24px 24px !important;
  background: var(--rose-deep) !important;
  color: var(--cream) !important;
  padding: 14px 22px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  border-radius: 0 !important;
  border: none !important;
  text-align: center !important;
  text-decoration: none !important;
  position: relative !important;
  float: none !important;
  top: auto !important;
  right: auto !important;
  width: auto !important;
}
.glogirl ul.products li.product .button:hover,
.glogirl ul.products li.product a.add_to_cart_button:hover {
  background: var(--rose-darker) !important;
}
.glogirl ul.products li.product .added_to_cart {
  display: none !important;
}
/* WC sometimes wraps the title + price block; make sure it stretches */
.glogirl ul.products li.product .woocommerce-loop-product__link + .price,
.glogirl ul.products li.product .price {
  padding: 0 24px 18px !important;
}

/* Single product page */
.glogirl .product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-top: 40px;
}
/* WC fades the gallery in via JS; force visible so it never gets stuck at opacity:0 */
.glogirl .woocommerce-product-gallery,
.glogirl .woocommerce-product-gallery__wrapper,
.glogirl .woocommerce-product-gallery__image {
  opacity: 1 !important;
  visibility: visible !important;
}
.glogirl .woocommerce-product-gallery__image > a,
.glogirl .woocommerce-product-gallery__image img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
}
@media (max-width: 880px) {
  .glogirl .product { grid-template-columns: 1fr; gap: 40px; }
  .glogirl ul.products { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 560px) {
  .glogirl ul.products { grid-template-columns: 1fr !important; }
}
.glogirl .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.glogirl .woocommerce-product-gallery__image {
  background: var(--black-soft);
  border-radius: 8px;
  overflow: hidden;
}
.glogirl .woocommerce-product-gallery__image img {
  border-radius: 8px;
}
.glogirl .product .entry-summary {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.glogirl .product .product_title {
  font-family: 'Fraunces', serif !important;
  font-size: clamp(40px, 4.5vw, 64px) !important;
  font-weight: 300 !important;
  line-height: .95 !important;
  margin: 0 0 24px !important;
  color: var(--cream) !important;
  font-variation-settings: "opsz" 144;
}
.glogirl .product .woocommerce-product-details__short-description,
.glogirl .product .woocommerce-product-details__short-description p {
  font-family: 'Fraunces', serif !important;
  font-size: 19px !important;
  font-weight: 300 !important;
  line-height: 1.55 !important;
  color: rgba(241,232,220,.85) !important;
  margin: 0 0 24px !important;
}
.glogirl .product .price {
  font-family: 'Fraunces', serif !important;
  font-size: 44px !important;
  color: var(--rose) !important;
  font-weight: 300 !important;
  margin: 24px 0 32px !important;
}
.glogirl .product form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 28px 0 36px !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 !important;
}
.glogirl .product form.cart .quantity input.qty {
  background: var(--black-soft) !important;
  border: 1px solid var(--line) !important;
  color: var(--cream) !important;
  padding: 16px 14px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  width: 72px !important;
  text-align: center !important;
}
.glogirl .product form.cart .single_add_to_cart_button,
.glogirl .product .button {
  background: var(--rose-deep) !important;
  color: var(--cream) !important;
  padding: 18px 32px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  border-radius: 0 !important;
  border: none !important;
  transition: background .2s ease !important;
}
.glogirl .product form.cart .single_add_to_cart_button:hover,
.glogirl .product .button:hover {
  background: var(--rose-darker) !important;
}
.glogirl .product .product_meta {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(241,232,220,.72);
  margin-top: 28px;
}
.glogirl .product .product_meta > span { display: block; padding: 4px 0; }
.glogirl .product .product_meta a { color: var(--cream); }

/* Tabs */
.glogirl .woocommerce-tabs {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.glogirl .woocommerce-tabs ul.tabs.wc-tabs {
  border-bottom: 1px solid var(--line) !important;
  padding: 0 !important;
  margin: 0 0 32px !important;
  display: flex;
  gap: 8px;
}
.glogirl .woocommerce-tabs ul.tabs.wc-tabs::before,
.glogirl .woocommerce-tabs ul.tabs.wc-tabs::after { display: none !important; }
.glogirl .woocommerce-tabs ul.tabs.wc-tabs li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.glogirl .woocommerce-tabs ul.tabs.wc-tabs li a {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: .24em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: rgba(241,232,220,.72) !important;
  padding: 14px 22px !important;
  display: block;
  text-shadow: none !important;
}
.glogirl .woocommerce-tabs ul.tabs.wc-tabs li.active a,
.glogirl .woocommerce-tabs ul.tabs.wc-tabs li a:hover {
  color: var(--rose) !important;
  border-bottom: 2px solid var(--rose);
}
.glogirl .woocommerce-Tabs-panel {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(241,232,220,.85);
}
.glogirl .woocommerce-Tabs-panel h2,
.glogirl .woocommerce-Tabs-panel h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  margin: 24px 0 14px;
  color: var(--cream);
}
.glogirl .woocommerce-Tabs-panel p { margin: 0 0 16px; }
.glogirl .woocommerce-Tabs-panel ul li { font-size: 17px; padding: 4px 0; }
.glogirl .woocommerce-Tabs-panel em { color: rgba(241,232,220,.82); }
.glogirl .woocommerce-Tabs-panel strong { color: var(--cream); font-weight: 500; }

/* Related products */
.glogirl .related,
.glogirl .upsells.products {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.glogirl .related > h2,
.glogirl .upsells > h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  margin: 0 0 36px;
  color: var(--cream);
}

/* Cart / Checkout / Account — simpler dark mode pass */
.glogirl .woocommerce table.shop_table {
  background: var(--black-soft);
  border-color: var(--line) !important;
  color: var(--cream);
}
.glogirl .woocommerce table.shop_table th,
.glogirl .woocommerce table.shop_table td {
  border-color: var(--line) !important;
  padding: 16px !important;
}
.glogirl .woocommerce table.shop_table th {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(241,232,220,.7);
}
.glogirl .woocommerce-cart-form .product-name a {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--cream);
}
.glogirl .woocommerce form .form-row input.input-text,
.glogirl .woocommerce form .form-row textarea,
.glogirl .woocommerce form .form-row select {
  background: var(--black-soft);
  color: var(--cream);
  border: 1px solid var(--line);
  padding: 14px;
  font-family: 'Inter', sans-serif;
}
.glogirl .woocommerce form .form-row label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(241,232,220,.7);
}
/* My Account page — layout, nav, content, login/register forms */
.glogirl .woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
.glogirl .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.glogirl .woocommerce-MyAccount-navigation ul li {
  margin: 0;
  padding: 0;
}
.glogirl .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color .15s ease;
}
.glogirl .woocommerce-MyAccount-navigation ul li.is-active a,
.glogirl .woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--rose);
}
.glogirl .woocommerce-MyAccount-content {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--cream);
}
.glogirl .woocommerce-MyAccount-content p { margin: 0 0 16px; }
.glogirl .woocommerce-MyAccount-content a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.glogirl .woocommerce-MyAccount-content h2,
.glogirl .woocommerce-MyAccount-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  margin: 32px 0 14px;
  letter-spacing: -.01em;
}

/* Login / Register columns when logged out */
.glogirl .u-columns,
.glogirl .woocommerce-account .woocommerce > .u-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  margin-top: 0 !important;
}
.glogirl .u-column1,
.glogirl .u-column2,
.glogirl .col-1,
.glogirl .col-2 {
  background: var(--black-soft);
  border: 1px solid var(--line);
  padding: 36px 32px;
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.glogirl .u-column1 h2,
.glogirl .u-column2 h2,
.glogirl .col-1 h2,
.glogirl .col-2 h2 {
  font-family: 'Fraunces', serif !important;
  font-size: 32px !important;
  font-weight: 300 !important;
  color: var(--cream) !important;
  margin: 0 0 24px !important;
  letter-spacing: -.01em !important;
}
.glogirl .woocommerce form.login,
.glogirl .woocommerce form.register,
.glogirl .woocommerce form.lost_reset_password,
.glogirl .woocommerce-EditAccountForm {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.glogirl .woocommerce form .form-row label {
  display: block !important;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  color: rgba(241,232,220,.75) !important;
}
.glogirl .woocommerce form .form-row input.input-text,
.glogirl .woocommerce form .form-row textarea {
  background: var(--black) !important;
  color: var(--cream) !important;
  border: 1px solid var(--line) !important;
  padding: 14px 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  border-radius: 0 !important;
  width: 100% !important;
}
.glogirl .woocommerce form .form-row input.input-text:focus {
  outline: none;
  border-color: var(--rose) !important;
}
.glogirl .woocommerce-form-login__rememberme {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(241,232,220,.8);
  margin: 14px 0;
}
.glogirl .woocommerce-form-login__submit,
.glogirl .woocommerce-form-register__submit,
.glogirl .woocommerce-Button {
  background: var(--rose-deep) !important;
  color: var(--cream) !important;
  padding: 16px 28px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  border-radius: 0 !important;
  border: none !important;
  cursor: pointer;
  transition: background .2s ease !important;
  min-height: 48px;
}
.glogirl .woocommerce-form-login__submit:hover,
.glogirl .woocommerce-form-register__submit:hover,
.glogirl .woocommerce-Button:hover {
  background: var(--rose-darker) !important;
}
.glogirl .lost_password a {
  color: var(--rose) !important;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .glogirl .woocommerce-account .woocommerce { grid-template-columns: 1fr; gap: 32px; }
  .glogirl .u-columns,
  .glogirl .woocommerce-account .woocommerce > .u-columns { grid-template-columns: 1fr !important; gap: 24px !important; }
}

/* Inner-page responsive */
@media (max-width: 900px) {
  .glogirl .cta-grid,
  .glogirl .ingr-deep-row,
  .glogirl .journal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .glogirl .ingr-deep-row { padding: 30px 0; }
  .glogirl .ingr-deep-row .idr-num { font-size: 48px; }
}

@media (max-width: 560px) {
  .glogirl .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .glogirl .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .glogirl .press-inner { justify-content: center; text-align: center; }
  .glogirl .press-logos { justify-content: center; gap: 28px; }
  .glogirl .ctas { gap: 12px; flex-direction: column; align-items: stretch; }
  .glogirl .ctas .btn { width: 100%; justify-content: center; }
  .glogirl .btn { padding: 14px 22px; font-size: 12px; min-height: 48px; }
  .glogirl .nav-logo img { height: 42px; width: auto !important; }
  .glogirl .floating-num { font-size: 140px; top: -30px; right: -10px; }
  /* Hero text scales down on small phones */
  .glogirl .hero h1 { font-size: clamp(48px, 12vw, 80px); }
  .glogirl .hero .lede { font-size: 17px; }
  .glogirl .wrap { padding: 0 18px; }
  .glogirl .hero { padding: 24px 0 80px; }
  .glogirl section { padding: 70px 0; }
  /* Hero meta spec strip — single column at small phones */
  .glogirl .hero-meta { flex-direction: column; gap: 16px; }
  .glogirl .hero-meta .m { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
  .glogirl .hero-meta .m:last-child { border-bottom: none; padding-bottom: 0; }
  .glogirl .hero-meta strong { font-size: 22px; }
  /* Marquee smaller */
  .glogirl .marquee-inner { font-size: 22px; gap: 30px; }
  .glogirl .marquee-inner span { gap: 30px; }
  /* Top strip can wrap */
  .glogirl .top-strip { padding: 8px 16px; }
  .glogirl .strip-inner { gap: 14px; }
  .glogirl .strip-inner span { gap: 14px; }
  /* Product page tabs — allow wrap */
  .glogirl .woocommerce-tabs ul.tabs.wc-tabs { flex-wrap: wrap !important; }
  .glogirl .woocommerce-tabs ul.tabs.wc-tabs li a { padding: 12px 14px !important; font-size: 10px !important; }
  /* WC product page on mobile */
  .glogirl .product { gap: 32px !important; }
  /* Ingredient deep page — smaller numerals */
  .glogirl .ingr-deep-row .idr-num { font-size: 40px; }
  .glogirl .ingr-deep-row h3 { font-size: 30px; }
  /* Three editions card padding */
  .glogirl .three-body { padding: 24px 22px 28px; }
  .glogirl .three-card h3 { font-size: 32px; }
}
