/* =============================================
   GEAR & APPAREL — gear.css
   ============================================= */

:root {
  --gr-navy:    #0a1628;
  --gr-navy2:   #060e1a;
  --gr-gold:    #F4B22D;
  --gr-gold2:   #e8a01a;
  --gr-white:   #ffffff;
  --gr-light:   #F5F7FA;
  --gr-gray:    #4a5568;
  --gr-pink:    #e91e8c;
  --gr-pink2:   #c2185b;
  --gr-pink-bg: #fff0f6;
  --gr-blue:    #1565c0;
  --gr-blue2:   #0d47a1;
  --gr-blue-bg: #e8f0fe;
  --gr-radius:  16px;
  --gr-shadow:  0 8px 32px rgba(0,0,0,0.10);
}

/* ── UTILITY ──────────────────────────────── */
.gr-gold  { color: var(--gr-gold); }
.gr-white { color: #fff !important; }

.gr-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.gr-btn:hover { transform: translateY(-2px); }

.gr-btn-gold {
  background: linear-gradient(135deg, var(--gr-gold), var(--gr-gold2));
  color: var(--gr-navy2);
  box-shadow: 0 4px 18px rgba(244,178,45,0.35);
}
.gr-btn-gold:hover { box-shadow: 0 8px 28px rgba(244,178,45,0.55); }

.gr-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.gr-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.gr-btn-pink {
  background: linear-gradient(135deg, var(--gr-pink), var(--gr-pink2));
  color: #fff;
  box-shadow: 0 4px 18px rgba(233,30,140,0.35);
}
.gr-btn-pink:hover { box-shadow: 0 8px 28px rgba(233,30,140,0.5); }

.gr-btn-blue {
  background: linear-gradient(135deg, var(--gr-blue), var(--gr-blue2));
  color: #fff;
  box-shadow: 0 4px 18px rgba(21,101,192,0.35);
}
.gr-btn-blue:hover { box-shadow: 0 8px 28px rgba(21,101,192,0.5); }

/* =============================================
   HERO
   ============================================= */
.gr-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.gr-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060e1a 0%, #0a1628 40%, #1a0a2e 100%);
  z-index: 0;
}

/* Floating color orbs */
.gr-hero-bg::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.18) 0%, transparent 70%);
}
.gr-hero-bg::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,0.2) 0%, transparent 70%);
}

/* Animated floating particles */
.gr-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.gr-hero-particles span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatUp 8s ease-in-out infinite;
}
.gr-hero-particles span:nth-child(1)  { width:8px;  height:8px;  background:var(--gr-pink);  left:10%; animation-delay:0s;   animation-duration:7s; }
.gr-hero-particles span:nth-child(2)  { width:12px; height:12px; background:var(--gr-gold);  left:25%; animation-delay:1s;   animation-duration:9s; }
.gr-hero-particles span:nth-child(3)  { width:6px;  height:6px;  background:var(--gr-blue);  left:40%; animation-delay:2s;   animation-duration:8s; }
.gr-hero-particles span:nth-child(4)  { width:10px; height:10px; background:var(--gr-pink);  left:60%; animation-delay:0.5s; animation-duration:6s; }
.gr-hero-particles span:nth-child(5)  { width:7px;  height:7px;  background:var(--gr-gold);  left:75%; animation-delay:1.5s; animation-duration:10s;}
.gr-hero-particles span:nth-child(6)  { width:9px;  height:9px;  background:#22c55e;          left:85%; animation-delay:3s;   animation-duration:7s; }
.gr-hero-particles span:nth-child(7)  { width:5px;  height:5px;  background:var(--gr-pink);  left:15%; animation-delay:4s;   animation-duration:9s; }
.gr-hero-particles span:nth-child(8)  { width:11px; height:11px; background:var(--gr-blue);  left:50%; animation-delay:2.5s; animation-duration:8s; }
.gr-hero-particles span:nth-child(9)  { width:6px;  height:6px;  background:var(--gr-gold);  left:33%; animation-delay:3.5s; animation-duration:6s; }
.gr-hero-particles span:nth-child(10) { width:8px;  height:8px;  background:var(--gr-pink);  left:70%; animation-delay:1s;   animation-duration:11s;}

@keyframes floatUp {
  0%   { transform: translateY(110vh) scale(0.5); opacity:0; }
  10%  { opacity: 0.15; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-10vh) scale(1); opacity:0; }
}

