@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
  --primary-color: #16a34a;
  --primary-hover: #15803d;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #6b7280;
  --bg-light: #ffffff1a;
  --border: #e5e5e0;
  --font-main: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding-top: 60px;
}

@media (min-width: 768px) {
  body {
    padding-top: 120px;
  }
}

main {
  min-height: 100vh;
}

.page-content {
  padding-top: 0;
}

.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.navbar-top {
  display: none;
  background: #15803d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .navbar-top {
    display: block;
  }
}

.navbar-top-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

.navbar-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 20;
  flex-shrink: 0;
}

.navbar-logo-img {
  display: none;
  position: absolute; 
  left: 0%;
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@media (min-width: 1024px) {
  .navbar-logo-img {
    display: block;
    position: absolute; 
    height: 230px;
  }
}

.navbar-logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-dark);
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .navbar-logo-text {
    display: none;
  }
}

.navbar-logo-accent {
  color: var(--primary-color);
}

.navbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 32px;
}

.navbar-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(187, 247, 208, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-contact-link:hover {
  color: #ffffff;
}

.navbar-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(187, 247, 208, 0.7);
}

.navbar-main {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.navbar-main-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 60px;
  padding-left: 20px;
}

@media (min-width: 640px) {
  .navbar-main-inner {
    padding-left: 24px;
  }
}

@media (min-width: 1024px) {
  .navbar-main-inner {
    padding-left: 32px;
    height: 80px;
  }
}

.navbar-desktop-links {
  display: none;
  align-items: center;
  gap: 4px;
  height: 100%;
}

@media (min-width: 1024px) {
  .navbar-desktop-links {
    display: flex;
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
  }
}

.navbar-desktop-link {
  position: relative;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #4b5563;
  transition: color 0.2s;
}

.navbar-desktop-link:hover {
  color: #15803d;
}

.navbar-desktop-link.active {
  color: #15803d;
}

.navbar-link-underline {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #f97316;
  transition: width 0.3s;
}

.navbar-desktop-link:hover .navbar-link-underline,
.navbar-desktop-link.active .navbar-link-underline {
  width: 75%;
}

.navbar-actions {
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 10;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .navbar-actions {
    display: flex;
  }
}

.btn-navbar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  white-space: nowrap;
  font-family: var(--font-main);
}

.btn-navbar:hover {
  transform: translateY(-1px);
}

.btn-navbar-primary {
  background: #16a34a;
  color: #ffffff;
}

.btn-navbar-primary:hover {
  background: #15803d;
}

.btn-navbar-donate {
  background: #f97316;
  color: #ffffff;
}

.btn-navbar-donate:hover {
  background: #ea580c;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

.mobile-menu-cta-btn {
  background: #1a1a1a;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-cta-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.mobile-menu-donate-btn {
  background: #f97316;
}

.mobile-menu-donate-btn:hover {
  background: #ea580c;
}

.navbar-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .navbar-mobile-toggle {
    display: none;
  }
}

.navbar-mobile-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

.navbar-mobile-toggle.is-active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.navbar-mobile-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}

.navbar-mobile-toggle.is-active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
}

.mobile-menu-overlay.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

.mobile-menu {
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 1000;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: left 0.3s ease;
}

.mobile-menu.open {
  left: 0;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  height: auto;
  border-bottom: none;
}

.mobile-menu-brand {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.mobile-menu-brand-accent {
  color: var(--primary-color);
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  padding: 4px;
  margin-left: auto;
  transition: color 0.2s;
  font-size: 2rem;
  line-height: 1;
}

.mobile-menu-close:hover {
  color: var(--primary-color);
}

.mobile-menu-nav {
  flex: none;
  overflow-y: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mobile-menu-link {
  display: block;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #1a1a1a;
  border-bottom: none;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  background: none;
  color: var(--primary-color);
}

.mobile-menu-link.active {
  color: var(--primary-color);
}

.modal-overlay-full {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-y: auto;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay-full.open {
  display: flex;
}

.modal-full-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 2;
}

.modal-full-back {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.modal-full-back:hover {
  color: #111827;
}

.modal-full-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  padding: 4px;
  border-radius: 8px;
  transition: all 0.2s;
  margin-left: auto;
}

.modal-full-close:hover {
  color: #4b5563;
  background: #f3f4f6;
}

.modal-full-content {
  padding: 32px 20px;
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 512px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .modal-full-content {
    padding: 40px 32px;
  }
}

.modal-full-title-group {
  margin-bottom: 24px;
}

.modal-full-title-group h2 {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.modal-full-title-group p {
  font-size: 14px;
  font-weight: 300;
  color: #999;
  margin-top: 4px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 2fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group-2col {
  grid-column: span 1;
}

.form-group label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 4px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="number"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 14px;
  font-family: var(--font-main);
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  border-radius: 8px;
}

.form-group input::placeholder {
  color: #d1d5db;
}

.form-group input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08);
}

.form-radio-group {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.form-radio-group-row {
  gap: 24px;
}

.form-radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 10px;
}

.form-radio-group label span {
  font-size: 14px;
  color: #666;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}

.form-radio-group input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #16a34a;
}

.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.form-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 10px;
}

