/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:   #F5A623;
  --yellow-dk:#C47D10;
  --yellow-lt:#FEF3DC;
  --green:    #2D6A2D;
  --green-lt: #E8F5E8;
  --red:      #B22222;
  --red-lt:   #FDECEA;
  --cream:    #FFFBF2;
  --dark:     #1A1008;
  --mid:      #5C4A2A;
  --white:    #FFFFFF;
  --radius:   16px;
  --shadow:   0 8px 32px rgba(26,16,8,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

em { font-style: italic; }

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

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

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

.btn--primary {
  background: var(--yellow);
  color: var(--dark);
}
.btn--primary:hover { background: var(--yellow-dk); }

.btn--ghost {
  background: transparent;
  border: 2px solid currentColor;
  color: inherit;
}

.btn--card {
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  font-size: 0.88rem;
}

/* ── SECTION EYE / LABEL ── */
.section-eye {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-dk);
  margin-bottom: 10px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,251,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.2);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
}
.logo-leaf { font-size: 1.5rem; }
.logo-text em { color: var(--yellow-dk); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--yellow-dk); }

.nav-cta {
  background: var(--yellow);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--yellow-dk); }

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 12px 24px 20px;
  background: var(--cream);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-weight: 500;
  color: var(--mid);
}

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  margin-top: 68px;
  overflow: hidden;
  height: calc(100svh - 68px);
  min-height: 560px;
}

