/* ==========================================================================
   PURE GOLD WATER — LUXURY THEME STYLESHEET
   Black & Gold / Glassmorphism / Ultra Premium Beverage Brand
   ========================================================================== */

:root {
  --pgw-gold: #D4AF37;
  --pgw-gold-dark: #B8860B;
  --pgw-gold-light: #F2D879;
  --pgw-black: #050505;
  --pgw-black-soft: #0D0D0D;
  --pgw-charcoal: #141414;
  --pgw-white: #FFFFFF;
  --pgw-grey: #B8B8B8;
  --pgw-glass-bg: rgba(255, 255, 255, 0.04);
  --pgw-glass-border: rgba(212, 175, 55, 0.25);

  --font-heading: 'Cinzel', serif;
  --font-subheading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;

  --radius: 18px;
  --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ─────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--pgw-black);
  color: var(--pgw-white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.pgw-eyebrow {
  font-family: var(--font-subheading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--pgw-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.pgw-section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  background: linear-gradient(135deg, var(--pgw-gold-light) 0%, var(--pgw-gold) 50%, var(--pgw-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.pgw-section-sub {
  font-family: var(--font-subheading);
  font-size: 1.35rem;
  color: var(--pgw-grey);
  max-width: 640px;
  font-weight: 400;
}

.pgw-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.pgw-section {
  padding: 120px 0;
  position: relative;
}

.pgw-section-head {
  text-align: center;
  margin-bottom: 64px;
}
.pgw-section-head .pgw-section-sub { margin: 0 auto; }

/* Gold divider */
.pgw-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pgw-gold), transparent);
  margin: 28px auto;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.pgw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid var(--pgw-gold);
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pgw-btn-primary {
  background: linear-gradient(135deg, var(--pgw-gold-light), var(--pgw-gold) 50%, var(--pgw-gold-dark));
  color: var(--pgw-black);
}
.pgw-btn-primary:hover {
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}

.pgw-btn-outline {
  background: transparent;
  color: var(--pgw-gold-light);
}
.pgw-btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.pgw-btn-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── Glass Card base ──────────────────────────────────────────────────── */
.pgw-glass {
  background: var(--pgw-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--pgw-glass-border);
  border-radius: var(--radius);
  transition: var(--transition-smooth);
}
.pgw-glass:hover {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.15) inset;
  transform: translateY(-6px);
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.pgw-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition-smooth);
  background: transparent;
}
.pgw-header.pgw-scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.pgw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pgw-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--pgw-white);
}
.pgw-logo img { height: 42px; width: auto; }
.pgw-logo span { color: var(--pgw-gold); }

.pgw-nav-menu {
  display: flex;
  gap: 38px;
  align-items: center;
}
.pgw-nav-menu a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pgw-grey);
  transition: var(--transition-smooth);
  position: relative;
  padding-bottom: 4px;
}
.pgw-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--pgw-gold);
  transition: var(--transition-smooth);
}
.pgw-nav-menu a:hover { color: var(--pgw-gold-light); }
.pgw-nav-menu a:hover::after { width: 100%; }

.pgw-nav-cta {
  padding: 11px 26px;
  font-size: 0.74rem;
}

.pgw-menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1100;
}
.pgw-menu-toggle span {
  width: 26px; height: 2px;
  background: var(--pgw-gold);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   SECTION 1 — HERO
   ========================================================================== */
.pgw-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pgw-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.pgw-hero-media video,
.pgw-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pgw-hero-media video::-webkit-media-controls,
.pgw-hero-media video::-webkit-media-controls-panel,
.pgw-hero-media video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.pgw-hero-media .pgw-hero-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212,175,55,0.12), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 60%, #000 100%);
}

.pgw-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.65) 0%,
    rgba(5,5,5,0.45) 35%,
    rgba(5,5,5,0.8) 80%,
    rgba(5,5,5,0.97) 100%);
}

.pgw-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  animation: pgwFadeUp 1.4s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes pgwFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

.pgw-hero-eyebrow {
  font-family: var(--font-subheading);
  font-style: italic;
  color: var(--pgw-gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 18px;
  opacity: 0.9;
}

.pgw-hero-title {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #fff 0%, var(--pgw-gold-light) 45%, var(--pgw-gold) 70%, var(--pgw-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 30px rgba(212,175,55,0.25));
  margin-bottom: 18px;
}

.pgw-hero-tagline {
  font-family: var(--font-subheading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  color: var(--pgw-white);
  letter-spacing: 0.08em;
  margin-bottom: 46px;
  opacity: 0.92;
}

.pgw-hero-buttons {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}

.pgw-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 22px;
  height: 36px;
  border: 1px solid var(--pgw-gold);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.pgw-scroll-cue::before {
  content: '';
  width: 4px; height: 8px;
  background: var(--pgw-gold);
  border-radius: 2px;
  animation: pgwScrollCue 1.8s ease-in-out infinite;
}
@keyframes pgwScrollCue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(0); }
}