.form-checkbox-group label span {
  font-size: 14px;
  color: #666;
  font-weight: 300;
  text-transform: capitalize;
  letter-spacing: 0;
}

.form-checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  accent-color: #16a34a;
}

.btn-submit {
  margin-top: 8px;
}

.modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 0;
}

.modal-success.hidden {
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

#donateSuccess .success-icon {
  background: #fff7ed;
}

.modal-success h3 {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.modal-success p {
  font-size: 14px;
  font-weight: 300;
  color: #999;
}

.hidden {
  display: none;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 8%;
  overflow: hidden;
  background: #ffffff;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: calc(100vh - 120px);
    padding: 60px 8%;
  }
}

.hero-mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.4;
}

.hero-mountain-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  color: var(--text-dark);
}

.hero-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .hero-title-group {
    flex-direction: row;
    gap: 5px;
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--text-dark);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-title-accent {
  display: block;
  color: var(--primary-color);
}

.hero-title-image {
  height: 220px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .hero-title-image {
    height: 200px;
  }
}

@media (min-width: 768px) {
  .hero-title-image {
    height: 260px;
  }
}

.hero-description {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto 40px;
  color: #1c1a1af4;
  font-weight: 400;
  max-width: 600px;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-main);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: center;
}

@media (min-width: 640px) {
  .btn {
    width: auto;
  }
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.2);
  opacity: 1;
}

.btn-outline {
  border: 2px solid var(--text-dark);
  color: var(--text-dark);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 48px;
}

@media (min-width: 640px) {
  .countdown-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 600px;
  }
}

.countdown-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 163, 74, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.countdown-item:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.countdown-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .countdown-value {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .countdown-value {
    font-size: 3.75rem;
  }
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 8px;
  color: var(--text-muted);
  font-weight: 500;
}

.stats-grid {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: auto;
  margin: 0 auto;
  margin-top: 0;
}

.stat-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(22, 163, 74, 0.1);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 4px;
  font-weight: 500;
}

.about-page {
  background-color: #faf9f6;
  min-height: 100vh;
  padding: 50px 0;
}

.about-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .about-container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .about-container {
    padding: 0 32px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    gap: 64px;
  }
}

.about-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 8px;
}

.about-heading {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .about-heading {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .about-heading {
    font-size: 36px;
  }
}

.about-heading-accent {
  display: block;
  color: #16a34a;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stat-item {
  padding-top: 16px;
}

.about-stat-value {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #16a34a;
}

@media (min-width: 768px) {
  .about-stat-value {
    font-size: 30px;
  }
}

.about-stat-label {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
}

.about-paragraph {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #666;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .about-paragraph {
    font-size: 16px;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image-box {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.about-badge-year {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #16a34a;
}

.about-badge-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #999;
  margin-top: 4px;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 64px;
}

@media (min-width: 768px) {
  .about-mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-mission-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mission-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

@media (min-width: 640px) {
  .about-mission-card {
    padding: 32px;
  }
}

.about-mission-title {
  font-size: 18px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .about-mission-title {
    font-size: 20px;
  }
}

.about-mission-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #666;
}

.contact-page {
  background-color: #faf9f6;
  min-height: 100vh;
  padding: 50px 0;
}

.contact-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .contact-container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .contact-container {
    padding: 0 32px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 48px;
  }
}

.contact-form-card {
  background: #ffffff;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

@media (min-width: 640px) {
  .contact-form-card {
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .contact-form-card {
    padding: 40px;
  }
}

.contact-form-title {
  font-size: 20px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 4px;
}

@media (min-width: 640px) {
  .contact-form-title {
    font-size: 24px;
  }
}

.contact-form-subtitle {
  font-size: 12px;
  font-weight: 300;
  color: #999;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .contact-form-subtitle {
    font-size: 14px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.contact-form-group {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 8px;
}

.contact-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  border-radius: 12px;
  font-family: var(--font-main);
}

.contact-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08);
}

.contact-input::placeholder {
  color: #d1d5db;
}

.contact-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  border-radius: 12px;
  resize: none;
  font-family: var(--font-main);
}

.contact-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08);
}

.contact-textarea::placeholder {
  color: #d1d5db;
}

.contact-submit-btn {
  width: 100%;
  padding: 14px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background-color: #16a34a;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 640px) {
  .contact-submit-btn {
    padding: 16px;
    font-size: 12px;
  }
}

.contact-submit-btn:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.2);
  opacity: 1;
}

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 0;
}

@media (min-width: 768px) {
  .contact-success {
    padding: 64px 0;
  }
}

.contact-success.hidden {
  display: none;
}

.contact-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-success-title {
  font-size: 20px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .contact-success-title {
    font-size: 24px;
  }
}

.contact-success-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: #999;
  max-width: 320px;
}

@media (min-width: 640px) {
  .contact-success-text {
    font-size: 14px;
  }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: #ffffff;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .contact-info-card {
    padding: 24px;
  }
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-content {
  min-width: 0;
}

.contact-info-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.contact-info-detail {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: #666;
}

.celebration-overlay {
  position: fixed;
  inset: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(5, 46, 22, 0.95);
  backdrop-filter: blur(12px);
}

.celebration-overlay.hidden {
  display: none;
}

.confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  border-radius: 50%;
  top: -20px;
}

.celebration-content {
  position: relative;
  text-align: center;
  padding: 24px;
}

.celebration-go {
  font-size: 60px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #4ade80;
  animation: pulse 2s infinite;
}

@media (min-width: 768px) {
  .celebration-go {
    font-size: 96px;
  }
}

.celebration-title {
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .celebration-title {
    font-size: 36px;
  }
}

.celebration-subtitle {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 300;
}

.program-page {
  background-color: #faf9f6;
  min-height: 100vh;
  padding: 50px 0;
}

.program-container {
  max-width: 672px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .program-container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .program-container {
    padding: 0 32px;
  }
}

.program-header {
  margin-bottom: 48px;
}

.program-title {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .program-title {
    font-size: 30px;
  }
}

.program-date {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  margin-bottom: 4px;
}

.program-subtitle {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: #999;
  max-width: 448px;
}

.program-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.program-form-row {
  display: flex;
  gap: 16px;
}

.program-form-group {
  display: flex;
  flex-direction: column;
}

.program-form-group-name {
  flex: 1;
}

.program-form-group-gender {
  width: 33.333%;
}

.program-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 8px;
}

.program-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 14px;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: var(--font-main);
  border-radius: 8px;
}

.program-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08);
}

.program-input::placeholder {
  color: #d1d5db;
}

.program-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.program-radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.program-radio-label span {
  font-size: 14px;
  color: #666;
  font-weight: 300;
}

.program-radio-label input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #16a34a;
  margin: 0;
}

.program-submit-btn {
  width: 100%;
  padding: 14px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background-color: #16a34a;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .program-submit-btn {
    padding: 16px;
    font-size: 12px;
  }
}

.program-submit-btn:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.2);
  opacity: 1;
}

.program-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 96px 0;
}

.program-success.hidden {
  display: none;
}

.program-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.program-success-title {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .program-success-title {
    font-size: 30px;
  }
}

.program-success-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: #999;
  max-width: 320px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .program-success-text {
    font-size: 14px;
  }
}

.program-reset-btn {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #16a34a;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.program-reset-btn:hover {
  opacity: 0.6;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #15803d;
  padding: 40px 0;
  position: relative;
  z-index: 0;
}

.footer-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .footer-container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding: 0 32px;
  }
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
}

.footer-reg-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footer-reg-link {
  opacity: 1;
  transition: opacity 0.2s;
}

.footer-reg-link:hover {
  opacity: 0.8;
}

.footer-reg-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 300;
  color: #bbf7d0;
  text-decoration: none;
  transition: color 0.2s;
  flex-shrink: 0;
}

.footer-contact-link:hover {
  color: #4ade80;
}

.footer-phone-group {
  display: flex;
  flex-direction: column;
}

.footer-phone-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.footer-chevron {
  transition: transform 0.3s;
}

.footer-chevron.open {
  transform: rotate(180deg);
}

.footer-phone-dropdown {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.25s ease-in-out, opacity 0.25s ease-in-out, padding 0.25s ease-in-out;
}

.footer-phone-dropdown.open {
  max-height: 120px;
  opacity: 1;
  padding-top: 8px;
}

.footer-phone-number {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: #bbf7d0;
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.2s;
}

.footer-phone-number:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: #ffffff;
}

.footer-bottom-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-link:hover {
  color: #d1d5db;
}

.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 49;
  background: #15803d;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.sticky-footer.visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