.gr-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 40px 110px;
  text-align: center;
}

.gr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(244,178,45,0.12);
  border: 1px solid rgba(244,178,45,0.35);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gr-gold);
  margin-bottom: 28px;
}
.gr-hero-badge i { color: var(--gr-pink); }

.gr-hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
}

.gr-hero-line1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 6px;
}

.gr-hero-line2 {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -1px;
}

.gr-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 36px;
}

.gr-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.gr-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.gr-hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gr-hero-trust i { color: var(--gr-gold); font-size: 0.8rem; }

.gr-hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  line-height: 0;
}
.gr-hero-wave svg { display: block; width: 100%; height: 50px; }

/* =============================================
   CAUSES BANNER
   ============================================= */
.gr-causes {
  background: var(--gr-navy);
  padding: 0;
}

.gr-causes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0;
}

.gr-cause-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 12px 20px;
  border-radius: 10px;
}

.gr-cause-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.gr-cause-pink .gr-cause-icon  { background: rgba(233,30,140,0.15); color: var(--gr-pink); }
.gr-cause-blue .gr-cause-icon  { background: rgba(21,101,192,0.15); color: #5b9af7; }
.gr-cause-gold .gr-cause-icon  { background: rgba(244,178,45,0.15); color: var(--gr-gold); }

.gr-cause-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}
.gr-cause-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', sans-serif;
}

.gr-cause-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 10px;
}

/* =============================================
   COLLECTION
   ============================================= */
.gr-collection {
  background: var(--gr-light);
  padding: 100px 40px;
  text-align: center;
}

.gr-collection-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gr-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gr-gold);
  margin-bottom: 14px;
}
.gr-eyebrow-light { color: rgba(244,178,45,0.8); }

.gr-section-title {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--gr-navy);
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.gr-section-sub {
  font-size: 0.97rem;
  color: var(--gr-gray);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 56px;
}

/* Products grid */
.gr-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  text-align: left;
}

/* Product card */
.gr-product-card {
  background: var(--gr-white);
  border-radius: var(--gr-radius);
  box-shadow: var(--gr-shadow);
  overflow: hidden;
  border: 1px solid rgba(13,31,69,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.gr-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

/* Top category badge */
.gr-product-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gr-badge-pink { background: var(--gr-pink); color: #fff; }
.gr-badge-blue { background: var(--gr-blue); color: #fff; }

/* Image */
.gr-product-img-wrap {
  position: relative;
  background: var(--gr-light);
  overflow: hidden;
  height: 340px;
}
.gr-product-card:hover .gr-product-img-wrap::after {
  opacity: 1;
}

.gr-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  display: block;
  transition: transform 0.4s ease;
}
.gr-product-card:hover .gr-product-img {
  transform: scale(1.04);
}

.gr-product-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,69,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.gr-product-card:hover .gr-product-img-overlay {
  opacity: 1;
}

.gr-quick-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  color: var(--gr-navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.gr-quick-view:hover { background: #fff; }

/* Body */
.gr-product-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gr-product-cause-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  width: fit-content;
}
.gr-tag-pink { background: rgba(233,30,140,0.10); color: var(--gr-pink); border: 1px solid rgba(233,30,140,0.25); }
.gr-tag-blue { background: rgba(21,101,192,0.10); color: var(--gr-blue); border: 1px solid rgba(21,101,192,0.25); }

.gr-product-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--gr-navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin-bottom: 0;
}

.gr-product-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gr-gold);
  margin-bottom: 2px;
}

.gr-product-desc {
  font-size: 0.97rem;
  color: var(--gr-gray);
  line-height: 1.75;
}

/* Details list */
.gr-product-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid rgba(13,31,69,0.07);
  border-bottom: 1px solid rgba(13,31,69,0.07);
}

.gr-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--gr-gray);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.gr-detail i { color: var(--gr-gold); font-size: 0.75rem; width: 14px; flex-shrink: 0; }

/* Sizes */
.gr-size-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gr-size-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gr-navy);
  flex-shrink: 0;
}

