/* =============================================================
   GGG MAIN STYLESHEET
   All styles for Go Green Gadgets child theme.
   BEM naming: .ggg-block__element--modifier
   Variables defined in :root — edit here to change site-wide.
============================================================= */

/* ── CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  --ggg-green:        #1A7A4A;
  --ggg-green-light:  #22A05B;
  --ggg-green-bright: #2DCB72;
  --ggg-green-pale:   #E8F7EE;
  --ggg-green-dark:   #0F4D2E;
  --ggg-black:        #0D0D0D;
  --ggg-white:        #FFFFFF;
  --ggg-grey-1:       #F5F6F4;
  --ggg-grey-2:       #E2E8E4;
  --ggg-grey-3:       #6B7280;
  --ggg-grey-4:       #374151;
  --ggg-gold:         #FCD34D;
  --ggg-red:          #EF4444;
  --ggg-royal-red:    #CC0000;

  --ggg-font:         'Cabin', sans-serif;

  --ggg-radius-sm:    8px;
  --ggg-radius-md:    12px;
  --ggg-radius-lg:    16px;
  --ggg-radius-xl:    20px;
  --ggg-radius-full:  9999px;

  --ggg-shadow-sm:    0 1px 4px rgba(0,0,0,0.08);
  --ggg-shadow-md:    0 4px 16px rgba(0,0,0,0.12);
  --ggg-shadow-lg:    0 8px 32px rgba(0,0,0,0.18);

  --ggg-transition:   0.22s ease;

  --ggg-max-w:        560px;
  --ggg-pad-x:        20px;
  --ggg-pad-x-lg:     40px;

  /* Loading animation */
  --ggg-skeleton-bg: linear-gradient(90deg, #e8eae5 25%, #d4d8d2 50%, #e8eae5 75%);
}

/* ── RESET / BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

.ggg-body {
  font-family: var(--ggg-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ggg-black);
  background: var(--ggg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--ggg-green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes ggg-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ggg-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.4); }
}

@keyframes ggg-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ggg-fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ggg-slide-in {
  from { opacity: 0; max-height: 0; }
  to   { opacity: 1; max-height: 600px; }
}

@keyframes ggg-spin {
  to { transform: rotate(360deg); }
}

@keyframes ggg-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-4px); opacity: 1; }
}

@keyframes ggg-skeleton {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ggg-ticker__track { animation: none; }
}

/* ── TICKER ─────────────────────────────────────────────── */
.ggg-ticker {
  background: var(--ggg-green);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ggg-ticker__track {
  display: flex;
  white-space: nowrap;
  animation: ggg-ticker 32s linear infinite;
  will-change: transform;
}
.ggg-ticker__item {
  display: inline-block;
  color: var(--ggg-white);
  font-size: 13px;
  font-weight: 600;
  padding: 0 32px;
  line-height: 38px;
}

/* ── NAV ─────────────────────────────────────────────────── */
.ggg-nav {
  background: var(--ggg-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--ggg-pad-x);
  height: 56px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.ggg-nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.ggg-nav__logo-img { width: 28px; height: 28px; object-fit: contain; }
.ggg-nav__logo-icon { font-size: 22px; line-height: 1; }
.ggg-nav__logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--ggg-white);
}
.ggg-nav__logo-green { color: var(--ggg-green-bright); }

.ggg-nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ggg-nav__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--ggg-white);
}
.ggg-nav__star-icons { color: var(--ggg-gold); font-size: 13px; letter-spacing: 1px; }
.ggg-nav__rating { font-weight: 600; font-size: 12px; }

@media (max-width: 380px) {
  .ggg-nav__rating { display: none; }
  .ggg-nav__logo-text { font-size: 13px; }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.ggg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--ggg-font);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--ggg-radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ggg-transition), transform 0.12s ease, box-shadow var(--ggg-transition);
  line-height: 1.2;
  white-space: nowrap;
}
.ggg-btn:active { transform: scale(0.97); }
.ggg-btn:focus-visible {
  outline: 3px solid var(--ggg-green-bright);
  outline-offset: 2px;
}

.ggg-btn--nav {
  background: var(--ggg-green);
  color: var(--ggg-white);
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--ggg-radius-sm);
}
.ggg-btn--nav:hover { background: var(--ggg-green-light); color: var(--ggg-white); text-decoration: none; }

.ggg-btn--primary {
  background: var(--ggg-green);
  color: var(--ggg-white);
  padding: 16px 24px;
  font-size: 17px;
  border-radius: var(--ggg-radius-md);
  box-shadow: 0 4px 14px rgba(26,122,74,0.35);
}
.ggg-btn--primary:hover { background: var(--ggg-green-light); box-shadow: 0 6px 20px rgba(26,122,74,0.45); color: var(--ggg-white); text-decoration: none; }