@keyframes confettiFall {
  from {
    transform: translateY(-50px) rotate(0deg);
    opacity: 1;
  }
  to {
    transform: translateY(110vh) rotate(720deg);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes merchFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.merch-page {
  background-color: #faf9f6;
  min-height: 100vh;
  padding: 32px 0 60px;
}

@media (min-width: 640px) {
  .merch-page {
    padding: 48px 0 80px;
  }
}

@media (min-width: 1024px) {
  .merch-page {
    padding: 56px 0 100px;
  }
}

.success-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  z-index: 1100;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.success-toast:not(.hidden) {
  transform: translateX(-50%) translateY(0);
}

.toast-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #15803d;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(21, 128, 61, 0.35);
}

.toast-inner svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.tabs-bar {
  position: sticky;
  top: 60px;
  z-index: 50;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .tabs-bar {
    top: 120px;
  }
}

.tabs-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tabs-container::-webkit-scrollbar {
  display: none;
}

@media (min-width: 640px) {
  .tabs-container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .tabs-container {
    padding: 10 32px;
  }
}

.tab-btn {
  position: relative;
  flex-shrink: 0;
  padding: 16px 20px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .tab-btn {
    padding: 18px 28px;
    font-size: 12px;
  }
}

.tab-btn:hover {
  color: #666;
}

.tab-btn.active {
  color: #16a34a;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #16a34a;
  border-radius: 2px 2px 0 0;
}

@media (min-width: 640px) {
  .tab-btn.active::after {
    left: 28px;
    right: 28px;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  background: #16a34a;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1;
}

.main-content {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .main-content {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .main-content {
    padding: 0 32px;
  }
}

.lbl {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 8px;
  display: block;
}

.contact-cta {
  max-width: 1152px;
  margin: 56px auto 0;
  padding: 40px 32px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .contact-cta {
    padding: 52px 48px;
  }
}

.contact-cta h2 {
  font-size: 20px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .contact-cta h2 {
    font-size: 24px;
  }
}

.contact-cta p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #999;
  max-width: 420px;
  margin: 0 auto 24px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: #1a1a1a;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-dark:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.btn-dark svg {
  width: 14px;
  height: 14px;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0 16px;
}

.filter-search {
  position: relative;
  flex: 1;
  max-width: 320px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #bbb;
  pointer-events: none;
}

.filter-search input {
  width: 100%;
  padding: 11px 16px 11px 40px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 100px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.filter-search input::placeholder {
  color: #d1d5db;
}

.filter-search input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08);
}

.filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 18px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-toggle-btn svg {
  width: 14px;
  height: 14px;
}

.filter-toggle-btn:hover {
  border-color: #16a34a;
  color: #16a34a;
}

.filter-toggle-btn.active {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.filter-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease,
              margin 0.3s ease;
  opacity: 0;
  margin-bottom: 0;
}

.filter-panel.open {
  max-height: 300px;
  opacity: 1;
  margin-bottom: 8px;
}

.filter-panel-inner {
  padding: 20px 0 12px;
  border-bottom: 1px solid var(--border);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.filter-group {
  min-width: 0;
}

.filter-group .lbl {
  margin-bottom: 10px;
}

.price-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-range input {
  width: 90px;
  padding: 9px 12px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 400;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.price-range input::placeholder {
  color: #d1d5db;
}

.price-range input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08);
}

.price-range span {
  color: #ccc;
  font-size: 13px;
}

.color-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.color-btn:hover {
  transform: scale(1.15);
}

.color-btn.selected {
  border-color: #16a34a;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.25),
              inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.color-btn[style*="background:#fff"],
.color-btn[style*="background:#ffffff"],
.color-btn[style*="background: rgb(255"] {
  box-shadow: inset 0 0 0 1px #ddd;
}

.color-btn.selected[style*="background:#fff"],
.color-btn.selected[style*="background:#ffffff"],
.color-btn.selected[style*="background: rgb(255"] {
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.25),
              inset 0 0 0 1px #ddd;
}

.size-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.size-btn {
  padding: 7px 14px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #666;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.size-btn:hover {
  border-color: #16a34a;
  color: #16a34a;
}

.size-btn.selected {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.clear-filters {
  margin-top: 14px;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #16a34a;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.clear-filters:hover {
  opacity: 0.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 20px;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  animation: merchFadeUp 0.4s ease both;
}

.product-card:nth-child(1) { animation-delay: 0s; }
.product-card:nth-child(2) { animation-delay: 0.06s; }
.product-card:nth-child(3) { animation-delay: 0.12s; }
.product-card:nth-child(4) { animation-delay: 0.18s; }
.product-card:nth-child(5) { animation-delay: 0.24s; }
.product-card:nth-child(6) { animation-delay: 0.30s; }
.product-card:nth-child(7) { animation-delay: 0.36s; }
.product-card:nth-child(8) { animation-delay: 0.42s; }

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: rgba(22, 163, 74, 0.2);
}

.img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f4f1;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .img-wrap img {
  transform: scale(1.05);
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #bbb;
  transition: all 0.25s;
  z-index: 2;
}

.wishlist-btn svg {
  width: 16px;
  height: 16px;
}

.wishlist-btn:hover {
  color: #ef4444;
  background: #ffffff;
  transform: scale(1.1);
}

.wishlist-btn.wished {
  color: #ef4444;
}

.product-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  padding: 12px 14px 2px;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .product-card h3 {
    font-size: 14px;
    padding: 14px 16px 2px;
  }
}

.product-card .price {
  font-size: 13px;
  font-weight: 500;
  color: #16a34a;
  padding: 0 14px;
}

@media (min-width: 640px) {
  .product-card .price {
    font-size: 14px;
    padding: 0 16px;
  }
}

.color-dots {
  display: flex;
  gap: 5px;
  padding: 8px 14px 14px;
}

@media (min-width: 640px) {
  .color-dots {
    padding: 10px 16px 16px;
  }
}

.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.color-dot[style*="background:#fff"],
.color-dot[style*="background:#ffffff"],
.color-dot[style*="background: rgb(255"] {
  box-shadow: inset 0 0 0 1px #ddd;
}

.product-detail {
  padding-top: 24px;
  animation: merchFadeUp 0.35s ease both;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 28px;
  transition: color 0.2s;
}

.back-btn svg {
  width: 16px;
  height: 16px;
}

.back-btn:hover {
  color: #16a34a;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .detail-grid {
    gap: 64px;
  }
}

.detail-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f5f4f1;
}

.detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-info h2 {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 4px;
}

@media (min-width: 640px) {
  .detail-info h2 {
    font-size: 30px;
  }
}

.detail-info > .price {
  font-size: 20px;
  font-weight: 500;
  color: #16a34a;
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .detail-info > .price {
    font-size: 24px;
  }
}

.option-group {
  margin-bottom: 20px;
}