.gr-sizes {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.gr-size-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1.5px solid rgba(13,31,69,0.2);
  background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--gr-navy);
  cursor: pointer;
  transition: all 0.15s;
}
.gr-size-btn:hover { border-color: var(--gr-gold); color: var(--gr-gold); }
.gr-size-active {
  background: var(--gr-navy) !important;
  border-color: var(--gr-navy) !important;
  color: #fff !important;
}

/* Footer */
.gr-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
}

.gr-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--gr-navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Pink top bar on pink card */
.gr-product-pink { border-top: 4px solid var(--gr-pink); }
.gr-product-blue { border-top: 4px solid var(--gr-blue); }

/* =============================================
   CAUSE STORIES
   ============================================= */
.gr-stories {
  background: var(--gr-white);
  padding: 100px 40px;
}

.gr-stories-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.gr-story {
  border-radius: var(--gr-radius);
  padding: 44px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.gr-story:hover { transform: translateY(-4px); box-shadow: var(--gr-shadow); }

.gr-story-pink {
  background: linear-gradient(135deg, rgba(233,30,140,0.06) 0%, rgba(233,30,140,0.02) 100%);
  border-color: rgba(233,30,140,0.2);
}
.gr-story-blue {
  background: linear-gradient(135deg, rgba(21,101,192,0.07) 0%, rgba(21,101,192,0.02) 100%);
  border-color: rgba(21,101,192,0.2);
}

/* Large background icon */
.gr-story::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  font-size: 8rem;
  opacity: 0.04;
}

.gr-story-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.gr-story-pink .gr-story-icon { background: rgba(233,30,140,0.12); color: var(--gr-pink); }
.gr-story-blue .gr-story-icon { background: rgba(255,255,255,0.2); color: #fff; }

.gr-story-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.gr-story-pink .gr-story-eyebrow { color: var(--gr-pink); }
.gr-story-blue .gr-story-eyebrow { color: var(--gr-gold); }

.gr-story-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gr-navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.gr-story-content p {
  font-size: 0.97rem;
  color: var(--gr-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.gr-story-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(13,31,69,0.08);
}

.gr-story-stat strong {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.gr-story-pink .gr-story-stat strong { color: var(--gr-pink); }
.gr-story-blue .gr-story-stat strong { color: var(--gr-navy); }

.gr-story-stat span {
  font-size: 0.78rem;
  color: var(--gr-gray);
  line-height: 1.5;
}

/* =============================================
   ORDER SECTION
   ============================================= */
.gr-order {
  background: var(--gr-navy);
  padding: 100px 40px;
  text-align: center;
}

.gr-order-inner { max-width: 1200px; margin: 0 auto; }

.gr-order-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 56px;
}

.gr-order-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  text-align: left;
}

/* Steps */
.gr-order-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gr-info-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.gr-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gr-gold), var(--gr-gold2));
  color: var(--gr-navy2);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(244,178,45,0.3);
}

.gr-info-step strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.gr-info-step span {
  font-size: 0.90rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.gr-call-btn {
  margin-top: 10px;
  justify-content: center;
}

/* Form */
.gr-order-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--gr-radius);
  padding: 40px;
}

.gr-order-form h3 {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.gr-order-form h3 i { color: var(--gr-gold); }

.gr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.gr-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gr-form-full { margin-bottom: 16px; }

.gr-form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
}

.gr-order-form input,
.gr-order-form select,
.gr-order-form textarea {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.87rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.gr-order-form input::placeholder,
.gr-order-form textarea::placeholder { color: rgba(255,255,255,0.28); }
.gr-order-form input:focus,
.gr-order-form textarea:focus {
  border-color: var(--gr-gold);
  background: rgba(255,255,255,0.10);
}

/* Checkbox row */
.gr-check-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.gr-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.15s, background 0.15s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  flex: 1;
  min-width: 200px;
}
.gr-check-item input { display: none; }
.gr-check-item:has(input:checked) { border-color: var(--gr-gold); background: rgba(244,178,45,0.10); color: #fff; }
.gr-check-item:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.07); }

.gr-check-box {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.gr-check-pink { background: rgba(233,30,140,0.15); color: var(--gr-pink); }
.gr-check-blue { background: rgba(21,101,192,0.15); color: #5b9af7; }

.gr-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 0.92rem;
  border-radius: 10px;
  margin-top: 8px;
}

.gr-form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 8px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* =============================================
   CLOSING BANNER
   ============================================= */
.gr-closing {
  background: linear-gradient(135deg, var(--gr-gold) 0%, var(--gr-gold2) 100%);
  padding: 60px 40px;
}

.gr-closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.gr-closing-logo {
  width: 80px; height: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0.2);
  opacity: 0.35;
}

