/* Hero Section */
.hero {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--spacing-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
    linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  border-bottom: 1px solid var(--color-accent);
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0; /* Lower than content */
}

.floating-item {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.15;
  animation: floatAround infinite ease-in-out;
}

/* Individual item positions and animations */
.floating-item:nth-child(1) { top: 10%; left: 5%; animation-duration: 8s; }
.floating-item:nth-child(2) { top: 70%; left: 8%; animation-duration: 10s; animation-delay: -2s; }
.floating-item:nth-child(3) { top: 20%; left: 85%; animation-duration: 9s; animation-delay: -5s; }
.floating-item:nth-child(4) { top: 80%; left: 90%; animation-duration: 11s; animation-delay: -1s; }
.floating-item:nth-child(5) { top: 40%; left: 15%; animation-duration: 12s; animation-delay: -7s; }
.floating-item:nth-child(6) { top: 15%; left: 40%; animation-duration: 7s; animation-delay: -3s; }
.floating-item:nth-child(7) { top: 85%; left: 35%; animation-duration: 13s; animation-delay: -9s; }
.floating-item:nth-child(8) { top: 50%; left: 80%; animation-duration: 10s; animation-delay: -4s; }
.floating-item:nth-child(9) { top: 5%; left: 70%; animation-duration: 14s; animation-delay: -6s; }
.floating-item:nth-child(10) { top: 60%; left: 50%; animation-duration: 11s; animation-delay: -8s; }