/* ==========================================================================
   SECTION 2 — PRODUCTS
   ========================================================================== */
.pgw-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pgw-product-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pgw-product-media {
  position: relative;
  aspect-ratio: 800 / 1200;
  background: linear-gradient(160deg, #111 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pgw-product-media img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}
.pgw-product-card:hover .pgw-product-media img { transform: scale(1.07); }

.pgw-product-media .pgw-placeholder-icon {
  font-size: 4rem;
  color: rgba(212,175,55,0.3);
}

.pgw-product-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pgw-product-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--pgw-white);
  margin-bottom: 10px;
}

.pgw-product-desc {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  color: var(--pgw-grey);
  flex: 1;
  margin-bottom: 24px;
}

.pgw-product-body .pgw-btn { width: 100%; }

/* ==========================================================================
   SECTION — MEET OUR FOUNDERS
   ========================================================================== */
.pgw-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  gap: 40px;
  max-width: 880px;
  margin: 0 auto;
}

.pgw-founder-card {
  padding: 44px 36px;
  text-align: center;
}

.pgw-founder-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--pgw-gold);
  box-shadow: 0 0 0 6px rgba(212,175,55,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #111 0%, #0a0a0a 100%);
}
.pgw-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pgw-founder-photo .pgw-placeholder-icon {
  font-size: 3rem;
  color: rgba(212,175,55,0.3);
}

.pgw-founder-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: var(--pgw-white);
  margin-bottom: 10px;
}

.pgw-founder-desc {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--pgw-grey);
}

/* ==========================================================================
   SECTION 3 — WHY CHOOSE US
   ========================================================================== */
.pgw-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pgw-why-card {
  padding: 42px 32px;
  text-align: center;
}

.pgw-why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.02));
  border: 1px solid rgba(212,175,55,0.4);
}
.pgw-why-icon svg { width: 28px; height: 28px; stroke: var(--pgw-gold); }

.pgw-why-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--pgw-white);
}

.pgw-why-text {
  font-size: 0.92rem;
  color: var(--pgw-grey);
  font-weight: 300;
}

/* ==========================================================================
   SECTION 4 — FACTORY GALLERY
   ========================================================================== */
.pgw-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.pgw-gallery-grid .pgw-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.pgw-gallery-grid .pgw-gallery-item:nth-child(4) { grid-column: span 2; }

.pgw-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.18);
  background: linear-gradient(160deg, #111 0%, #0a0a0a 100%);
}
.pgw-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.pgw-gallery-item:hover img { transform: scale(1.08); }

.pgw-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: var(--transition-smooth);
}
.pgw-gallery-item:hover .pgw-gallery-overlay { opacity: 1; }
.pgw-gallery-overlay span {
  font-family: var(--font-subheading);
  font-style: italic;
  color: var(--pgw-gold-light);
  font-size: 1rem;
}

.pgw-gallery-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: rgba(212,175,55,0.25);
  font-size: 2.4rem;
}

/* ==========================================================================
   SECTION 5 — FREE DELIVERY
   ========================================================================== */
.pgw-delivery {
  background: radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.08), transparent 60%);
}
.pgw-delivery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pgw-delivery-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pgw-delivery-feature {
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pgw-delivery-feature .pgw-mini-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  display: flex; align-items: center; justify-content: center;
}
.pgw-delivery-feature .pgw-mini-icon svg { width: 20px; height: 20px; stroke: var(--pgw-gold); }
.pgw-delivery-feature span.label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.pgw-delivery-visual {
  position: relative;
  height: 420px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #111 0%, #0a0a0a 100%);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pgw-delivery-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   SECTION 6 — CUSTOM BRANDING
   ========================================================================== */
.pgw-branding {
  background: var(--pgw-black-soft);
}
.pgw-branding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pgw-branding-card {
  padding: 38px 28px;
  text-align: center;
}
.pgw-branding-card .pgw-why-icon { margin-bottom: 20px; }
.pgw-branding-card h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  margin-bottom: 10px;
}
.pgw-branding-card p {
  font-size: 0.88rem;
  color: var(--pgw-grey);
}