.ggg-btn--dark {
  background: var(--ggg-black);
  color: var(--ggg-white);
  padding: 12px 20px;
  font-size: 14px;
  border-radius: var(--ggg-radius-sm);
}
.ggg-btn--dark:hover { background: #1a1a1a; color: var(--ggg-white); text-decoration: none; }

.ggg-btn--send {
  background: var(--ggg-green);
  color: var(--ggg-white);
  padding: 9px 16px;
  font-size: 13px;
  border-radius: var(--ggg-radius-sm);
}

.ggg-btn--full { width: 100%; }
.ggg-btn--lg { padding: 18px 32px; font-size: 18px; }

.ggg-btn:disabled, .ggg-btn[disabled], .ggg-btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── HERO ─────────────────────────────────────────────────── */
.ggg-hero {
  background: linear-gradient(175deg, #071510 0%, var(--ggg-green-dark) 55%, var(--ggg-green) 100%);
  padding: 32px var(--ggg-pad-x) 0;
  position: relative;
  overflow: hidden;
}
.ggg-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(45,203,114,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.ggg-hero__content { text-align: center; padding-bottom: 24px; position: relative; z-index: 1; }

.ggg-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--ggg-radius-full);
  padding: 5px 12px;
  margin-bottom: 16px;
  animation: ggg-fade-in 0.6s ease both;
}
.ggg-hero__label-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ggg-green-bright);
  animation: ggg-pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.ggg-hero__h1 {
  font-size: clamp(26px, 8vw, 42px);
  font-weight: 800;
  color: var(--ggg-white);
  line-height: 1.15;
  margin-bottom: 14px;
  animation: ggg-fade-in-up 0.7s ease 0.1s both;
}

.ggg-hero__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.ggg-hero__pills {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  animation: ggg-fade-in-up 0.7s ease 0.2s both;
}
.ggg-hero__pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--ggg-radius-full);
  color: var(--ggg-white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
}

/* ── INFLUENCER STRIP ─────────────────────────────────────── */
.ggg-influencer-strip {
  background: rgba(45,203,114,0.15);
  border: 1px solid var(--ggg-green-bright);
  border-radius: var(--ggg-radius-sm);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ggg-green-bright);
  text-align: center;
  margin-bottom: 14px;
  animation: ggg-fade-in 0.5s ease both;
}
.ggg-influencer-strip[hidden] { display: none; }

/* ── QUOTE CARD ───────────────────────────────────────────── */
.ggg-quote-card {
  background: var(--ggg-white);
  border-radius: var(--ggg-radius-xl);
  padding: 20px;
  margin: 0 auto;
  max-width: var(--ggg-max-w);
  box-shadow: var(--ggg-shadow-lg);
  position: relative;
  z-index: 2;
  animation: ggg-fade-in-up 0.7s ease 0.3s both;
}

.ggg-quote-card__counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ggg-grey-3);
  background: var(--ggg-grey-1);
  border-radius: var(--ggg-radius-sm);
  padding: 7px 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.ggg-quote-card__counter strong { color: var(--ggg-black); font-weight: 700; }
.ggg-quote-card__counter-sep { color: var(--ggg-grey-2); }

/* ── QUOTE TOOL STEPS ─────────────────────────────────────── */
.ggg-qt__step { margin-bottom: 16px; }
.ggg-qt__label { font-size: 14px; font-weight: 700; color: var(--ggg-black); margin-bottom: 10px; }

/* Device tiles */
.ggg-qt__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ggg-qt__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--ggg-grey-1);
  border: 2px solid var(--ggg-grey-2);
  border-radius: var(--ggg-radius-md);
  padding: 12px 8px;
  cursor: pointer;
  transition: border-color var(--ggg-transition), background var(--ggg-transition), transform 0.1s ease;
  font-family: var(--ggg-font);
}
.ggg-qt__tile:hover { border-color: var(--ggg-green); background: var(--ggg-green-pale); }
.ggg-qt__tile[aria-pressed="true"] {
  border-color: var(--ggg-green);
  background: var(--ggg-green-pale);
  transform: scale(0.98);
}
.ggg-qt__tile:focus-visible { outline: 3px solid var(--ggg-green-bright); outline-offset: 2px; }
.ggg-qt__tile-icon { font-size: 24px; }
.ggg-qt__tile-label { font-size: 14px; font-weight: 700; color: var(--ggg-black); }
.ggg-qt__tile-sub   { font-size: 11px; color: var(--ggg-grey-3); }