@keyframes floatAround {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -30px) rotate(10deg); }
  66% { transform: translate(-15px, 20px) rotate(-10deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Hero Font (Home Page Only - Dynamic Style) */
.hero h1 {
  display: inline-block;
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  font-style: italic;
  color: var(--color-white);
  /* High-impact Brutalist Shadow */
  text-shadow: 
    -2px -2px 0 #000,  
    2px -2px 0 #000,
    -2px  2px 0 #000,
    2px  2px 0 #000,
    6px 6px 0 var(--color-accent);
  animation: slideUp 1s var(--ease-out-expo) both;
  transition: all 0.6s var(--ease-out-back);
  cursor: pointer;
  position: relative;
  z-index: 5;
}

.hero h1:hover {
  transform: translateY(-5px) rotate(-1.5deg) skewX(-4deg) scale(1.04);
  text-shadow: 
    -2px -2px 0 #000,  
    2px -2px 0 #000,
    -2px  2px 0 #000,
    2px  2px 0 #000,
    10px 10px 0 var(--color-accent),
    0 0 20px var(--color-accent),
    0 0 40px rgba(212, 175, 55, 0.4);
}

.hero h1 span {
  display: block;
  font-size: 0.8em;
  color: var(--color-accent);
  -webkit-text-stroke: 2px #000;
  filter: drop-shadow(4px 4px 0 #000);
  margin-top: 10px;
  transition: all 0.6s var(--ease-out-back);
  position: relative;
  overflow: visible; /* Changed to visible to prevent clipping of the slanted 'A' */
  padding: 5px 25px 5px 10px; /* Increased left padding for the 'A' slant */
  margin-left: -10px; /* Offset the left padding */
  margin-right: -20px;
}

.hero h1:hover span {
  color: var(--color-white);
  -webkit-text-stroke: 2px var(--color-accent);
  filter: drop-shadow(10px 10px 0 #000) brightness(1.2);
  transform: translateY(5px) scale(1.02);
  text-shadow: 
    0 0 15px var(--color-accent),
    0 0 30px rgba(212, 175, 55, 0.4);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: slideUp 1s var(--ease-out-expo) 0.2s both;
}

.hero .hero-actions {
  display: grid;
  grid-template-areas: 
    "primary primary"
    "secondary1 secondary2";
  gap: var(--spacing-md);
  justify-content: center;
  align-content: center;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: slideUp 1s var(--ease-out-expo) 0.4s both;
}

.hero .hero-actions .btn-primary {
  grid-area: primary;
}

.hero .hero-actions .btn-secondary:nth-of-type(1) {
  grid-area: secondary1;
}

.hero .hero-actions .btn-secondary:nth-of-type(2) {
  grid-area: secondary2;
}

.hero .btn-large {
  min-width: 220px;
  width: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  .hero {
    padding: var(--spacing-lg) 0;
  }
  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .hero .hero-actions {
    grid-template-areas: 
      "primary"
      "secondary1"
      "secondary2";
    width: 90%;
    max-width: 320px;
    gap: var(--spacing-sm);
  }
  .hero .btn-large {
    min-width: unset;
  }
  .floating-item {
    font-size: 1.5rem;
  }
}

/* Auth Pages */
.auth-page {
  padding: var(--spacing-xl) 0;
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(41, 98, 255, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(41, 98, 255, 0.05) 0%, transparent 20%);
}

.auth-container {
  background-color: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 450px;
  width: 90%;
  border: 4px solid var(--color-black);
  position: relative;
  z-index: 10;
  animation: fadeInScale 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.auth-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.auth-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  color: var(--color-black);
  text-shadow: 2px 2px 0 var(--color-accent);
  margin-bottom: var(--spacing-xs);
  transition: all 0.5s var(--ease-out-back);
  cursor: pointer;
  display: inline-block;
}

.auth-title:hover {
  transform: skewX(-5deg) rotate(-2deg) scale(1.1);
  text-shadow: 4px 4px 0 var(--color-accent), 0 0 15px rgba(212, 175, 55, 0.2);
}

.auth-subtitle {
  color: var(--color-text-light);
  font-weight: 500;
}

.auth-form .form-group {
  margin-bottom: var(--spacing-md);
  position: relative;
}

.auth-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-black);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  width: 18px;
  height: 18px;
  pointer-events: none;
  transition: color 0.2s;
}

.auth-form input {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 3px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  background-color: var(--color-bg);
}

.auth-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 4px 4px 0 var(--color-black);
  transform: translate(-2px, -2px);
}

.auth-form input:focus + i {
  color: var(--color-primary);
}

.auth-error {
  background-color: #fee2e2;
  color: #ef4444;
  padding: 12px;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  font-size: 0.9rem;
  text-align: center;
  border: 2px solid #ef4444;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: var(--spacing-lg) 0;
  color: var(--color-text-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 2px solid var(--color-border);
}

.auth-divider:not(:empty)::before { margin-right: 1rem; }
.auth-divider:not(:empty)::after { margin-left: 1rem; }

.social-auth {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: 3px solid var(--color-black);
  border-radius: var(--radius-md);
  background: var(--color-white);
  font-weight: 700;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.btn-social:hover {
  background: var(--color-bg);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--color-black);
}

.btn-social:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.auth-footer {
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-light);
  border-top: 2px solid var(--color-border);
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.auth-footer a {
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.back-to-home {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--color-text-light);
  transition: color 0.2s;
  font-size: 0.9rem;
  z-index: 100;
}

.back-to-home:hover {
  color: var(--color-primary);
}

.forgot-password {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: -8px;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.forgot-password:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .auth-container {
    padding: var(--spacing-lg);
    border-width: 3px;
    width: 95%;
  }
  
  .auth-title {
    font-size: 2rem;
  }
  
  .back-to-home {
    top: var(--spacing-sm);
    left: var(--spacing-sm);
  }
}

/* =========================================
   CART PAGE
   ========================================= */
.cart-page {
  background-color: var(--color-bg);
}

.cart-section {
  padding: var(--spacing-xl) 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--spacing-lg);
  align-items: start;
}

.cart-main {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

/* Individual Cart Item Card */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: var(--spacing-md);
  background: var(--color-white);
  padding: var(--spacing-md);
  border: 3px solid var(--color-black);
  border-radius: var(--radius-md);
  align-items: center;
  box-shadow: 4px 4px 0 var(--color-black);
  transition: transform 0.2s;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  background: var(--color-bg);
  border: 2px solid var(--color-black);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.cart-item-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.cart-item-info .price {
  font-weight: 700;
  color: var(--color-primary);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-black);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.qty-val {
  font-weight: 800;
  min-width: 20px;
  text-align: center;
}

.remove-item {
  color: #ef4444;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s;
}

.remove-item:hover {
  transform: scale(1.2);
}

/* Summary Card */
.summary-card {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border: 4px solid var(--color-black);
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 0 var(--color-black);
  position: sticky;
  top: 100px;
}

.summary-card h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  font-style: italic;
  border-bottom: 3px solid var(--color-black);
  padding-bottom: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  font-size: 1.1rem;
}

.summary-row.total {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-top: var(--spacing-md);
}

.summary-divider {
  height: 3px;
  background: var(--color-black);
  margin: var(--spacing-md) 0;
}

.free-text {
  color: #16a34a;
  font-weight: 900;
}

/* Order Tracking Styling */
.tracking-card {
  background: var(--color-white);
  border: 4px solid var(--color-black);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: 8px 8px 0 var(--color-black);
  margin-top: var(--spacing-xl);
}

.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: var(--spacing-xl) 0;
  position: relative;
}