/* ==========================================================================
   SECTION 7 — RESELLER PROGRAM
   ========================================================================== */
.pgw-reseller-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.pgw-reseller-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
}
.pgw-reseller-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pgw-reseller-point .pgw-check {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--pgw-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--pgw-gold);
  font-size: 0.8rem;
}
.pgw-reseller-point p {
  font-family: var(--font-subheading);
  font-size: 1.15rem;
  color: var(--pgw-white);
}

.pgw-form {
  padding: 44px;
}
.pgw-form-group { margin-bottom: 22px; }
.pgw-form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pgw-gold-light);
  margin-bottom: 10px;
}
.pgw-form-group input,
.pgw-form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--pgw-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition-smooth);
}
.pgw-form-group input:focus,
.pgw-form-group textarea:focus {
  outline: none;
  border-color: var(--pgw-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
  background: rgba(255,255,255,0.05);
}
.pgw-form-group textarea { resize: vertical; min-height: 120px; }
.pgw-form button[type="submit"] { width: 100%; border: 1px solid var(--pgw-gold); }

.pgw-required { color: var(--pgw-gold-light); }

.pgw-form-group input.pgw-input-invalid,
.pgw-form-group textarea.pgw-input-invalid {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224,92,92,0.12);
}

.pgw-field-error {
  display: block;
  min-height: 1.1em;
  margin-top: 6px;
  font-size: 0.78rem;
  color: #f08080;
  font-family: var(--font-body);
}

.pgw-form-alert {
  font-size: 0.85rem;
  color: #f08080;
  margin-bottom: 16px;
  min-height: 1em;
}
.pgw-form-alert:empty { display: none; }

.pgw-form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.pgw-form-success.active { display: block; }
.pgw-form-success:focus { outline: none; }
.pgw-form-success svg { width: 48px; height: 48px; stroke: var(--pgw-gold); margin-bottom: 16px; }
.pgw-form-success h4 { font-family: var(--font-heading); margin-bottom: 8px; }
.pgw-form-success p { color: var(--pgw-grey); }

/* ==========================================================================
   SECTION 8 — REVIEWS
   ========================================================================== */
.pgw-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.pgw-review-card {
  padding: 34px;
}

.pgw-review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.pgw-review-stars svg { width: 16px; height: 16px; fill: var(--pgw-gold); stroke: none; }
.pgw-review-stars svg.empty { fill: none; stroke: rgba(212,175,55,0.3); stroke-width: 1.5; }

.pgw-review-text {
  font-family: var(--font-subheading);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--pgw-white);
  margin-bottom: 24px;
}

.pgw-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pgw-review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pgw-gold-light), var(--pgw-gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  color: var(--pgw-black);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.pgw-review-name {
  font-size: 0.88rem;
  color: var(--pgw-white);
  font-weight: 500;
}
.pgw-review-loc {
  font-size: 0.76rem;
  color: var(--pgw-grey);
}

.pgw-review-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 44px;
}
.pgw-star-input {
  display: flex;
  gap: 8px;
}
.pgw-star-input button {
  background: none; border: none; padding: 0;
}
.pgw-star-input svg { width: 26px; height: 26px; fill: none; stroke: rgba(212,175,55,0.4); stroke-width: 1.5; transition: var(--transition-smooth); }
.pgw-star-input svg.active { fill: var(--pgw-gold); stroke: var(--pgw-gold); }

/* ==========================================================================
   SECTION 9 — MISSION
   ========================================================================== */
.pgw-mission {
  text-align: center;
  position: relative;
}
.pgw-mission::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 14rem;
  color: rgba(212,175,55,0.06);
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.pgw-mission-text {
  font-family: var(--font-subheading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--pgw-white);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 10 — CONTACT
   ========================================================================== */
.pgw-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.pgw-contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pgw-contact-item {
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.pgw-contact-item .pgw-mini-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pgw-contact-item .pgw-mini-icon svg { width: 20px; height: 20px; stroke: var(--pgw-gold); }
.pgw-contact-item h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  color: var(--pgw-gold-light);
}
.pgw-contact-item p, .pgw-contact-item a {
  font-size: 0.92rem;
  color: var(--pgw-grey);
}

.pgw-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.25);
  height: 100%;
  min-height: 380px;
}
.pgw-map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(0.4) invert(0.92) contrast(0.9); }
.pgw-map-placeholder {
  width: 100%; height: 100%; min-height: 380px;
  background: linear-gradient(160deg, #111 0%, #0a0a0a 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: rgba(212,175,55,0.4);
}

/* Floating WhatsApp */
.pgw-whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1ebe5b);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition-smooth);
  animation: pgwPulse 2.4s ease-in-out infinite;
}
.pgw-whatsapp-float:hover { transform: scale(1.1); }
.pgw-whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pgwPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.pgw-footer {
  background: var(--pgw-black-soft);
  border-top: 1px solid rgba(212,175,55,0.15);
  padding: 80px 0 0;
}
.pgw-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.pgw-footer-brand .pgw-logo { margin-bottom: 18px; }
.pgw-footer-brand p {
  color: var(--pgw-grey);
  font-size: 0.88rem;
  max-width: 280px;
  margin-bottom: 22px;
}
.pgw-footer-social {
  display: flex;
  gap: 12px;
}
.pgw-footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-smooth);
}
.pgw-footer-social a:hover { background: rgba(212,175,55,0.12); border-color: var(--pgw-gold); }
.pgw-footer-social svg { width: 16px; height: 16px; stroke: var(--pgw-gold); }