.option-group .lbl {
  margin-bottom: 10px;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-option {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.color-option:hover {
  transform: scale(1.1);
}

.color-option.selected {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2),
              inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.color-option[style*="background:#fff"],
.color-option[style*="background:#ffffff"],
.color-option[style*="background: rgb(255"] {
  box-shadow: inset 0 0 0 1px #ddd;
}

.color-option.selected[style*="background:#fff"],
.color-option.selected[style*="background:#ffffff"],
.color-option.selected[style*="background: rgb(255"] {
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2),
              inset 0 0 0 1px #ddd;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-option {
  min-width: 48px;
  padding: 10px 18px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.size-option:hover {
  border-color: #16a34a;
  color: #16a34a;
}

.size-option.selected {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-control button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  color: #0b0b0b;
  transition: all 0.2s;
}

.qty-control button svg {
  width: 16px;
  height: 16px;
}

.qty-control button:hover {
  background: #f5f4f1;
  color: #16a34a;
}

.qty-control span {
  width: 48px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 42px;
}

.add-to-cart-btn {
  margin-top: 28px;
  width: 100%;
  padding: 16px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: #16a34a;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 640px) {
  .add-to-cart-btn {
    font-size: 13px;
    padding: 18px;
  }
}

.add-to-cart-btn:not(:disabled):hover {
  background: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.25);
}

.add-to-cart-btn:disabled {
  cursor: not-allowed;
  opacity: 1;
}

.hint-text {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 300;
  color: #bbb;
  font-style: italic;
}

.list-container {
  padding-top: 28px;
}

.list-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
  animation: merchFadeUp 0.3s ease both;
}

.list-item:nth-child(1) { animation-delay: 0s; }
.list-item:nth-child(2) { animation-delay: 0.05s; }
.list-item:nth-child(3) { animation-delay: 0.1s; }
.list-item:nth-child(4) { animation-delay: 0.15s; }
.list-item:nth-child(5) { animation-delay: 0.2s; }

.list-item:first-of-type {
  padding-top: 0;
}

.thumb {
  width: 80px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  background: #f5f4f1;
  transition: opacity 0.2s;
}

.thumb:hover {
  opacity: 0.85;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .thumb {
    width: 96px;
    height: 120px;
  }
}

.list-item .info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list-item .info > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.list-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.list-item .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: #999;
}

.list-item .actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-outline-sm {
  padding: 8px 16px;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-outline-sm:hover {
  border-color: #16a34a;
  color: #16a34a;
}

.text-btn {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 500;
  color: #bbb;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.text-btn svg {
  width: 14px;
  height: 14px;
}

.text-btn:hover {
  color: #ef4444;
}

.remove-cart-item {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: #ccc;
}

.remove-cart-item:hover {
  color: #ef4444;
}

.qty-control-sm {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.qty-control-sm button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  color: #999;
  transition: all 0.2s;
}

.qty-control-sm button svg {
  width: 12px;
  height: 12px;
}

.qty-control-sm button:hover {
  background: #f5f4f1;
  color: #16a34a;
}

.qty-control-sm span {
  width: 36px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 32px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 16px;
  margin-top: 8px;
  border-top: 2px solid var(--border);
}

.total-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
}

.total-amount {
  font-size: 22px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .total-amount {
    font-size: 26px;
  }
}

.list-container > .btn-primary {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  border-radius: 100px;
}

@media (min-width: 640px) {
  .list-container > .btn-primary {
    font-size: 13px;
    padding: 18px;
  }
}

.checkout-form {
  max-width: 520px;
  padding-top: 28px;
}

.checkout-form .form-group {
  margin-bottom: 20px;
}

.checkout-form .form-group input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.checkout-form .form-group input::placeholder {
  color: #d1d5db;
}

.checkout-form .form-group input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.08);
}

.checkout-form form > .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  border-radius: 100px;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .checkout-form form > .btn-primary {
    font-size: 13px;
    padding: 18px;
  }
}

/* Payment section styles */
.payment-section {
  max-width: 520px;
  padding-top: 28px;
}

.payment-section .lbl {
  margin-bottom: 20px;
}

.payment-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.payment-tab {
  flex: 1;
  padding: 10px 16px;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
  background: #f3f4f6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.payment-tab.active {
  background: #16a34a;
  color: #ffffff;
}

.payment-content {
  display: none;
}

.payment-content.active {
  display: block;
}

.qr-wrapper {
  max-width: 200px;
  margin: 1rem auto;
}

.qr-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.till-number {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: #f5f5f5;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  display: inline-block;
  margin: 0.5rem 0;
  color: #1a1a1a;
}

.copy-btn {
  margin-top: 0.5rem;
  background: none;
  border: 1px solid #ccc;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: var(--font-main);
  color: #666;
  transition: background 0.2s;
}

.copy-btn:hover {
  background: #f0f0f0;
}

.paid-btn {
  width: 100%;
  padding: 16px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: #16a34a;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  margin-top: 8px;
}

.paid-btn:hover {
  background: #15803d;
  transform: translateY(-2px);
}

.back-to-form-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s;
}

.back-to-form-btn:hover {
  color: #1a1a1a;
}