.status-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  flex: 1;
}

.step-circle {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  font-weight: 900;
  transition: all 0.3s;
}

.status-step.active .step-circle {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.2);
}

.status-line {
  height: 4px;
  background: var(--color-black);
  flex: 1;
  margin-top: -30px; /* Align with circle center */
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  
  .summary-card {
    position: static;
  }
}

@media (max-width: 600px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 10px;
    padding: 12px;
  }
  
  .cart-item-info h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
  }

  .cart-item-controls {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 12px;
    margin-top: 4px;
  }

  .remove-item {
    padding: 4px;
  }
}

/* =========================================
   COMMON PAGE HERO (Story, Reviews, etc.)
   ========================================= */
.story-hero,
.reviews-hero,
.donations-hero,
.comments-hero {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
  background: var(--color-black);
  color: var(--color-white);
  border-bottom: 8px solid var(--color-accent);
  overflow: hidden;
  margin-bottom: var(--spacing-xl);
}

.story-hero::before,
.reviews-hero::before,
.donations-hero::before,
.comments-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
  z-index: 1;
}

.page-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  letter-spacing: -2px;
  color: var(--color-white);
  /* Brutalist Outline Shadow */
  text-shadow: 
    -2px -2px 0 #000,  
    2px -2px 0 #000,
    -2px  2px 0 #000,
    2px  2px 0 #000,
    5px 5px 0 var(--color-accent);
  animation: slideUp 1s var(--ease-out-expo) both;
  transition: all 0.6s var(--ease-out-back);
  cursor: pointer;
  display: inline-block;
}

.page-title:hover {
  transform: skewX(-8deg) rotate(-3deg) scale(1.15);
  text-shadow: 
    -2px -2px 0 #000,  
    2px -2px 0 #000,
    -2px  2px 0 #000,
    2px  2px 0 #000,
    10px 10px 0 var(--color-accent),
    0 0 30px rgba(212, 175, 55, 0.4);
}

.page-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: slideUp 1s var(--ease-out-expo) 0.2s both;
}

/* Specific Page Hero Overrides */
.story-hero { border-bottom-color: var(--color-accent); }
.reviews-hero { border-bottom-color: var(--color-accent); }
.donations-hero { border-bottom-color: var(--color-accent); }
.comments-hero { border-bottom-color: var(--color-accent); }

/* Stickers in Hero */
.sticker {
  position: absolute;
  font-size: clamp(2rem, 5vw, 4rem);
  z-index: 1;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.3));
  pointer-events: none;
  animation: floatAround 6s ease-in-out infinite;
}

.sticker-1 { top: 15%; left: 5%; animation-delay: 0s; }
.sticker-2 { top: 10%; right: 10%; animation-delay: -2s; font-size: clamp(3rem, 7vw, 5rem); }
.sticker-3 { bottom: 15%; left: 15%; animation-delay: -4s; }

@keyframes floatAround {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -15px) rotate(5deg); }
  66% { transform: translate(-5px, 10px) rotate(-5deg); }
}

/* =========================================
   STORY PAGE
   ========================================= */
.story-page {
  background-color: var(--color-bg);
}

.student-made-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  animation: spin 20s linear infinite;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.student-made-badge svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.badge-icon {
  font-size: 2rem;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl) 0;
  align-items: center;
  position: relative;
}

.story-text h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text);
}

.story-visuals {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
}

.placeholder-image {
  font-size: 8rem;
  background: var(--color-white);
  border: 4px solid var(--color-black);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.stats-box {
  display: flex;
  gap: var(--spacing-lg);
  background: var(--color-black);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  color: var(--color-white);
  transform: rotate(2deg);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-accent);
  margin: 0;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  opacity: 0.9;
}

/* Timeline */
.journey-section {
  padding: var(--spacing-xl) 0;
  background: var(--color-white);
  border-top: 4px solid var(--color-black);
  border-bottom: 4px solid var(--color-black);
}

.section-title-special {
  text-align: center;
  font-size: 3rem;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: var(--spacing-xl);
  color: var(--color-primary);
  text-shadow: 2px 2px 0 var(--color-accent);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--color-black);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-xl);
  width: 50%;
}