.slider { height: 100%; position: relative; }

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 48px 5%;
  gap: 48px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide--yellow { background: linear-gradient(135deg, #FEF3DC 0%, #F5E0A0 60%, #E8C96A 100%); }
.slide--green  { background: linear-gradient(135deg, #E8F5E8 0%, #B8DDB8 60%, #7AB87A 100%); }
.slide--red    { background: linear-gradient(135deg, #FDECEA 0%, #EDAFAF 60%, #C86060 100%); }

.slide-content {
  flex: 1;
  max-width: 500px;
  z-index: 2;
}
.slide-tag {
  display: inline-block;
  background: var(--dark);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.slide-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.slide-content h1 em { color: var(--yellow-dk); }
.slide--green .slide-content h1 em { color: var(--green); }
.slide--red .slide-content h1 em { color: var(--red); }

.slide-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 32px;
  max-width: 400px;
}
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── CHIP BAG (CSS ART) ── */
.slide-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 360px;
}
.chip-bag {
  width: 220px;
  height: 300px;
  border-radius: 30px 30px 40px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 /* box-shadow: 0 20px 60px rgba(0,0,0,0.25), inset 0 0 30px rgba(255,255,255,0.15);*/
  transform: rotate(-5deg);
  transition: transform 0.4s ease;
  animation: bagFloat 3s ease-in-out infinite;
}
.chip-bag:hover { transform: rotate(0deg) scale(1.04); }

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

.chip-bag--yellow {
 /* background: linear-gradient(160deg, #F5C842 0%, #D4940A 50%, #A06A00 100%);*/
}
.chip-bag--green {
 /* background: linear-gradient(160deg, #4CAF50 0%, #2D6A2D 50%, #1A4A1A 100%); */
}
.chip-bag--red {
 /* background: linear-gradient(160deg, #E53935 0%, #B22222 50%, #7A1010 100%);*/
}

.bag-shine {
  position: absolute;
  top: 16px; left: 20px;
  width: 40px; height: 120px;
 /* background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, transparent 100%);
  border-radius: 20px;*/
  transform: rotate(-10deg);
}
.bag-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  gap: 4px;
  z-index: 1;
}
.bag-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.4);
}
.bag-product {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: #FFD700;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.bag-variant {
  background: #8B0000;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 4px;
  text-transform: uppercase;
}
.chip-bag--yellow .bag-variant { background: #8B6914; }
.chip-bag--green  .bag-variant { background: #1A4A1A; }
.bag-leaves {
  position: absolute;
  bottom: 20px;
  font-size: 1.4rem;
  letter-spacing: 2px;
  filter: saturate(1.4);
}

/* Floating chips */
.floating-chip {
  position: absolute;
  font-size: 2rem;
  animation: floatChip 4s ease-in-out infinite;
  opacity: 0.7;
}
.fc1 { top: 10%; right: 15%; animation-delay: 0s; }
.fc2 { bottom: 20%; left: 5%;  animation-delay: 1.3s; }
.fc3 { top: 50%; right: 5%;   animation-delay: 0.7s; }

@keyframes floatChip {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(20deg); }
}

/* ── SLIDER CONTROLS ── */
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.85);
  border: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: background 0.15s, transform 0.15s;
}
.slider-btn:hover { background: var(--yellow); transform: translateY(-50%) scale(1.08); }
.slider-btn--prev { left: 20px; }
.slider-btn--next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.dot.active {
  background: var(--dark);
  width: 28px;
  border-radius: 5px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  padding: 18px 24px;
}
.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.trust-item span { font-size: 1.1rem; }

/* ── PRODUCTS ── */
.products {
  padding: 100px 0;
  background: var(--cream);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.product-card:hover { transform: translateY(-6px); }
.product-card--yellow .product-visual { background: linear-gradient(160deg, #FEF3DC, #EFD08A); }
.product-card--green  .product-visual { background: linear-gradient(160deg, #E8F5E8, #A8D4A8); }
.product-card--red    .product-visual { background: linear-gradient(160deg, #FDECEA, #E0AAAA); }

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}/*
.product-badge--spicy { background: var(--red); color: #fff; }
*/
.product-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mini product bags */
.product-bag {
  width: 110px;
  height: 155px;
  border-radius: 16px 16px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 /* box-shadow: 0 10px 30px rgba(0,0,0,0.2);*/
  transform: rotate(-4deg);
  transition: transform 0.3s;
}
.product-card:hover .product-bag { transform: rotate(0deg) scale(1.06); }
.product-bag--yellow { background: linear-gradient(160deg, #F5C842, #A06A00); }
.product-bag--green  { background: linear-gradient(160deg, #4CAF50, #1A4A1A); }
.product-bag--red    { background: linear-gradient(160deg, #E53935, #7A1010); }

.pb-shine {
  position: absolute;
  top: 8px; left: 10px;
  width: 18px; height: 60px;
 /* background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, transparent 100%);*/
  border-radius: 10px;
  transform: rotate(-10deg);
}
.pb-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  gap: 2px;
  z-index: 1;
}
.pb-label span {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 700;
}
.pb-label strong {
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  color: #FFD700;
  line-height: 1.1;
}
.pb-label em {
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(0,0,0,0.4);
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  font-style: normal;
}

.product-info {
  padding: 24px;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-info h3 {
  font-size: 1.25rem;
}
.product-info p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--mid);
  flex: 1;
}
.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}
.product-tags li {
  background: var(--cream);
  color: var(--mid);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.08);
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.about-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-circle {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 0 0 24px rgba(245,166,35,0.1), 0 0 0 48px rgba(245,166,35,0.05);
}
.about-stat {
  position: absolute;
  bottom: 0; right: 0;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
}
.about-stat--2 { top: 0; right: 0; bottom: auto; }
.about-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--yellow-dk);
}
.about-stat span { font-size: 0.75rem; color: var(--mid); font-weight: 500; }

.about-copy .section-eye { color: var(--yellow); }
.about-copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 20px;
}
.about-copy p {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: var(--yellow-lt);
}
.contact-inner { text-align: center; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s;
}
.contact-card:hover { transform: translateY(-4px); }
.contact-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.contact-card a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.15s;
}
.contact-card a:hover { color: var(--yellow-dk); }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer .logo-text { color: #fff; }
.footer .logo-leaf { font-size: 1.8rem; }
.footer .logo-text em { color: var(--yellow); }
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--yellow); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }

  .slide { flex-direction: column; text-align: center; padding: 80px 24px 60px; gap: 24px; }
  .slide-visual { min-height: 240px; }
  .slide-content { max-width: 100%; }
  .slide-actions { justify-content: center; }
  .chip-bag { width: 160px; height: 220px; }

  .product-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { min-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; max-width: 340px; }
}

@media (max-width: 560px) {
  .hero { height: auto; min-height: 100svh; }
  .slide { min-height: calc(100svh - 68px); justify-content: center; }
  .trust-inner { gap: 16px; }
  .trust-item { font-size: 0.78rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .chip-bag, .floating-chip { animation: none; }
  .slide { transition: none; }
}
