:root {
  --brown: #f5f0e8;
  --gray: #111217;
  --light-blue: #a8e6ff;
  --accent: #c62828;
  --dark: #050608;
  --text: #f5f0e8;
  --white: #ffffff;
  --radius: 0px;
  --shadow: 0 14px 35px rgba(34, 21, 15, 0.15);
  --max-width: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
.btn {
  font-family: inherit;
  border: none;
  cursor: pointer;
  border-radius: 0;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: rgba(168, 230, 255, 0.12);
  color: var(--light-blue);
  flex-shrink: 0;
}

.icon-inline svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn .icon-inline {
  background: transparent;
  width: 1.9rem;
  height: 1.9rem;
}

.btn .icon-inline svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 1.5;
}

.icon-inline.icon-pill {
  width: 2rem;
  height: 2rem;
  margin-right: 0.4rem;
}

.icon-inline.icon-card {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(198, 40, 40, 0.18);
  color: var(--accent);
  margin-right: 0.5rem;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), #e93c3c);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(198, 40, 40, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1px solid rgba(93, 64, 55, 0.3);
}

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

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  z-index: 9;
  background: rgba(5, 6, 8, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  color: var(--brown);
}

.brand small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 240, 232, 0.7);
  font-family: "Vadelma", "Poppins", cursive;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-links a {
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
}

.nav-links a.active,
.nav-links a:hover {
  border-color: var(--accent);
}

.nav-toggle {
  display: none;
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
}

.nav-cta {
  margin-left: 1rem;
}

main {
  flex: 1;
}

.section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero {
  padding-top: 5rem;
  background: radial-gradient(circle at top left, #3b1f1a 0%, #050608 45%, #050608 100%);
  color: var(--white);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin: 1rem 0;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

.card {
  background: #14151c;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card h3 {
  margin-top: 0;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-compact {
  padding: 2.5rem 1.5rem;
}

.section-light .card {
  background: #fff8f1;
  color: #2b1d15;
  border-color: rgba(0, 0, 0, 0.04);
  box-shadow: 0 18px 30px rgba(27, 13, 2, 0.08);
}

.section-light .card h3 {
  color: #9e3b1b;
}

.section-light .card p {
  color: #3b1f12;
  opacity: 0.85;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge {
  background: rgba(168, 230, 255, 0.15);
  color: var(--white);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand-tile {
  flex: 1;
  min-width: 220px;
  background: #14151c;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  text-align: center;
}

.cta-banner {
  background: linear-gradient(135deg, #2b1813, #421f18);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.cta-banner span {
  font-size: 1.1rem;
  opacity: 0.85;
}

.gallery-cta {
  background: linear-gradient(135deg, #140b08, #301a13);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  gap: 0.75rem;
  text-align: center;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
}

.gallery-cta h2,
.gallery-cta span {
  color: var(--white);
  opacity: 1;
}

.gallery-cta h2 {
  color: var(--white);
}

.gallery-cta span {
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: rgba(245, 240, 232, 0.55);
  font-size: 0.9rem;
}

.subtle {
  color: rgba(245, 240, 232, 0.7);
}

.section-light {
  background: var(--white);
  color: #222222;
}

.section-light h2,
.section-light h3 {
  color: #222222;
}

/* Ensure product text inside light sections is dark */
.section-light .product-card h4,
.section-light .product-card p,
.section-light .product-card .meta,
.section-light .product-card small {
  color: #222222;
}

.section-light .btn-primary,
.section-light .btn-outline {
  background: #222222;
  color: #ffffff;
  border-color: #222222;
  box-shadow: none;
}

.section-light .btn-outline:hover,
.section-light .btn-primary:hover {
  transform: translateY(-1px);
}

.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #25d366;
  color: var(--white);
  border-radius: 0;
  padding: 0.85rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
  z-index: 9;
}

.products-hero {
  background: radial-gradient(circle at top left, #3b1f1a 0%, #050608 45%, #050608 100%);
  color: var(--white);
  text-align: center;
  padding-bottom: 3rem;
}

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

.product-card {
  background: transparent;
  border-radius: var(--radius);
  padding: 1.5rem 0;
  border: none;
  box-shadow: none;
  text-align: center;
}

.product-card img {
  border-radius: var(--radius);
  display: block;
  margin: 0 auto 1.25rem;
  height: 210px;
  object-fit: cover;
}

.product-card h4 {
  margin: 0 0 0.5rem;
  color: var(--brown);
}

.product-grid .extra-item {
  display: none;
}

.product-grid[data-expanded="true"] .extra-item {
  display: block;
}

.flavour-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.35rem 1.25rem;
  font-size: 0.95rem;
}

.flavour-list li::before {
  content: "• ";
  color: var(--accent);
  margin-right: 0.3rem;
}

.meta {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.contact-card {
  background: #14151c;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-card .contact-actions {
  margin-top: 1rem;
}

.contact-card p {
  margin: 0.25rem 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  color: var(--brown);
}

input,
textarea {
  border-radius: var(--radius);
  border: 1px solid rgba(93, 64, 55, 0.25);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--light-blue);
}

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

.gallery-grid img {
  border-radius: var(--radius);
  height: 220px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  max-width: 400px;
  width: 100%;
  filter: drop-shadow(0 26px 50px rgba(0, 0, 0, 0.9));
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
  animation: hero-float 9s ease-in-out infinite alternate;
}

.hero-visual img.is-fading {
  opacity: 0;
}

@keyframes hero-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(6px);
  }
}

.why-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.9fr);
  gap: 2rem;
  align-items: center;
  background: #111217;
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.why-strip h2 {
  margin-top: 0;
  color: var(--brown);
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.why-pill {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

.why-pill strong {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.why-pill p {
  margin: 0;
  color: rgba(245, 240, 232, 0.85);
  font-size: 0.95rem;
}

.popup {
  display: none;
  position: fixed;
  bottom: 10%;  /* 90% from top = 10% from bottom */
  left: 20px;
  background: #4caf50;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 16px;
  z-index: 99999;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);

  /* Animation */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.popup.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mobile-bg-video {
  display: none;
}


@media (max-width: 720px) {

  .nav {
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
    gap: 0.75rem;
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .cta-banner {
    text-align: center;
    align-items: center;
  }

  .cta-actions {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .cta-actions .btn {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
  }

  .card-grid,
  .why-strip {
    grid-template-columns: 1fr;
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .product-card img {
    height: 140px;
  }

  .section-compact {
    padding: 2rem 1rem;
  }

  .hero {
    padding-top: 3.5rem;
    text-align: center;
    background: transparent !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-visual img {
    max-width: 260px;
  }

  .badges {
    justify-content: center;
  }

  /* ------------------------------ */
  /* MOBILE BACKGROUND VIDEO */
  /* ------------------------------ */
  .mobile-bg-video {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
  }

  .mobile-bg-video video {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(13%) blur(1px);
    pointer-events: none;
  }

  /* FIX: This must be OUTSIDE the video block */

  /* ------------------------------ */
  /* TEXT SHADOW / GLOW FOR BETTER VISIBILITY */
  /* ------------------------------ */
  .hero .eyebrow,
  .hero h1,
  .hero p,
  .hero .badges span {
    color: #fff;
    text-shadow:
      0 0 8px rgba(0,0,0,0.7),
      0 0 12px rgba(0,0,0,0.6),
      0 0 18px rgba(0,0,0,0.5);
  }

  .icon-inline icon{
    display: none;
  }

  .hero-text-blur{
    background-color: #14151c;
    background: rgba(0, 0, 0, 0.55);
  }

  div.hero-text-blur{
    padding: 20px;
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: 5px;
  }

}