.pgw-footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--pgw-gold-light);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.pgw-footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.pgw-footer-col a, .pgw-footer-col p {
  font-size: 0.86rem;
  color: var(--pgw-grey);
  transition: var(--transition-smooth);
}
.pgw-footer-col a:hover { color: var(--pgw-gold-light); }

.pgw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.pgw-footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.pgw-footer-bottom-links {
  display: flex;
  gap: 24px;
}
.pgw-footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.pgw-footer-bottom-links a:hover { color: var(--pgw-gold-light); }

/* ==========================================================================
   SCROLL REVEAL (JS adds .pgw-visible)
   ========================================================================== */
.pgw-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.pgw-reveal.pgw-visible {
  opacity: 1;
  transform: translateY(0);
}
.pgw-reveal-delay-1 { transition-delay: 0.1s; }
.pgw-reveal-delay-2 { transition-delay: 0.2s; }
.pgw-reveal-delay-3 { transition-delay: 0.3s; }
.pgw-reveal-delay-4 { transition-delay: 0.4s; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--pgw-gold);
  outline-offset: 3px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .pgw-products-grid,
  .pgw-why-grid { grid-template-columns: repeat(2, 1fr); }
  .pgw-founders-grid { grid-template-columns: 1fr; max-width: 360px; }
  .pgw-branding-grid { grid-template-columns: repeat(2, 1fr); }
  .pgw-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pgw-gallery-grid .pgw-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .pgw-delivery-inner,
  .pgw-reseller-inner,
  .pgw-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .pgw-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .pgw-section { padding: 80px 0; }
  .pgw-container { padding: 0 20px; }

  .pgw-nav-menu { display: none; }
  .pgw-menu-toggle { display: flex; }
  .pgw-nav-cta { display: none; }

  .pgw-nav-menu.pgw-mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(212,175,55,0.2);
    padding: 100px 36px 36px;
    gap: 28px;
    z-index: 1050;
    animation: pgwSlideIn 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  @keyframes pgwSlideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }

  .pgw-products-grid,
  .pgw-why-grid,
  .pgw-branding-grid,
  .pgw-reviews-grid { grid-template-columns: 1fr; }

  .pgw-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .pgw-gallery-grid .pgw-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .pgw-gallery-grid .pgw-gallery-item:nth-child(4) { grid-column: span 1; }

  .pgw-delivery-features { grid-template-columns: 1fr; }
  .pgw-footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .pgw-footer-bottom { flex-direction: column; text-align: center; }

  .pgw-hero-buttons { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .pgw-hero-buttons .pgw-btn { width: 100%; }

  .pgw-whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .pgw-whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .pgw-form, .pgw-review-form-wrap { padding: 28px 22px; }
  .pgw-contact-item, .pgw-delivery-feature { flex-direction: column; }
}

/* ── Scroll To Top Button ── */
/* ── Scroll To Top Button ── */
#pgwScrollTop {
  position: fixed !important;
  bottom: 28px !important;
  left: 28px !important;
  right: auto !important;
  top: auto !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: 50% !important;
  background: #000000 !important;
  border: 2px solid #d4af37 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 99999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  overflow: visible !important;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: opacity 0.3s ease, visibility 0.3s ease, box-shadow 0.3s ease !important;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3), 0 0 12px rgba(212,175,55,0.15) !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