/* Model select */
.ggg-qt__select-wrap { position: relative; }
.ggg-qt__select {
  width: 100%;
  appearance: none;
  background: var(--ggg-grey-1);
  border: 2px solid var(--ggg-grey-2);
  border-radius: var(--ggg-radius-sm);
  padding: 12px 40px 12px 14px;
  font-family: var(--ggg-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--ggg-black);
  cursor: pointer;
  transition: border-color var(--ggg-transition);
}
.ggg-qt__select:focus { border-color: var(--ggg-green); outline: none; }
.ggg-qt__select-wrap::after {
  content: '';
  position: absolute;
  right: 14px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px;
  border-right: 2px solid var(--ggg-grey-3);
  border-bottom: 2px solid var(--ggg-grey-3);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

/* Condition pills */
.ggg-qt__pills {
  display: flex;
  gap: 8px;
}
.ggg-qt__pill {
  flex: 1;
  padding: 10px 4px;
  border: 2px solid var(--ggg-grey-2);
  border-radius: var(--ggg-radius-sm);
  background: var(--ggg-grey-1);
  font-family: var(--ggg-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--ggg-black);
  cursor: pointer;
  transition: all var(--ggg-transition);
  text-align: center;
}
.ggg-qt__pill:hover { border-color: var(--ggg-green); background: var(--ggg-green-pale); }
.ggg-qt__pill[aria-pressed="true"] { border-color: var(--ggg-green); background: var(--ggg-green); color: var(--ggg-white); }
.ggg-qt__pill:focus-visible { outline: 3px solid var(--ggg-green-bright); outline-offset: 2px; }

/* Condition detail box */
.ggg-qt__condition-detail {
  background: var(--ggg-grey-1);
  border-radius: var(--ggg-radius-sm);
  padding: 12px 14px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--ggg-grey-4);
  line-height: 1.6;
  animation: ggg-fade-in 0.3s ease both;
}
.ggg-qt__condition-detail[hidden] { display: none; }
.ggg-qt__read-more {
  background: none;
  border: none;
  color: var(--ggg-green);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0 0;
  font-family: var(--ggg-font);
}

/* Add another device */
.ggg-qt__add-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ggg-green);
  text-decoration: underline;
  cursor: pointer;
}
.ggg-qt__add-link:hover { color: var(--ggg-green-dark); }
.ggg-qt__add-device[hidden] { display: none; }

/* CTA wrap */
.ggg-qt__cta-wrap { margin-top: 16px; }
.ggg-qt__footer-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 11px;
  color: var(--ggg-grey-3);
}

/* ── ACTIVITY FEED ───────────────────────────────────────── */
.ggg-activity {
  padding: 40px var(--ggg-pad-x);
  background: var(--ggg-grey-1);
  margin-top: -2px;
}
.ggg-activity__title {
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--ggg-black);
}
.ggg-activity__feed {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
.ggg-activity-card {
  background: var(--ggg-white);
  border-radius: var(--ggg-radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--ggg-shadow-sm);
  animation: ggg-fade-in 0.4s ease both;
}
.ggg-activity-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ggg-green-bright);
  flex-shrink: 0;
}
.ggg-activity-card__text { font-size: 13px; color: var(--ggg-grey-4); line-height: 1.4; }
.ggg-activity-card__amount { font-size: 14px; font-weight: 800; color: var(--ggg-green); margin-left: auto; white-space: nowrap; }
.ggg-activity-card__time { font-size: 11px; color: var(--ggg-grey-3); }

/* Skeleton loader */
.ggg-skeleton {
  background: var(--ggg-skeleton-bg);
  background-size: 800px 100%;
  animation: ggg-skeleton 1.4s ease-in-out infinite;
  border-radius: var(--ggg-radius-sm);
}

/* ── REVIEWS ─────────────────────────────────────────────── */
.ggg-reviews {
  padding: 40px var(--ggg-pad-x);
  background: var(--ggg-white);
  text-align: center;
}
.ggg-reviews__title {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 800;
  color: var(--ggg-black);
  margin-bottom: 14px;
}
.ggg-reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ggg-grey-1);
  border-radius: var(--ggg-radius-full);
  padding: 6px 16px;
  margin-bottom: 24px;
}
.ggg-reviews__g-logo {
  font-size: 16px;
  font-weight: 900;
  color: #4285F4;
  font-family: 'Arial', sans-serif;
}
.ggg-reviews__rating { font-size: 16px; font-weight: 800; color: var(--ggg-black); }
.ggg-reviews__stars  { color: var(--ggg-gold); font-size: 14px; }
.ggg-reviews__count  { font-size: 13px; color: var(--ggg-grey-3); }

