:root {
  --teal: #17a5a1;
  --teal-dark: #0d7e7b;
  --orange: #f4842a;
  --purple: #8a5cc2;
  --yellow: #ffc93c;
  --pink: #ff8fa3;
  --cream: #fffaf0;
  --ink: #2c2440;
  --ink-soft: #5b5470;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(44, 36, 64, 0.1);
  --shadow-pop: 0 14px 0 rgba(0,0,0,0.08);
  --font-display: "Baloo 2", "Comic Sans MS", "Segoe UI", sans-serif;
  --font-body: "Quicksand", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--yellow);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  height: 56px;
  width: auto;
  border-radius: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 700;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
}

.nav-link.active,
.nav-link:hover {
  color: var(--teal-dark);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
}

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 0 var(--teal-dark);
  transition: transform 0.15s ease;
  white-space: nowrap;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  width: 22px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 0 #c4611a;
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 6px 0 rgba(0,0,0,0.12);
  border: 2px solid var(--ink);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 6px 0 var(--teal-dark);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background: radial-gradient(circle at 15% 20%, rgba(255, 201, 60, 0.35), transparent 40%),
              radial-gradient(circle at 85% 15%, rgba(138, 92, 194, 0.25), transparent 45%),
              radial-gradient(circle at 50% 100%, rgba(23, 165, 161, 0.2), transparent 50%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  transform: rotate(-2deg);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--purple);
}

.hero h1 span { color: var(--teal-dark); }

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-art {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-art img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}

.hero-art .tile-a { transform: rotate(-4deg) translateY(10px); }
.hero-art .tile-b { transform: rotate(3deg); }
.hero-art .tile-c { transform: rotate(2deg); }
.hero-art .tile-d { transform: rotate(-3deg) translateY(-10px); }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
}

.hero-stat span {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== Section headings ===== */
.section {
  padding: 70px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(23,165,161,0.06), rgba(255,201,60,0.08));
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.section-head .eyebrow {
  color: var(--teal-dark);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--ink);
}

.section-head h2 .accent { color: var(--orange); }

.section-head p { color: var(--ink-soft); }

/* ===== Category grid (home) ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(44,36,64,0.16);
}

.category-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1ede0;
}

.category-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card:hover .thumb img { transform: scale(1.08); }

.category-card .card-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.category-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 14px;
  flex: 1;
}

.category-card .card-link {
  font-weight: 800;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== Why us ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
}

.feature-card h3 { font-size: 1.05rem; }
.feature-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 0; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 50ch; margin-inline: auto; }

.cta-banner .btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 6px 0 #cc9f1f;
}

/* ===== Products page ===== */
.products-hero {
  padding: 56px 0 30px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,201,60,0.25), transparent);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 50px;
}

.filter-chip {
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-chip:hover { background: var(--yellow); }

.filter-chip.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.product-section {
  padding: 20px 0 50px;
  scroll-margin-top: 100px;
}

.product-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-section-head h2 { margin-bottom: 4px; color: var(--purple); }
.product-section-head p { color: var(--ink-soft); margin: 0; }

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-tile {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.product-tile .thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f1ede0;
}

.product-tile .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-tile:hover .thumb img { transform: scale(1.06); }

.product-tile .tile-foot {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-tile .tile-foot span {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.product-tile .tile-foot a {
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 0.85rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 22, 48, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox-content {
  max-width: 640px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.lightbox-content img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  background: #f1ede0;
}

.lightbox-info {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ===== About page ===== */
.about-hero {
  padding: 60px 0;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 10px;
}

.value-card {
  background: var(--white);
  padding: 26px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border-top: 6px solid var(--yellow);
}

.value-card:nth-child(2) { border-top-color: var(--pink); }
.value-card:nth-child(3) { border-top-color: var(--teal); }
.value-card:nth-child(4) { border-top-color: var(--purple); }

.value-card h3 { font-size: 1.05rem; }
.value-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 0; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-method .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-method h4 { margin-bottom: 2px; font-size: 1rem; }
.contact-method p { margin: 0; color: var(--ink-soft); font-size: 0.9rem; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid #e5ded0;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 12px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  margin-top: 40px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 24px 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  height: 48px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.footer-links, .footer-connect {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4, .footer-connect h4 {
  color: var(--yellow);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.footer-links a, .footer-connect a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.footer-links a:hover, .footer-connect a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  padding: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ===== Floating WhatsApp button ===== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: #25d366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid.reverse .about-copy { order: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 30px;
    gap: 18px;
    border-bottom: 3px solid var(--yellow);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .brand-logo { height: 46px; }
  .hero { padding: 40px 0 60px; }
  .section { padding: 50px 0; }
}

/* Utility color assigns for feature/contact icons via inline classes */
.bg-teal { background: var(--teal); }
.bg-orange { background: var(--orange); }
.bg-purple { background: var(--purple); }
.bg-pink { background: var(--pink); }
