:root {
  --color-primary: #0abab5;
  --color-primary-dark: #067672;
  --color-primary-darker: #045551;
  --color-accent: #ffb703;
  --color-accent-dark: #a35a00;
  --color-bg: #fdfdfd;
  --color-surface: #ffffff;
  --color-text: #1f2a2a;
  --color-text-light: #5a6a6a;
  --color-whatsapp: #0f7568;
  --color-tiktok: #010101;
  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(10, 186, 181, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img,
picture {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.logo-text span {
  color: var(--color-accent);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  gap: 0.6rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.icon-link:hover {
  transform: translateY(-2px);
}

.icon-link.tiktok {
  background: var(--color-tiktok);
  color: #fff;
}

.icon-link.whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}

/* Hero */

.hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
  color: #fff;
  padding: 4rem 1.25rem;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  text-align: left;
}

.hero-content {
  flex: 1 1 420px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 480px;
  margin: 0 0 2.2rem;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}

.hero-media {
  flex: 1 1 300px;
  max-width: 340px;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-accent);
  color: #1f2a2a;
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}

.btn-tiktok {
  background: var(--color-tiktok);
  color: #fff;
}

.btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-align: center;
  background: var(--color-primary-dark);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-top: 0.9rem;
}

.btn-order:hover {
  background: var(--color-primary-darker);
}

/* Sections */

section {
  padding: 4.5rem 1.25rem;
}

section h2 {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--color-primary-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-top: 0.6rem;
  margin-bottom: 2.8rem;
}

/* About */

.about-inner {
  text-align: center;
  max-width: 640px;
}

.about-inner p {
  color: var(--color-text-light);
  margin-top: 1rem;
}

.about-inner p:first-of-type {
  margin-top: 1.6rem;
}

/* Products */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(10, 186, 181, 0.2);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-info {
  padding: 1.2rem;
}

.product-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.price {
  font-weight: 700;
  color: var(--color-accent-dark);
  font-size: 1.1rem;
}

/* Fundraiser */

.fundraiser {
  background: #eef6f6;
}

.fundraiser-inner {
  text-align: center;
  max-width: 640px;
}

.fundraiser-inner > p {
  color: var(--color-text);
  margin-top: 1.2rem;
}

.fundraiser-inner > p.fundraiser-quota {
  font-weight: 600;
  color: var(--color-primary-dark);
  background: var(--color-surface);
  border-left: 4px solid var(--color-primary-dark);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  margin-top: 1.6rem;
  text-align: left;
}

.btn-fundraiser {
  background: var(--color-primary-dark);
  color: #fff;
  margin-top: 1.6rem;
}

.btn-fundraiser:hover {
  background: var(--color-primary-darker);
}

.fundraiser-inner > p.fundraiser-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.9rem;
}

/* Gallery */

.gallery {
  background: var(--color-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.gallery-item {
  display: block;
  cursor: pointer;
  border-radius: var(--radius);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(10, 20, 20, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.3);
}

/* Contact */

.contact {
  text-align: center;
}

.contact p {
  max-width: 560px;
  margin: 1rem auto 2.2rem;
  color: var(--color-text-light);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Footer */

.site-footer {
  background: #10201f;
  color: #dce8e7;
  padding: 2rem 1.25rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-fundraiser {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #dce8e7;
  opacity: 0.85;
  margin-top: 0.75rem;
}

.footer-fundraiser a {
  text-decoration: underline;
}

.footer-fundraiser a:hover {
  color: var(--color-accent);
}

/* Floating WhatsApp button */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-whatsapp);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  z-index: 200;
  transition: transform 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

/* Responsive */

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-media {
    max-width: 260px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.5rem;
    padding-top: 0.6rem;
    border-top: 1px solid #eee;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .gallery-item {
    flex: 0 0 70%;
    scroll-snap-align: center;
  }
}