.ggg-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.ggg-review-card {
  background: var(--ggg-grey-1);
  border-radius: var(--ggg-radius-md);
  padding: 16px;
}
.ggg-review-card__stars { color: var(--ggg-gold); font-size: 13px; margin-bottom: 6px; }
.ggg-star--filled { color: var(--ggg-gold); }
.ggg-star { color: var(--ggg-grey-2); }
.ggg-review-card__text  { font-size: 13px; color: var(--ggg-grey-4); font-style: italic; line-height: 1.6; margin-bottom: 8px; }
.ggg-review-card__author { font-size: 11px; font-weight: 700; color: var(--ggg-grey-3); }
.ggg-review-card__date  { font-weight: 400; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.ggg-how {
  background: var(--ggg-green-dark);
  padding: 40px var(--ggg-pad-x);
  text-align: center;
}
.ggg-how__title { font-size: 22px; font-weight: 800; color: var(--ggg-white); margin-bottom: 24px; }
.ggg-how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.ggg-how__step { text-align: center; }
.ggg-how__step-icon { font-size: 32px; margin-bottom: 8px; }
.ggg-how__step-title { font-size: 15px; font-weight: 800; color: var(--ggg-white); margin-bottom: 6px; }
.ggg-how__step-desc  { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ── STATS BAR ───────────────────────────────────────────── */
.ggg-stats {
  display: flex;
  align-items: stretch;
  background: var(--ggg-black);
  padding: 20px var(--ggg-pad-x);
  overflow-x: auto;
  gap: 0;
}
.ggg-stats__item { text-align: center; flex: 1; min-width: 100px; padding: 0 12px; }
.ggg-stats__value { font-size: 18px; font-weight: 800; color: var(--ggg-green-bright); margin-bottom: 3px; }
.ggg-stats__label { font-size: 11px; color: rgba(255,255,255,0.5); }
.ggg-stats__div   { width: 1px; background: rgba(255,255,255,0.1); flex-shrink: 0; margin: 8px 0; }

/* ── ACCORDION / FAQ ─────────────────────────────────────── */
.ggg-faq-section { padding: 40px var(--ggg-pad-x); }
.ggg-faq-section__title { font-size: 20px; font-weight: 800; margin-bottom: 16px; text-align: center; }

.ggg-accordion { max-width: var(--ggg-max-w); margin: 0 auto; }
.ggg-accordion__item {
  border-bottom: 1px solid var(--ggg-grey-2);
  margin-bottom: 0;
}
.ggg-accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 14px 0;
  font-family: var(--ggg-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--ggg-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.4;
}
.ggg-accordion__trigger:focus-visible { outline: 3px solid var(--ggg-green-bright); outline-offset: 2px; border-radius: 4px; }
.ggg-accordion__icon {
  font-size: 18px;
  font-weight: 400;
  color: var(--ggg-green);
  transition: transform var(--ggg-transition);
  flex-shrink: 0;
}
.ggg-accordion__trigger[aria-expanded="true"] .ggg-accordion__icon { transform: rotate(45deg); }
.ggg-accordion__panel { padding: 0 0 14px; font-size: 14px; color: var(--ggg-grey-4); line-height: 1.7; }
.ggg-accordion__panel[hidden] { display: none; }

/* ── CHATBOT ─────────────────────────────────────────────── */
.ggg-chat-section { padding: 40px var(--ggg-pad-x); background: var(--ggg-grey-1); }
.ggg-chat, .ggg-chat--inline {
  background: var(--ggg-white);
  border: 1.5px solid var(--ggg-grey-2);
  border-radius: var(--ggg-radius-lg);
  overflow: hidden;
  max-width: var(--ggg-max-w);
  margin: 0 auto;
}
.ggg-chat__header {
  background: var(--ggg-black);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ggg-chat__avatar {
  width: 36px; height: 36px;
  background: var(--ggg-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ggg-chat__title { font-size: 14px; font-weight: 700; color: var(--ggg-white); }
.ggg-chat__sub   { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 1px; }
.ggg-chat__messages {
  padding: 14px;
  min-height: 80px;
  max-height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--ggg-grey-1);
}
.ggg-chat__msg {
  max-width: 85%;
  padding: 10px 13px;
  border-radius: var(--ggg-radius-md);
  font-size: 13px;
  line-height: 1.5;
  animation: ggg-fade-in 0.2s ease both;
}
.ggg-chat__msg--bot  { background: var(--ggg-white); color: var(--ggg-black); border-bottom-left-radius: 4px; align-self: flex-start; box-shadow: var(--ggg-shadow-sm); }
.ggg-chat__msg--user { background: var(--ggg-green); color: var(--ggg-white); border-bottom-right-radius: 4px; align-self: flex-end; }
.ggg-chat__quick {
  display: flex;
  gap: 6px;
  padding: 8px 12px 12px;
  flex-wrap: wrap;
  background: var(--ggg-white);
  border-top: 1px solid var(--ggg-grey-2);
}
.ggg-chat__quick-btn {
  background: var(--ggg-grey-1);
  border: 1px solid var(--ggg-grey-2);
  border-radius: var(--ggg-radius-full);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ggg-black);
  cursor: pointer;
  font-family: var(--ggg-font);
  transition: background var(--ggg-transition), border-color var(--ggg-transition);
}
.ggg-chat__quick-btn:hover { background: var(--ggg-green-pale); border-color: var(--ggg-green); color: var(--ggg-green); }
.ggg-chat__input-row {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--ggg-grey-2);
  background: var(--ggg-white);
}
.ggg-chat__input {
  flex: 1;
  border: 1.5px solid var(--ggg-grey-2);
  border-radius: var(--ggg-radius-sm);
  padding: 9px 12px;
  font-size: 14px;
  font-family: var(--ggg-font);
  color: var(--ggg-black);
  outline: none;
  transition: border-color var(--ggg-transition);
}
.ggg-chat__input:focus { border-color: var(--ggg-green); }
.ggg-chat__escalate {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--ggg-grey-3);
  background: var(--ggg-white);
  border-top: 1px solid var(--ggg-grey-2);
}
.ggg-chat__escalate a { color: var(--ggg-green); font-weight: 700; }

/* Typing indicator */
.ggg-chat__typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 13px;
  background: var(--ggg-white);
  border-radius: var(--ggg-radius-md);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: var(--ggg-shadow-sm);
}
.ggg-chat__typing span {
  width: 6px; height: 6px;
  background: var(--ggg-grey-3);
  border-radius: 50%;
  animation: ggg-bounce 1.2s ease-in-out infinite;
}
.ggg-chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.ggg-chat__typing span:nth-child(3) { animation-delay: 0.4s; }