/* Responsive utilities */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.4rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  .navbar-main-inner {
    height: 60px;
    padding-left: 20px;
    padding-right: 16px;
  }

  .navbar-desktop-links {
    display: none;
  }

  .navbar-actions {
    display: none;
  }

  .hero-section {
    min-height: calc(100vh - 60px);
    padding: 30px 8%;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-title-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-title-image {
    height: 100px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .countdown-grid {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  .navbar-main-inner {
    padding-left: 20px;
    padding-right: 16px;
    height: 60px;
  }

  .hero-section {
    min-height: calc(100vh - 60px);
    padding: 20px 8%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-title-image {
    height: 80px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .countdown-grid {
    gap: 8px;
  }

  .countdown-item {
    padding: 12px;
  }

  .countdown-value {
    font-size: 1.5rem;
  }

  .merch-page {
    padding: 20px 0 48px;
  }

  .tabs-bar {
    top: 60px;
  }

  .tab-btn {
    padding: 14px 14px;
    font-size: 10px;
  }

  .product-grid {
    gap: 12px;
  }

  .product-card h3 {
    font-size: 12px;
    padding: 10px 12px 2px;
  }

  .product-card .price {
    font-size: 12px;
    padding: 0 12px;
  }

  .color-dots {
    padding: 6px 12px 12px;
  }

  .detail-info h2 {
    font-size: 20px;
  }

  .detail-info > .price {
    font-size: 18px;
  }

  .list-item {
    gap: 12px;
  }

  .thumb {
    width: 64px;
    height: 80px;
  }

  .list-item .actions {
    gap: 8px;
  }

  .cart-total {
    padding: 16px 0 12px;
  }

  .total-amount {
    font-size: 20px;
  }

  .contact-cta {
    margin-top: 40px;
    padding: 28px 20px;
  }

  .contact-cta h2 {
    font-size: 18px;
  }

  .contact-cta p {
    font-size: 12px;
  }
}

/* ===== Testimonials Page ===== */
.testimonials-page {
  background-color: #faf9f6;
  min-height: 100vh;
  padding: 50px 0;
}

.max-w-6xl {
  max-width: 1152px;
}
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

.lbl {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 0.875rem;
  font-weight: 300;
  color: #999;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

/* Featured grid */
.featured-section {
  margin-bottom: 4rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.featured-card {
  cursor: pointer;
  background: #fff;
  border: 1px solid #e5e5e0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.featured-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.featured-card-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: #eeecea;
  overflow: hidden;
}
.featured-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.featured-card:hover .featured-card-img-wrap img {
  transform: scale(1.03);
}
.play-btn-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: background 0.3s;
}
.featured-card:hover .play-btn-overlay {
  background: rgba(0,0,0,0.35);
}
.play-icon-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon-circle i {
  color: #16a34a;
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.featured-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.featured-card-body h3 {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.featured-card-body .quote-preview {
  font-size: 0.875rem;
  font-weight: 300;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}
.featured-card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #e5e5e0;
  padding-top: 1rem;
}
.featured-card-footer .avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f0fdf4;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-card-footer .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.featured-card-footer .name {
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a1a1a;
}
.featured-card-footer .role {
  font-size: 0.625rem;
  color: #999;
}

/* Community grid */
.community-section {
  margin-bottom: 4rem;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e5e5e0;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.testimonial-card .quote-icon {
  color: #dcfce7;
  width: 20px;
  height: 20px;
  margin-bottom: 0.75rem;
}
.testimonial-card .quote-text {
  font-size: 0.875rem;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.5rem;
}
.testimonial-card .author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid #e5e5e0;
  padding-top: 1rem;
  margin-bottom: 0.5rem;
}
.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-avatar i {
  color: #9ca3af;
}
.author-info {
  flex: 1;
  min-width: 0;
}
.author-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.author-role {
  font-size: 0.625rem;
  color: #999;
}
.delete-story-btn {
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  padding: 0.25rem;
}
.delete-story-btn:hover {
  color: #ef4444;
}
.delete-story-btn svg {
  width: 20px;
  height: 20px;
}

.like-row {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #e5e5e0;
  padding-top: 0.5rem;
}
.like-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 0.625rem;
  font-weight: 500;
}
.like-btn.liked {
  color: #ef4444;
}
.like-btn svg {
  width: 14px;
  height: 14px;
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid #e5e5e0;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.cta-section p {
  font-size: 0.875rem;
  font-weight: 300;
  color: #999;
  max-width: 28rem;
  margin: 0 auto 2rem;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.btn-primary-cta {
  background: #16a34a;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-primary-cta:hover { opacity: 0.9; }
.btn-outline-cta {
  border: 1px solid #e5e5e0;
  color: #1a1a1a;
  background: transparent;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}
.btn-outline-cta:hover { background: #f3f4f6; }
.event-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
}
.icon-green { color: #16a34a; width: 12px; height: 12px; }

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.25s, opacity 0.25s;
}
.modal-overlay.active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.modal-content {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e5e0;
  position: relative;
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.active .modal-content {
  transform: scale(1);
}
.story-form-modal {
  max-width: 32rem;
}
.modal-header-bar {
  height: 4px;
  background: #16a34a;
  border-radius: 12px 12px 0 0;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #030303;
  cursor: pointer;
  padding: 0.25rem;
}
.modal-close-btn:hover { color: #4b5563; }
.form-header {
  padding: 1.5rem 1.5rem 0;
}
.form-header h2 {
  font-size: 1.25rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.form-header p {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.25rem;
}
#storyForm {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e5e0;
  border-radius: 12px;
  background: transparent;
  font-size: 0.875rem;
  color: #1a1a1a;
  outline: none;
  font-family: inherit;
}
.form-group textarea { resize: none; }
.form-group input:focus,
.form-group textarea:focus { border-color: #9ca3af; }

.file-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.file-label {
  flex: 1;
  border: 1px dashed #e5e5e0;
  border-radius: 12px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.75rem;
  color: #999;
}
.file-label:hover { border-color: #9ca3af; }
.icon-gray { color: #9ca3af; width: 14px; height: 14px; }
.image-preview-wrapper {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #e5e5e0;
  overflow: hidden;
  border-radius: 6px;
}
.image-preview-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.remove-image-btn {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
  color: #fff;
}
.image-preview-wrapper:hover .remove-image-btn { opacity: 1; }
.file-hint {
  font-size: 0.625rem;
  color: #bbb;
  margin-top: 0.25rem;
}
.btn-submit-story {
  width: 100%;
  background: #16a34a;
  color: #fff;
  padding: 0.875rem;
  border: none;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.success-message {
  padding: 3rem 1.5rem;
  text-align: center;
}
.success-message .success-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.icon-green-lg { color: #16a34a; width: 2rem; height: 2rem; }
.success-message h3 {
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.success-message p {
  font-size: 0.75rem;
  color: #999;
}

/* Crop modal */
.crop-modal {
  max-width: 32rem;
  padding: 1.5rem;
}
.crop-modal h3 {
  font-size: 1.125rem;
  font-weight: 200;
  margin-bottom: 1rem;
  color: #1a1a1a;
}
.cropper-container {
  width: 100%;
  height: 16rem;
  background: #f3f4f6;
}
.cropper-container img {
  max-width: 100%;
  display: block;
}
.crop-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.btn-cancel {
  background: transparent;
  border: 1px solid #e5e5e0;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
}
.btn-crop-confirm {
  background: #16a34a;
  border: none;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
}

/* Video modal */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.video-modal-overlay.active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 64rem;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.play-icon-large {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon-large i {
  width: 2rem;
  height: 2rem;
  color: #fff;
  fill: white;
}
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 2rem 0.75rem 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.video-modal-container:hover .video-controls,
.video-controls.visible {
  opacity: 1;
}
.progress-bar-container {
  padding: 0 0.25rem;
  margin-bottom: 0.25rem;
}
.progress-bar-bg {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.progress-bar-bg:hover {
  height: 5px;
}
.progress-bar-fill {
  height: 100%;
  background: #16a34a;
  border-radius: 2px;
  width: 0%;
}
.progress-bar-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.controls-left,
.controls-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.control-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.375rem;
  display: flex;
}
.control-btn i { width: 20px; height: 20px; }
.volume-slider-wrapper {
  width: 0;
  overflow: hidden;
  transition: width 0.2s;
  display: flex;
  align-items: center;
}
.controls-left:hover .volume-slider-wrapper {
  width: 6rem;
}
.volume-slider-bg {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  position: relative;
}
.volume-slider-fill {
  height: 100%;
  background: #fff;
  border-radius: 2px;
  width: 100%;
}
.volume-slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.time-display {
  font-size: 0.75rem;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.hidden { display: none !important; }
.feather-icon { width: 16px; height: 16px; stroke-width: 1.5; }
.fill-white { fill: white; }

/* ===== Gallery Page ===== */
.gallery-page {
  background-color: #faf9f6;
  min-height: 100vh;
  padding: 50px 0;
}

.max-w-6xl { max-width: 1152px; margin: 0 auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; } }

.gallery-section {
  margin-bottom: 4rem;
}

/* Scrollable row */
.scrollable-row-wrapper {
  position: relative;
  margin-bottom: 3rem;
}
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid #e5e5e0;
  border-radius: 50%;
  color: #4b5563;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.scroll-btn:hover {
  opacity: 1;
  background: #ffffff;
}
.scroll-left {
  left: 0.5rem;
}
.scroll-right {
  right: 0.5rem;
}
@media (min-width: 640px) {
  .scroll-left { left: 1rem; }
  .scroll-right { right: 1rem; }
}
.scroll-btn i {
  width: 20px;
  height: 20px;
}

.scroll-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0 3rem; /* space for buttons */
}
.scroll-container::-webkit-scrollbar {
  display: none;
}
.scroll-inner {
  display: flex;
  gap: 1rem;
  width: max-content;
}
@media (min-width: 640px) {
  .scroll-inner { gap: 1.5rem; }
}

.gallery-card {
  width: 260px;
  height: 240px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid #e5e5e0;
  position: relative;
}
@media (min-width: 640px) {
  .gallery-card { width: 320px; height: 340px; }
}
@media (min-width: 768px) {
  .gallery-card { width: 450px; height: 450px; }
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.gallery-card:hover img {
  transform: scale(1.1);
}
.card-overlay-icons {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  color: #4b5563;
  font-size: 0.75rem;
  z-index: 10;
}
.card-overlay-icons i {
  width: 12px;
  height: 12px;
}
.card-overlay-icons span {
  font-size: 0.625rem;
  font-weight: 500;
}
.card-overlay-icons .divider-pipe {
  width: 1px;
  height: 14px;
  background: #d1d5db;
}
.card-title-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.5s;
}
.gallery-card:hover .card-title-overlay {
  opacity: 1;
}
.card-title-overlay h3 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  transform: translateY(0.5rem);
  transition: transform 0.5s;
}
.gallery-card:hover .card-title-overlay h3 {
  transform: translateY(0);
}

/* CTA section */
.cta-gallery {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}
.cta-gallery h2 {
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
.cta-gallery p {
  font-size: 0.875rem;
  font-weight: 300;
  color: #999;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}
.btn-primary-cta {
  background: #16a34a;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}
.btn-primary-cta:hover { opacity: 0.9; }
.btn-outline-cta {
  border: 1px solid #e5e5e0;
  color: #1a1a1a;
  background: transparent;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.btn-outline-cta:hover { background: #f3f4f6; }

/* Gallery Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.25s, opacity 0.25s;
}
.modal-overlay.active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.gallery-modal-content {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e5e0;
  width: 100%;
  max-width: 72rem;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.modal-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
@media (min-width: 768px) {
  .modal-body { flex-direction: row; }
}
.modal-image-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.modal-image-container img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
}
@media (min-width: 768px) {
  .modal-image-container img { max-height: 80vh; }
}
.modal-comments-panel {
  width: 100%;
  max-height: 40vh;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .modal-comments-panel {
    width: 320px;
    max-height: none;
    border-left: 1px solid #e5e5e0;
  }
}
.modal-comments-panel h3 {
  font-size: 1.25rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.comments-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.25rem;
  margin-bottom: 1rem;
  max-height: 30vh;
}
@media (min-width: 768px) {
  .comments-list { max-height: 55vh; }
}
.comment-item {
  border: 1px solid #e5e5e0;
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
}
.comment-text {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.25rem;
  word-break: break-word;
}
.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comment-date {
  font-size: 0.625rem;
  color: #bbb;
}
.comment-actions {
  display: flex;
  gap: 0.25rem;
}
.comment-actions button {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.125rem;
}
.comment-actions button:hover {
  color: #16a34a;
}
.edit-comment-area {
  margin-bottom: 1rem;
}
.edit-comment-area textarea {
  width: 100%;
  border: 1px solid #e5e5e0;
  background: transparent;
  padding: 0.5rem;
  font-size: 0.75rem;
  color: #1a1a1a;
  outline: none;
  resize: none;
  border-radius: 8px;
}
.edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.edit-actions button {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
}
.edit-actions button:first-child { color: #999; }
.edit-actions button:last-child { color: #16a34a; }
.comment-form {
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid #e5e5e0;
  padding-top: 1rem;
}
.comment-form input {
  flex: 1;
  border: 1px solid #e5e5e0;
  background: transparent;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: #1a1a1a;
  outline: none;
  border-radius: 8px;
}
.comment-form button {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.25rem;
}
.comment-form button:disabled {
  color: #e5e5e0;
  cursor: default;
}
.comment-form button:not(:disabled):hover {
  color: #16a34a;
}
.hidden { display: none !important; }

.main-content::-webkit-scrollbar {
  width: 6px;
}

.main-content::-webkit-scrollbar-track {
  background: transparent;
}

.main-content::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.main-content::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .about-grid {
    gap: 36px;
  }

  .about-heading {
    font-size: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .program-container {
    max-width: 600px;
  }

  .merch-page {
    padding: 40px 0 70px;
  }

  .tabs-container {
    padding: 0 20px;
  }

  .tab-btn {
    padding: 16px 22px;
  }

  .main-content {
    padding: 0 20px;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .product-card h3 {
    font-size: 13px;
    padding: 12px 14px 2px;
  }

  .product-card .price {
    font-size: 13px;
    padding: 0 14px;
  }

  .color-dots {
    padding: 8px 14px 14px;
  }

  .detail-grid {
    gap: 36px;
  }

  .detail-info h2 {
    font-size: 26px;
  }

  .detail-info > .price {
    font-size: 22px;
  }

  .list-container {
    padding-top: 24px;
  }

  .list-item {
    gap: 16px;
  }

  .thumb {
    width: 90px;
    height: 110px;
  }

  .cart-total {
    padding: 16px 0 14px;
  }

  .total-amount {
    font-size: 24px;
  }

  .checkout-form {
    max-width: 480px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .featured-card-body {
    padding: 1rem 1.25rem 1.25rem;
  }

  .featured-card-body h3 {
    font-size: 1rem;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .testimonial-card {
    padding: 1.25rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .modal-content {
    max-width: 32rem;
  }

  .story-form-modal {
    max-width: 36rem;
  }

  .gallery-page {
    padding: 40px 0;
  }

  .gallery-card {
    width: 340px;
    height: 340px;
  }

  .scroll-inner {
    gap: 1.25rem;
  }

  .modal-comments-panel {
    width: 280px;
  }
}