.gr-closing-text { flex: 1; }
.gr-closing-text h2 {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gr-navy2);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gr-closing-text p {
  font-size: 0.9rem;
  color: rgba(9,21,48,0.68);
  line-height: 1.65;
  max-width: 480px;
}

.gr-closing-social {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.gr-social-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(9,21,48,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gr-navy2);
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.gr-social-btn:hover { background: rgba(9,21,48,0.28); transform: translateY(-2px); }

/* =============================================
   MODAL
   ============================================= */
.gr-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  padding: 20px;
}
.gr-modal-open {
  opacity: 1 !important;
  pointer-events: all !important;
}

.gr-modal-content {
  position: relative;
  max-width: 700px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.gr-modal-content img {
  width: 100%;
  height: auto;
  display: block;
}

.gr-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.gr-modal-close:hover { background: rgba(0,0,0,0.8); }

/* =============================================
   AUTISM AWARENESS FEATURE SECTION
   ============================================= */
.gr-autism-section {
  background: linear-gradient(180deg, #f0f5ff 0%, #ffffff 40%, #f0f5ff 100%);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

/* Floating puzzle-piece background decorations */
.gr-autism-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.gr-af {
  position: absolute;
  font-size: 3rem;
  opacity: 0.07;
  animation: af-float 8s ease-in-out infinite;
}
.gr-af-1  { color: #1565c0; top:  8%; left:  3%; font-size: 4rem; animation-delay: 0s; }
.gr-af-2  { color: #F4B22D; top: 18%; right: 5%; font-size: 2.5rem; animation-delay: 1.2s; }
.gr-af-3  { color: #e53935; top: 55%; left:  7%; font-size: 3.5rem; animation-delay: 2.5s; }
.gr-af-4  { color: #2e7d32; top: 72%; right: 9%; font-size: 2rem; animation-delay: 0.8s; }
.gr-af-5  { color: #1565c0; top: 88%; left: 40%; font-size: 4.5rem; animation-delay: 3s; }
.gr-af-6  { color: #F4B22D; top: 35%; left: 90%; font-size: 3rem; animation-delay: 1.8s; }

@keyframes af-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(12deg); }
}

.gr-autism-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* === Banner image === */
.gr-autism-banner-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 20px 60px rgba(21,101,192,0.22);
  margin-bottom: 56px;
}
.gr-autism-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gr-autism-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,69,0.82) 0%, rgba(21,101,192,0.55) 60%, rgba(13,31,69,0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.gr-autism-banner-content { max-width: 680px; }

.gr-autism-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 40px;
  padding: 8px 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.gr-autism-ribbon i { color: #63a4ff; font-size: 0.85rem; }

.gr-autism-banner-title {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #fff;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.gr-autism-banner-title span {
  color: #63a4ff;
  display: block;
}
.gr-autism-banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* === Stats bar === */
.gr-autism-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--gr-navy);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 60px;
  box-shadow: 0 12px 40px rgba(13,31,69,0.18);
}
.gr-autism-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.gr-astat-num {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gr-astat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.45;
  max-width: 150px;
  text-align: center;
}
.gr-autism-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin: 0 16px;
}

/* === Body: message + imagery === */
.gr-autism-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.gr-autism-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #1565c0;
  margin-bottom: 14px;
}
.gr-autism-eyebrow i { font-size: 0.8rem; }

.gr-autism-heading {
  font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--gr-navy);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.gr-autism-blue { color: #1565c0; }

.gr-autism-message p {
  font-size: 1.05rem;
  color: var(--gr-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.gr-autism-message p strong { color: var(--gr-navy); }

/* 4 pillar chips */
.gr-autism-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}
.gr-autism-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.gr-autism-pillar i { font-size: 1rem; }
.gr-ap-blue  { background: rgba(21,101,192,0.1);  color: #1565c0; }
.gr-ap-gold  { background: rgba(244,178,45,0.12); color: #9a6c00; }
.gr-ap-red   { background: rgba(229,57,53,0.1);   color: #c62828; }
.gr-ap-green { background: rgba(46,125,50,0.1);   color: #2e7d32; }

.gr-autism-cta { margin-top: 4px; }

/* Image column */
.gr-autism-img-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gr-autism-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(21,101,192,0.2);
}
.gr-autism-community-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gr-autism-img-wrap:hover .gr-autism-community-img { transform: scale(1.04); }
.gr-autism-img-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: linear-gradient(135deg, #1565c0, #0d47a1);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.gr-autism-img-badge i { font-size: 1.1rem; color: #63a4ff; }

.gr-autism-shirt-preview {
  background: var(--gr-navy);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 28px rgba(13,31,69,0.18);
}
.gr-autism-shirt-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 14px rgba(255,255,255,0.1));
}
.gr-autism-shirt-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.gr-autism-shirt-label i { color: #63a4ff; font-size: 1.2rem; }

/* Quote bar */
.gr-autism-quote {
  margin-top: 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
  padding: 44px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(21,101,192,0.3);
}
.gr-autism-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.gr-autism-quote-inner { position: relative; }
.gr-autism-quote-icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
  display: block;
  margin-bottom: 16px;
}
.gr-autism-quote blockquote {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin: 0 auto 14px;
  max-width: 820px;
}
.gr-autism-quote cite {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #63a4ff;
}

/* blue button override for autism CTA */
.gr-btn-blue {
  background: linear-gradient(135deg, #1565c0, #0d47a1);
  color: #fff;
  box-shadow: 0 4px 18px rgba(21,101,192,0.35);
}
.gr-btn-blue:hover { box-shadow: 0 8px 28px rgba(21,101,192,0.55); color: #fff; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .gr-products-grid    { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
  .gr-stories-inner    { grid-template-columns: 1fr; }
  .gr-order-layout     { grid-template-columns: 1fr; }
  .gr-order-info       { display: grid; grid-template-columns: 1fr 1fr; }
  .gr-call-btn         { grid-column: span 2; }
  .gr-autism-body      { grid-template-columns: 1fr; gap: 40px; }
  .gr-autism-stats     { flex-wrap: wrap; gap: 24px; }
  .gr-autism-stat-divider { display: none; }
  .gr-autism-stat      { min-width: 45%; }
}

@media (max-width: 768px) {
  .gr-hero-inner     { padding: 80px 24px 100px; }
  .gr-causes-inner   { flex-wrap: wrap; gap: 16px; justify-content: center; padding: 24px; }
  .gr-cause-divider  { display: none; }
  .gr-collection     { padding: 70px 24px; }
  .gr-stories        { padding: 70px 24px; }
  .gr-story          { flex-direction: column; gap: 16px; padding: 32px 24px; }
  .gr-order          { padding: 70px 24px; }
  .gr-order-form     { padding: 28px 20px; }
  .gr-form-row       { grid-template-columns: 1fr; }
  .gr-order-info     { grid-template-columns: 1fr; }
  .gr-call-btn       { grid-column: span 1; }
  .gr-closing        { padding: 48px 24px; }
  .gr-closing-inner  { flex-direction: column; text-align: center; }
  .gr-closing-social { justify-content: center; }
  /* Autism */
  .gr-autism-section    { padding: 70px 24px; }
  .gr-autism-banner-wrap{ height: 300px; }
  .gr-autism-banner-title { font-size: 2.8rem; }
  .gr-autism-pillars    { grid-template-columns: 1fr 1fr; }
  .gr-autism-quote      { padding: 36px 28px; }
  .gr-autism-quote blockquote { font-size: 0.97rem; }
  .gr-autism-shirt-preview { flex-direction: column; text-align: center; }
  .gr-autism-shirt-img  { width: 80px; height: 80px; }
}

@media (max-width: 540px) {
  .gr-hero-btns { flex-direction: column; align-items: center; }
  .gr-check-row { flex-direction: column; }
  .gr-check-item { min-width: unset; }
  .gr-product-footer { flex-direction: column; align-items: stretch; }
  .gr-product-footer .gr-btn { justify-content: center; }
  /* Autism */
  .gr-autism-banner-wrap  { height: 240px; }
  .gr-autism-banner-title { font-size: 2.2rem; }
  .gr-autism-pillars      { grid-template-columns: 1fr; }
  .gr-autism-stats        { padding: 24px 20px; }
  .gr-astat-num           { font-size: 1.8rem; }
}