/* Floating chat bubble */
.ggg-chat-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
}
.ggg-chat-float__btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ggg-green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(26,122,74,0.45);
  transition: transform var(--ggg-transition), box-shadow var(--ggg-transition);
}
.ggg-chat-float__btn:hover { transform: scale(1.06); box-shadow: 0 6px 24px rgba(26,122,74,0.55); }
.ggg-chat-float__panel {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 300px;
  max-height: 420px;
  border-radius: var(--ggg-radius-lg);
  overflow: hidden;
  box-shadow: var(--ggg-shadow-lg);
  animation: ggg-fade-in-up 0.22s ease both;
}
.ggg-chat-float__panel[hidden] { display: none; }

/* ── FOOTER CTA ──────────────────────────────────────────── */
.ggg-footer-cta {
  background: var(--ggg-green-dark);
  padding: 48px var(--ggg-pad-x);
  text-align: center;
}
.ggg-footer-cta__title { font-size: clamp(20px, 5vw, 28px); font-weight: 800; color: var(--ggg-white); margin-bottom: 10px; }
.ggg-footer-cta__sub   { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 24px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.ggg-footer {
  background: var(--ggg-black);
  padding: 32px var(--ggg-pad-x) 20px;
}
.ggg-footer__inner { max-width: 900px; margin: 0 auto; }
.ggg-footer__tagline { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.ggg-footer__nav { display: flex; gap: 32px; margin-bottom: 24px; flex-wrap: wrap; }
.ggg-footer__col {}
.ggg-footer__col-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.ggg-footer__list { list-style: none; }
.ggg-footer__list li { margin-bottom: 6px; }
.ggg-footer__list a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color var(--ggg-transition); }
.ggg-footer__list a:hover { color: var(--ggg-white); text-decoration: none; }
.ggg-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
.ggg-footer__copy  { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.ggg-footer__legal { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ── QUOTE PAGE ──────────────────────────────────────────── */
.ggg-quote-page { max-width: var(--ggg-max-w); margin: 0 auto; padding: 0 var(--ggg-pad-x) 60px; }

/* Progress bar */
.ggg-progress-bar {
  height: 4px;
  background: var(--ggg-grey-2);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
}
.ggg-progress-bar__fill {
  height: 100%;
  background: var(--ggg-green);
  transition: width 0.6s ease;
  border-radius: 0;
}

/* Price reveal */
.ggg-price-reveal {
  text-align: center;
  padding: 28px var(--ggg-pad-x) 20px;
  background: linear-gradient(175deg, #071510 0%, var(--ggg-green-dark) 70%);
  margin: 0 calc(-1 * var(--ggg-pad-x));
}
.ggg-price-reveal__amount {
  font-size: clamp(60px, 18vw, 96px);
  font-weight: 900;
  color: var(--ggg-green-bright);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 10px;
}
.ggg-price-reveal__triggers { margin-bottom: 16px; }
.ggg-price-reveal__triggers[hidden] { display: none; }
.ggg-price-reveal__ebay { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.ggg-price-reveal__ebay strong { color: var(--ggg-white); }
.ggg-price-reveal__social { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.ggg-price-reveal__value  { font-size: 14px; color: var(--ggg-green-bright); font-weight: 600; }
.ggg-price-reveal__momentum { font-size: 14px; color: rgba(255,255,255,0.8); padding: 0 var(--ggg-pad-x); }
.ggg-price-reveal__momentum[hidden] { display: none; }
.ggg-price-reveal__momentum strong { color: var(--ggg-white); }

/* Form */
.ggg-order-form { padding: 24px 0; }
.ggg-form {}
.ggg-form__group { border: none; padding: 0; margin-bottom: 20px; }
.ggg-form__legend {
  font-size: 16px;
  font-weight: 800;
  color: var(--ggg-black);
  margin-bottom: 14px;
  display: block;
  width: 100%;
}
.ggg-form__legend-note {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--ggg-grey-3);
  margin-top: 3px;
}
.ggg-form__group--address {
  animation: ggg-fade-in 0.35s ease both;
}
.ggg-form__group--address[hidden] { display: none; }
.ggg-form__field { margin-bottom: 14px; }
.ggg-form__label { display: block; font-size: 13px; font-weight: 700; color: var(--ggg-black); margin-bottom: 5px; }
.ggg-form__input {
  width: 100%;
  border: 2px solid var(--ggg-grey-2);
  border-radius: var(--ggg-radius-sm);
  padding: 12px 14px;
  font-family: var(--ggg-font);
  font-size: 15px;
  color: var(--ggg-black);
  background: var(--ggg-white);
  transition: border-color var(--ggg-transition);
  outline: none;
}
.ggg-form__input:focus { border-color: var(--ggg-green); }
.ggg-form__input::placeholder { color: var(--ggg-grey-3); }
.ggg-form__error {
  display: block;
  font-size: 12px;
  color: var(--ggg-red);
  margin-top: 4px;
  font-weight: 600;
}
.ggg-form__error[hidden] { display: none; }

/* Payment options */
.ggg-form__payment { margin-top: 20px; }
.ggg-form__payment[hidden], .ggg-form__payment[aria-hidden="true"] { display: none; }
.ggg-form__payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.ggg-payment-btn {
  padding: 10px 6px;
  border: 2px solid var(--ggg-grey-2);
  border-radius: var(--ggg-radius-sm);
  background: var(--ggg-grey-1);
  font-family: var(--ggg-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--ggg-black);
  cursor: pointer;
  text-align: center;
  transition: all var(--ggg-transition);
}
.ggg-payment-btn:hover { border-color: var(--ggg-green); background: var(--ggg-green-pale); }
.ggg-payment-btn[aria-pressed="true"] { border-color: var(--ggg-green); background: var(--ggg-green); color: var(--ggg-white); }
.ggg-form__payment-detail[hidden] { display: none; }
.ggg-form__payment-later-msg { font-size: 13px; color: var(--ggg-grey-3); background: var(--ggg-grey-1); border-radius: var(--ggg-radius-sm); padding: 12px 14px; }

/* Reassurance */
.ggg-form__reassurance {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ggg-grey-3);
  margin-bottom: 16px;
}

/* Submit */
.ggg-form__submit-wrap { margin-bottom: 14px; }
.ggg-btn--submit { position: relative; }
.ggg-form__trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-size: 11px;
  color: var(--ggg-grey-3);
  margin-bottom: 12px;
}
.ggg-form__terms { font-size: 12px; color: var(--ggg-grey-3); text-align: center; }
.ggg-form__terms a { color: var(--ggg-green); font-weight: 600; }

/* Spinner */
.ggg-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--ggg-white);
  border-radius: 50%;
  animation: ggg-spin 0.7s linear infinite;
  vertical-align: middle;
}

/* ── CONFIRMATION PAGE ──────────────────────────────────── */
.ggg-confirmation { max-width: var(--ggg-max-w); margin: 0 auto; padding-bottom: 60px; }

.ggg-conf-hero {
  background: linear-gradient(175deg, #071510 0%, var(--ggg-green-dark) 60%, var(--ggg-green) 100%);
  padding: 36px var(--ggg-pad-x) 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ggg-conf-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(45,203,114,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.ggg-conf-hero__amount {
  font-size: clamp(80px, 20vw, 120px);
  font-weight: 900;
  color: var(--ggg-green-bright);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
  position: relative; z-index: 1;
  animation: ggg-fade-in-up 0.6s ease both;
}
.ggg-conf-hero__tagline {
  font-size: clamp(15px, 4vw, 19px);
  font-weight: 700;
  color: var(--ggg-white);
  margin-bottom: 22px;
  line-height: 1.4;
  position: relative; z-index: 1;
}
.ggg-conf-hero__urgency {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--ggg-radius-md);
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  text-align: left;
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 500;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.ggg-conf-hero__stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  border-radius: var(--ggg-radius-md);
  padding: 14px 8px;
  max-width: 500px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.ggg-conf-hero__stat { text-align: center; flex: 1; padding: 0 4px; }
.ggg-conf-hero__stat-num   { font-size: 13px; font-weight: 800; color: var(--ggg-green-bright); margin-bottom: 3px; line-height: 1.2; }
.ggg-conf-hero__stat-label { font-size: 10px; color: rgba(255,255,255,0.45); line-height: 1.3; }
.ggg-conf-hero__stat-div   { width: 1px; background: rgba(255,255,255,0.1); flex-shrink: 0; margin: 0 4px; }

.ggg-conf-card {
  background: var(--ggg-white);
  border-radius: var(--ggg-radius-xl) var(--ggg-radius-xl) 0 0;
  padding: 24px var(--ggg-pad-x) 32px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.12);
}

.ggg-conf-order-id {
  text-align: center;
  background: var(--ggg-grey-1);
  border-radius: var(--ggg-radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}
.ggg-conf-order-id__label { display: block; font-size: 12px; color: var(--ggg-grey-3); margin-bottom: 4px; }
.ggg-conf-order-id__value { display: block; font-size: 22px; font-weight: 800; letter-spacing: 0.04em; color: var(--ggg-black); }

.ggg-conf-trust {
  background: var(--ggg-green-pale);
  border: 1.5px solid rgba(26,122,74,0.2);
  border-radius: var(--ggg-radius-lg);
  padding: 18px;
  margin-bottom: 20px;
}
.ggg-conf-trust__header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 20px; }
.ggg-conf-trust__title  { font-size: 15px; font-weight: 800; color: var(--ggg-green-dark); }
.ggg-conf-trust__sub    { font-size: 13px; color: var(--ggg-green); }

.ggg-conf-review { background: var(--ggg-white); border-radius: var(--ggg-radius-sm); padding: 12px 14px; margin-bottom: 8px; }
.ggg-conf-review:last-child { margin-bottom: 0; }
.ggg-conf-review__stars  { color: var(--ggg-gold); font-size: 12px; margin-bottom: 4px; }
.ggg-conf-review__text   { font-size: 13px; color: var(--ggg-grey-4); font-style: italic; line-height: 1.5; margin-bottom: 6px; display: block; }
.ggg-conf-review__author { font-size: 11px; font-weight: 700; color: var(--ggg-grey-3); font-style: normal; }

.ggg-conf-qr { border: 1.5px solid var(--ggg-grey-2); border-radius: var(--ggg-radius-lg); padding: 20px; margin-bottom: 20px; text-align: center; }
.ggg-conf-qr__urgent { background: var(--ggg-black); color: var(--ggg-white); font-size: 13px; font-weight: 700; padding: 10px 14px; border-radius: var(--ggg-radius-sm); margin-bottom: 14px; }
.ggg-conf-qr__title  { font-size: 16px; font-weight: 800; margin-bottom: 4px; color: var(--ggg-black); }
.ggg-conf-qr__sub    { font-size: 13px; color: var(--ggg-grey-3); margin-bottom: 16px; }
.ggg-conf-qr__img-wrap { margin: 0 auto 16px; max-width: 180px; }
.ggg-conf-qr__placeholder {
  width: 160px; height: 160px;
  background: var(--ggg-grey-1);
  border: 2px dashed var(--ggg-grey-2);
  border-radius: var(--ggg-radius-md);
  margin: 0 auto 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ggg-grey-3);
  gap: 6px;
}
.ggg-conf-qr__placeholder span:first-child { font-size: 36px; }
.ggg-conf-qr__note { font-size: 12px; color: var(--ggg-grey-3); margin-top: 10px; }

.ggg-conf-progress { margin-bottom: 20px; }
.ggg-conf-progress__title { font-size: 15px; font-weight: 800; margin-bottom: 14px; color: var(--ggg-black); }
.ggg-conf-progress__steps { display: flex; align-items: flex-start; }
.ggg-conf-progress__step { flex: 1; text-align: center; position: relative; }
.ggg-conf-progress__step::after {
  content: '';
  position: absolute;
  top: 16px; left: 50%; right: -50%;
  height: 2px;
  background: var(--ggg-grey-2);
  z-index: 0;
}
.ggg-conf-progress__step:last-child::after { display: none; }
.ggg-conf-progress__dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  background: var(--ggg-grey-2);
  color: var(--ggg-grey-3);
}
.ggg-conf-progress__step--done  .ggg-conf-progress__dot { background: var(--ggg-green); color: var(--ggg-white); }
.ggg-conf-progress__step--active .ggg-conf-progress__dot { background: var(--ggg-green); color: var(--ggg-white); box-shadow: 0 0 0 4px rgba(26,122,74,0.2); }
.ggg-conf-progress__label { font-size: 11px; font-weight: 600; color: var(--ggg-grey-3); }
.ggg-conf-progress__step--active .ggg-conf-progress__label { color: var(--ggg-green); }
.ggg-conf-progress__motivate {
  background: var(--ggg-grey-1);
  border-radius: var(--ggg-radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ggg-grey-3);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}
.ggg-conf-progress__motivate strong { color: var(--ggg-black); }

.ggg-conf-next { border: 1.5px solid var(--ggg-grey-2); border-radius: var(--ggg-radius-lg); overflow: hidden; margin-bottom: 20px; }
.ggg-conf-next__header { background: var(--ggg-black); padding: 14px 18px; font-size: 15px; font-weight: 800; color: var(--ggg-white); }
.ggg-conf-next__step { padding: 14px 18px; display: flex; gap: 14px; align-items: flex-start; border-bottom: 1px solid var(--ggg-grey-2); }
.ggg-conf-next__step:last-child { border-bottom: none; }
.ggg-conf-next__num { width: 28px; height: 28px; border-radius: 50%; background: var(--ggg-green); color: var(--ggg-white); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ggg-conf-next__text { font-size: 14px; color: var(--ggg-black); line-height: 1.6; }
.ggg-conf-next__text strong { display: block; margin-bottom: 2px; font-weight: 700; }

.ggg-conf-po-finder { padding: 10px 18px; background: var(--ggg-green-pale); display: flex; align-items: center; gap: 8px; font-size: 13px; border-bottom: 1px solid var(--ggg-grey-2); }
.ggg-conf-po-finder a { color: var(--ggg-green); font-weight: 700; }

.ggg-conf-commit { text-align: center; padding: 24px 0 8px; margin-bottom: 20px; }
.ggg-conf-commit__success {
  background: var(--ggg-green-pale);
  border: 1.5px solid rgba(26,122,74,0.2);
  border-radius: var(--ggg-radius-sm);
  padding: 16px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  text-align: left;
}
.ggg-conf-commit__success[hidden] { display: none; }
.ggg-conf-commit__success-title { font-size: 16px; font-weight: 800; color: var(--ggg-green-dark); margin-bottom: 2px; }
.ggg-conf-commit__success-sub   { font-size: 13px; color: var(--ggg-green); }

.ggg-conf-faq { background: var(--ggg-grey-1); border-radius: var(--ggg-radius-lg); padding: 18px; margin-bottom: 20px; }
.ggg-conf-faq__title { font-size: 15px; font-weight: 800; margin-bottom: 14px; color: var(--ggg-black); }

/* ── LEGAL / PROSE ───────────────────────────────────────── */
.ggg-legal { padding: 40px var(--ggg-pad-x) 60px; max-width: 720px; margin: 0 auto; }
.ggg-legal__title { font-size: clamp(24px, 6vw, 36px); font-weight: 800; margin-bottom: 24px; }
.ggg-prose { font-size: 15px; line-height: 1.8; color: var(--ggg-grey-4); }
.ggg-prose h2 { font-size: 20px; font-weight: 800; color: var(--ggg-black); margin: 28px 0 12px; }
.ggg-prose h3 { font-size: 17px; font-weight: 700; color: var(--ggg-black); margin: 20px 0 8px; }
.ggg-prose p  { margin-bottom: 14px; }
.ggg-prose ul, .ggg-prose ol { padding-left: 20px; margin-bottom: 14px; }
.ggg-prose li { margin-bottom: 6px; }
.ggg-prose a  { color: var(--ggg-green); font-weight: 600; }
.ggg-prose table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.ggg-prose th, .ggg-prose td { border: 1px solid var(--ggg-grey-2); padding: 10px 12px; font-size: 14px; }
.ggg-prose th { background: var(--ggg-grey-1); font-weight: 700; }

/* ── FAQ PAGE ────────────────────────────────────────────── */
.ggg-faq-page { max-width: 720px; margin: 0 auto; padding: 0 var(--ggg-pad-x) 60px; }
.ggg-faq-page__hero { padding: 40px 0 24px; text-align: center; }
.ggg-faq-page__title { font-size: clamp(24px, 6vw, 36px); font-weight: 800; margin-bottom: 10px; }
.ggg-faq-page__sub   { font-size: 15px; color: var(--ggg-grey-3); }
.ggg-faq-cat { margin-bottom: 32px; }
.ggg-faq-cat__title { font-size: 18px; font-weight: 800; color: var(--ggg-green-dark); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--ggg-green-pale); }
.ggg-faq-page__contact { text-align: center; background: var(--ggg-grey-1); border-radius: var(--ggg-radius-lg); padding: 32px; margin-top: 32px; }
.ggg-faq-page__contact h2 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.ggg-faq-page__contact p  { font-size: 14px; color: var(--ggg-grey-3); margin-bottom: 16px; }

/* ── UTILITY ─────────────────────────────────────────────── */
.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; }
[hidden] { display: none !important; }