#pgwScrollTop svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #d4af37 !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  display: block !important;
  pointer-events: none !important;
}
@media screen and (max-width: 1024px) {
  #pgwScrollTop {
    bottom: 20px !important;
    left: 20px !important;
    right: auto !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
  #pgwScrollTop svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* ==========================================================================
   GRAND LAUNCH OFFER — LANDING PAGE STYLES
   ========================================================================== */

/* ── Hero ────────────────────────────────────────────────────────────────── */
.glo-hero {
  padding-top: 160px; /* JS overrides this with real header height + 40px */
  padding-bottom: 80px;
  text-align: center;
  background: var(--pgw-black);
  position: relative;
  overflow: hidden;
}
.glo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(212,175,55,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.glo-hero-inner { position: relative; z-index: 1; }
.glo-hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  max-width: 800px;
  margin: 0 auto 1.5rem;
}
.glo-hero-divider {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--pgw-gold), transparent);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .glo-hero { padding-top: 110px; padding-bottom: 60px; } /* JS overrides padding-top */
}

/* ── Product Section ─────────────────────────────────────────────────────── */
.glo-product-section {
  padding: 80px 0;
  background: var(--pgw-black-soft);
}
@media (max-width: 768px) {
  .glo-product-section { padding: 50px 0; }
}

/* ── Product Card ────────────────────────────────────────────────────────── */
.glo-product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius, 12px);
  overflow: hidden;
  border: 1px solid var(--pgw-glass-border);
  background: rgba(255,255,255,0.03);
}
@media (max-width: 860px) {
  .glo-product-card { grid-template-columns: 1fr; }
}

/* ── Slider inside card ──────────────────────────────────────────────────── */
.glo-slider-wrap {
  position: relative;
  background: #0a0a0a;
  height: 380px;
  min-height: 380px;
  overflow: hidden;
}
@media (max-width: 860px) {
  .glo-slider-wrap { height: 280px; min-height: 280px; }
}
.glo-slider { width: 100%; height: 100%; position: relative; }
.glo-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.35s ease;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
}
.glo-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.glo-slide.glo-active { opacity: 1; }

/* Slider buttons */
.glo-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--pgw-gold);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.glo-slider-btn svg { width: 18px; height: 18px; stroke: var(--pgw-gold); }
.glo-slider-btn:hover { background: rgba(212,175,55,0.2); border-color: var(--pgw-gold); }
.glo-prev { left: 12px; }
.glo-next { right: 12px; }

/* Dots */
.glo-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.glo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(212,175,55,0.3);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s;
}
.glo-dot.glo-dot-on { background: var(--pgw-gold); }

/* No-image placeholder */
.glo-no-img {
  display: flex; align-items: center; justify-content: center;
}
.glo-img-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; padding: 40px 24px; text-align: center;
}
.glo-img-placeholder svg { width: 56px; height: 56px; stroke: var(--pgw-gold); opacity: 0.35; }
.glo-img-placeholder span { color: var(--pgw-grey); font-size: 0.82rem; opacity: 0.7; }

/* ── Card Body ───────────────────────────────────────────────────────────── */
.glo-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 44px;
  gap: 0;
}
@media (max-width: 860px) {
  .glo-card-body { padding: 36px 24px; }
}

.glo-card-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 20px;
  color: var(--pgw-gold);
  font-family: var(--font-heading);
  line-height: 1.2;
}
.glo-card-desc {
  color: var(--pgw-grey);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 36px;
  max-width: 400px;
}

/* CTA button area */
.glo-card-cta {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.glo-order-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 1rem;
  padding: 16px 32px;
  width: auto;
  max-width: 320px;
  margin: 0 auto;
}
.glo-wa-icon { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }

/* ── Star input active ───────────────────────────────────────────────────── */
.pgw-star-input button.glo-star-on svg { fill: var(--pgw-gold); stroke: var(--pgw-gold); }

/* ── Sticky Mobile Bar ───────────────────────────────────────────────────── */
.glo-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99990;
  background: rgba(5,5,5,0.97);
  border-top: 1px solid var(--pgw-glass-border);
  padding: 10px 20px;
  align-items: center; justify-content: space-between; gap: 12px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.glo-sticky-bar.glo-sbar-on { display: flex; }
.glo-sticky-label {
  font-family: var(--font-heading);
  color: var(--pgw-gold);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.glo-sticky-btn { flex-shrink: 0; padding: 10px 22px; font-size: 0.88rem; white-space: nowrap; }

/* Push floating buttons up on mobile so sticky bar doesn't overlap */
@media (max-width: 768px) {
  body.page-template-page-grand-launch-offer-kotsamaba .pgw-whatsapp-float { bottom: 76px !important; }
  body.page-template-page-grand-launch-offer-kotsamaba #pgwScrollTop      { bottom: 76px !important; }
}