.timeline-item.left { left: 0; padding-right: 40px; text-align: right; }
.timeline-item.right { left: 50%; padding-left: 40px; }

.timeline-dot {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border: 4px solid var(--color-black);
  border-radius: 50%;
  z-index: 2;
}

.timeline-item.left .timeline-dot { right: -12px; }
.timeline-item.right .timeline-dot { left: -12px; }

.timeline-year {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 12px;
  font-weight: 900;
  border-radius: 20px;
  margin-bottom: 8px;
  border: 2px solid var(--color-black);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* Values Flip Cards */
.values-section {
  padding: var(--spacing-xl) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

.value-card {
  perspective: 1000px;
  height: 300px;
}

.value-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.value-card:hover .value-card-inner {
  transform: rotateY(180deg);
}

.value-card-front, .value-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 4px solid var(--color-black);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.value-card-front {
  background-color: var(--color-white);
}

.value-card-back {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: rotateY(180deg);
}

.value-icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
}

/* Founders Note */
.founders-note {
  max-width: 800px;
  margin: var(--spacing-xl) auto;
  padding: 0 var(--spacing-md);
}

.note-container {
  display: flex;
  gap: var(--spacing-lg);
  align-items: flex-start;
  background: #fff9c4; /* Light yellow note color */
  padding: var(--spacing-lg);
  border: 2px solid var(--color-black);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
}

.founder-avatar {
  font-size: 3rem;
  background: var(--color-white);
  border: 2px solid var(--color-black);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.note-text {
  font-family: 'Caveat', cursive; /* Handwritten font */
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: var(--spacing-md);
}

.founder-signature {
  font-weight: 700;
  text-align: right;
}

/* =========================================
   DONATIONS PAGE
   ========================================= */
.donations-page {
  background-color: #f0fdf4; /* Light green tint */
}

.donations-hero {
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.donations-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.donation-card {
  background: var(--color-white);
  border: 3px solid var(--color-black);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s;
}

.donation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.donation-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-primary);
}

.progress-container {
  margin: var(--spacing-md) 0;
}

.progress-bar {
  height: 20px;
  background: #e2e8f0;
  border: 2px solid var(--color-black);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5px;
}

.progress-fill {
  height: 100%;
  background: var(--color-accent);
  border-right: 2px solid var(--color-black);
}

.progress-text {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  text-align: right;
}

.impact-info {
  background: #e6fffa;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  border-left: 4px solid var(--color-primary);
}

.how-it-works {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border: 4px solid var(--color-black);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-xl);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.donation-stories {
  margin-bottom: var(--spacing-xl);
}

.stories-list {
  display: grid;
  gap: var(--spacing-lg);
}

.story-item {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: var(--spacing-lg);
  background: var(--color-white);
  border: 3px solid var(--color-black);
  padding: var(--spacing-lg);
  align-items: center;
  border-radius: var(--radius-md);
}

.story-item.secondary {
  grid-template-columns: 150px 1fr;
}

.story-tag {
  display: inline-block;
  padding: 4px 8px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 8px;
}

.story-tag.secondary { background: #9333ea; }
.story-tag.eco { background: #16a34a; }

.story-image-placeholder {
  font-size: 4rem;
  text-align: center;
  background: #f1f5f9;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
}

/* =========================================
   COMMENTS & REVIEWS PAGES
   ========================================= */
.comments-page, .reviews-page {
  background-color: var(--color-bg);
}

.comments-hero, .reviews-hero {
  text-align: center;
  padding: var(--spacing-xl) 0;
  position: relative;
  z-index: 1;
}

.comments-list, .reviews-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-xl);
}

.comment-card, .review-item {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border: 3px solid var(--color-black);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
  position: relative;
}

.comment-card:hover, .review-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.comment-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.comment-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: rgba(0,0,0,0.05);
  font-family: serif;
  z-index: -1;
}

.comment-author {
  text-align: right;
  font-weight: 700;
  color: var(--color-primary);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 8px;
}

.review-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.stars {
  font-size: 0.9rem;
}

/* Responsive Adjustments for new pages */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
  }
  
  .timeline-item.left, .timeline-item.right {
    left: 0;
  }
  
  .timeline-dot {
    left: 10px !important;
    right: auto !important;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .story-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .story-item.secondary {
    grid-template-columns: 1fr;
  }
  
  .story-image-placeholder {
    order: -1; /* Show image first on mobile */
  }
}
