/* =========================
   GOOGLE FONT
   <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
========================= */

/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   GLOBAL FONTS
========================= */
body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.5;
  border-top: 3px solid #e01c1c;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

/* =========================
   ABOUT PAGE
========================= */
.about-page .about-intro {
  padding-top: 180px;
}

.about-page .nav a {
  color: #111;
}

.about-page .nav a::after {
  background: #111;
}

.about-page .nav a:hover {
  color: #ee1414;
  text-shadow: none;
}

.about-page .logo img {
  filter:
    drop-shadow(2px 0 0 #000)
    drop-shadow(-2px 0 0 #000)
    drop-shadow(0 2px 0 #000)
    drop-shadow(0 -2px 0 #000);
}

.about-page .logo a:hover img {
  transform: translateY(-3px) scale(1.05);
  filter:
    drop-shadow(2px 0 0 #000)
    drop-shadow(-2px 0 0 #000)
    drop-shadow(0 2px 0 #000)
    drop-shadow(0 -2px 0 #000)
    drop-shadow(0 0 10px #f5c16c);
}

.about-story {
  padding: 0px 10%;
  background: #fff;
}

.about-story-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  height: 100%;
}

.about-story-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
  text-align: justify;
}

.about-story-text a {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: #e01c1c;
  color: #fff;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.about-story-text a:hover {
  background: #b00000;
  transform: translateY(-2px);
}

.about-story-container {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-story-image {
  flex: 1;
  min-width: 300px;
}

.about-story-image img {
  width: 90%;
  border-radius: 4px;
  display: block;
}

.about-story-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.about-owner {
  padding: 80px 10%;
  background: #fff;
}

.about-owner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.about-owner-text {
  flex: 1;
  min-width: 300px;
}

.about-owner-text h1 {
  font-size: 48px;
  margin-bottom: 25px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.about-owner-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
  text-align: justify;
}

.owner-socials {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.owner-socials a {
  display: inline-block;
  padding: 12px 22px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: 0.3s ease;
  color: #fff;
}

.fb-btn { background: #1877f2; }
.fb-btn:hover { background: #0f5ec7; transform: translateY(-2px); }
.tt-btn { background: #000; }
.tt-btn:hover { background: #333; transform: translateY(-2px); }

.about-owner-image {
  flex: 1;
  min-width: 500px;
  display: flex;
  justify-content: center;
}

.about-owner-image img {
  width: 100%;
  max-width: 1000px;
  border-radius: 4px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* =========================
   HEADER
========================= */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo a {
  display: inline-block;
  position: relative;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
  transition: all 0.35s ease;
}

.logo a:hover img {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 5px 12px rgba(255,255,255,0.4));
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 45px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  padding: 10px;
  transition: all 0.3s ease;
  text-shadow:
    0 0 5px rgba(255,255,255,0.6),
    0 0 10px rgba(255,255,255,0.4),
    0 0 20px rgba(255,80,80,0.4);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #e01c1c;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav a:hover {
  color: #e01c1c;
  transform: translateY(-3px);
  text-shadow: 0 2px 8px rgba(255,255,255,0.3);
}

.nav a:hover::after {
  width: 100%;
}

.actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.actions a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.search {
  padding: 6px 10px;
  border: none;
  outline: none;
  border-radius: 3px;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 1;
  filter: contrast(1.05) saturate(1.1) brightness(1.02);
}

.hero-hover-zone {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: default;
}

.hero-left-fade {
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.hero-content-left {
  position: absolute;
  z-index: 2;
  left: 8%;
  bottom: 60px;
  top: auto;
  transform: none;
  max-width: 520px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: #e01c1c;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.eyebrow-line {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: #e01c1c;
  flex-shrink: 0;
}

.hero-content-left h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: #fff;
  line-height: 0.95;
  letter-spacing: 2px;
  margin: 0 0 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-content-left h1 .red { color: #e01c1c; }

.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 320px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  padding: 13px 30px;
  background: #e01c1c;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.hero-btn-primary:hover {
  background: #b00000;
  transform: translateY(-2px);
}

.hero-btn-secondary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  padding: 12px 30px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.2s;
  display: inline-block;
}

.hero-btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-hover-zone {
    width: 100%;
  }
  .hero-left-fade {
    width: 100%;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.85) 0%,
      rgba(0,0,0,0.3) 60%,
      rgba(0,0,0,0) 100%
    );
    opacity: 1;
  }
  .hero-content-left {
    opacity: 1;
    pointer-events: auto;
    left: 5%;
    bottom: 40px;
    top: auto;
    transform: none;
    max-width: 90%;
  }
  .hero-content-left h1 { font-size: 100px; }
  .hero-desc { font-size: 20px; max-width: 100%; }
  .hero-eyebrow { font-size: 15px; letter-spacing: 4px; }
  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 24px;
    padding: 18px 40px;
  }
  .hero-ctas {
    gap: 16px;
  }
}

.hero--shop { height: 400px; }
.overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(255,255,255,0) 30%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero-shop {
  position: absolute;
  top: 60%;
  left: 8%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
}
.hero-shop.show { opacity: 1; visibility: visible; }
.hero-shop a {
  display: inline-block;
  padding: 14px 28px;
  background: #ffffff;
  color: #e01c1c;
  text-decoration: none;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-shop a.bounce { animation: bounceBtn 1.2s infinite; }

@keyframes bounceBtn {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-6px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.shipping-sticker {
  position: absolute;
  left: 120px;
  bottom: 30px;
  z-index: 30;
  opacity: 0;
  animation:
    stickerReveal 1s ease forwards,
    stickerFloat 3s ease-in-out infinite 1s;
  animation-delay: 5s;
}

@keyframes stickerReveal {
  0%   { opacity: 0; transform: scale(0.3) rotate(-25deg); }
  60%  { opacity: 1; transform: scale(1.15) rotate(8deg); }
  100% { opacity: 1; transform: scale(1) rotate(-8deg); }
}

@keyframes stickerFloat {
  0%   { transform: translateY(0px) rotate(-8deg); }
  50%  { transform: translateY(-12px) rotate(-4deg); }
  100% { transform: translateY(0px) rotate(-8deg); }
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 4px;
}
.btn:hover { background: #ddd; transform: translateY(-2px); }

/* =========================
   TRUST BAR
========================= */
.trust-bar {
  display: flex;
  background: #111;
  border-top: 2px solid #e01c1c;
  border-bottom: 2px solid #e01c1c;
}

.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.trust-item:last-child { border-right: none; }

.trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.trust-num span { color: #e01c1c; }

.trust-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
}

@media (max-width: 540px) {
  .trust-bar { flex-wrap: wrap; }
  .trust-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 22px 12px;
  }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-child(3) { border-bottom: none; }
}

/* =========================
   PRODUCTS
========================= */
.products {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  display: block;
}

.products-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: #e01c1c;
  margin-bottom: 6px;
  display: block;
}

.products-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 40px;
  line-height: 1;
}

.products-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  width: 280px;
  background: #fff;
  border: 1px solid #eee;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(224,28,28,0.25);
  border-color: #e01c1c;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #e01c1c;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 4px 10px;
}

.product-badge.spicy { background: #111; }

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f9f9f9;
}

.product-img-wrap img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.img-default { opacity: 1; }
.img-hover   { opacity: 0; }
.product-card:hover .img-default { opacity: 0; }
.product-card:hover .img-hover   { opacity: 1; }

.product-body {
  padding: 16px 18px 20px;
  border-top: 2px solid #111;
}

.product-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 6px;
  line-height: 1.1;
}

.product-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

.product-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.product-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid #ddd;
  color: #888;
  padding: 3px 8px;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.old-p {
  font-size: 14px;
  color: #bbb;
  text-decoration: line-through;
}

.new-p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #111;
  letter-spacing: 1px;
  line-height: 1;
}

.buy-btn {
  background: #111;
  color: #fff;
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.buy-btn:hover { background: #e01c1c; }
.buy-btn.spicy-btn { background: #e01c1c; }
.buy-btn.spicy-btn:hover { background: #b00000; }

@media (max-width: 768px) {
  .products-heading { font-size: 36px; }
  .product-card { width: 90%; }
}

/* =========================
   ABOUT / EXTRA SECTIONS
========================= */
.about-intro,
.about-extra {
  background: #faf0ebd2;
  padding: 60px 20px;
  text-align: center;
}

.about-intro { background: #f8f8f8; }

.about-container {
  max-width: 800px;
  margin: auto;
}

.about-intro h1 {
  font-size: 80px;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Bebas Neue', sans-serif;
}

.about-extra h2 {
  font-size: 40px;
  font-family: 'Bebas Neue', sans-serif;
}

.about-container p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.about-container ul { list-style: none; padding: 0; }
.about-container li { font-size: 16px; margin-bottom: 10px; }

.testimonial {
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.testimonial p {
  font-size: 25px;
  line-height: 1.5;
  font-family: Georgia, serif;
  font-style: italic;
  color: #222;
}

.testimonial span {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  color: #e01c1c;
}

.about-extra a {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: #e01c1c;
  color: #fff;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.about-extra a:hover { background: #b00000; transform: translateY(-2px); }

/* =========================
   RECIPES PAGE
========================= */
.recipes-page .about-intro { padding-top: 140px; text-align: left; }
.recipes-page .about-container { max-width: 900px; margin: 0 auto; padding-left: 20px; }
.recipes-page .about-intro h1 { text-align: center; color: #000000; }
.recipes-page .nav a { color: #111; }
.recipes-page .nav a::after { background: #e01c1c; }
.recipes-page .nav a:hover { color: #e01c1c; text-shadow: none; }
.recipes-page .logo img {
  filter:
    drop-shadow(2px 0 0 #000)
    drop-shadow(-2px 0 0 #000)
    drop-shadow(0 2px 0 #000)
    drop-shadow(0 -2px 0 #000);
}
.recipes-page .logo a:hover img {
  transform: translateY(-3px) scale(1.05);
  filter:
    drop-shadow(2px 0 0 #000)
    drop-shadow(-2px 0 0 #000)
    drop-shadow(0 2px 0 #000)
    drop-shadow(0 -2px 0 #000)
    drop-shadow(0 0 10px #e01c1c);
}

.price {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin: 5px 0 10px;
}
.old-price { color: #e01c1c; text-decoration: line-through; font-size: 25px; }
.new-price { color: #111; font-weight: bold; font-size: 40px; }

.featured-recipe { padding: 100px 20px; background: #fff; display: flex; justify-content: center; }
.featured-image img { width: 100%; display: block; border-radius: 4px; transition: 0.35s cubic-bezier(0.25, 1, 0.5, 1); will-change: transform; }
.featured-image:hover img { transform: translateY(-12px) scale(1.03); box-shadow: 0 18px 35px rgba(0,0,0,0.3); }
.featured-container { display: flex; align-items: center; justify-content: center; gap: 20px; max-width: 1300px; margin: auto; }
.featured-image { display: flex; justify-content: flex-end; flex: 1; }
.featured-image img, .featured-image video { width: 65%; max-width: 700px; border-radius: 4px; object-fit: cover; }
.featured-text { flex: 1; max-width: 500px; }
.featured-text h2 { font-size: 56px; margin-bottom: 20px; }
.featured-text p { font-size: 18px; line-height: 1.8; }

.recipe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 90px 8%; background: #f5f5f5; }
.recipe-card { background: #fff; border-radius: 4px; overflow: hidden; border: 1px solid #eee; transition: 0.3s ease; }
.recipe-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); border-color: #e01c1c; }
.recipe-img img { width: 100%; height: 240px; object-fit: cover; display: block; }
.recipe-content { padding: 20px; text-align: left; }
.recipe-content h2 { font-size: 24px; margin-bottom: 10px; }
.recipe-content p { font-size: 15px; line-height: 1.6; margin-bottom: 10px; color: #444; }
.recipe-simple { padding: 60px 15%; text-align: center; }
.recipe-title h1 { font-size: 80px; font-family: 'Bebas Neue', sans-serif; margin-bottom: 30px; }
.recipe-image img { width: 100%; max-width: 800px; border-radius: 4px; margin-bottom: 40px; object-fit: cover; }
.recipe-cook { text-align: left; max-width: 800px; margin: 0 auto; }
.recipe-cook h2 { text-align: center; margin-bottom: 20px; }
.recipe-cook ol { line-height: 1.8; padding-left: 20px; font-size: 16px; }
.featured-text a, .recipe-content a { display: inline-block; margin-top: 10px; padding: 10px 18px; background: #e01c1c; color: #fff; text-decoration: none; border-radius: 4px; font-size: 14px; letter-spacing: 1px; transition: 0.3s ease; }
.featured-text a:hover, .recipe-content a:hover { background: #b00000; }

/* =========================
   FOOTER
========================= */
.footer {
  width: 100%;
  padding: 40px 20px;
  background: #0d0d0d;
  color: #fff;
  margin: 0;
  border-top: 3px solid #e01c1c;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 750px) { .footer-content { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 990px) { .footer-content { grid-template-columns: repeat(4, 1fr); } }

.footer-col h3 { font-size: 22px; margin-bottom: 15px; color: #fff; }
.footer-col h3::after { content: ''; display: block; width: 24px; height: 2px; background: #e01c1c; margin-top: 6px; }
.footer-col p, .footer-col a { font-size: 14px; color: #999; text-decoration: none; line-height: 1.8; }
.footer-col a:hover { color: #fff; }

.social-buttons { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.social-buttons .btn { padding: 10px 14px; border-radius: 4px; color: #fff; font-size: 13px; text-decoration: none; transition: 0.3s ease; display: inline-block; letter-spacing: 0.5px; }
.social-buttons .fb { background-color: #1877f2; }
.social-buttons .ig { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.social-buttons .tt { background-color: #111; border: 1px solid #333; }
.social-buttons .btn:hover { opacity: 0.85; transform: translateY(-2px); }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .header-container { flex-direction: column; gap: 10px; }
  .nav { flex-direction: column; align-items: center; }
  .hero { height: 70vh; }
  .about-intro h1 { font-size: 42px; }
  .products { flex-direction: column; align-items: center; }
}

/* =========================
   LOADER
========================= */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999999;
}

.logo-wrapper { position: absolute; top: 20px; left: 30px; }
.logo-wrapper img { width: 300px; opacity: 0; transform: scale(0.97); animation: fadeIn 1.2s ease forwards; }

@keyframes fadeIn { to { opacity: 1; transform: scale(1); } }

#loader.hide { opacity: 0; pointer-events: none; transition: opacity 0.6s ease; }

/* =========================
   POPUP OVERLAY
========================= */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-overlay.active { display: flex !important; }

.popup-box {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 90vh;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border-top: 3px solid #e01c1c;
}

.popup-box iframe { width: 100%; height: 100%; border: none; }

.close-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 35px; height: 35px;
  background: #e01c1c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000;
  transition: background 0.2s ease;
}

.close-btn:hover { background: #b00000; }

@media (max-width: 768px) {
  .popup-overlay { padding: 0; }
  .popup-box { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; border-radius: 0; }
  .popup-box iframe { width: 100%; height: 100%; }
  .close-btn { width: 42px; height: 42px; top: 15px; right: 15px; }
}

/* =========================
   RECIPE LAYOUT
========================= */
.recipe-layout { display: flex; gap: 40px; padding: 60px 10%; align-items: flex-start; }
.video-wrapper { flex: 1; display: flex; justify-content: center; }
#scrollVideo { width: 100%; max-width: 600px; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.recipe-cook { flex: 1; font-family: Arial, sans-serif; }
.recipe-cook h3 { margin-top: 20px; }
@media (max-width: 768px) { .recipe-layout { flex-direction: column; padding: 30px 20px; } #scrollVideo { max-width: 100%; } }

/* =========================
   VIDEO / TIKTOK SECTION
========================= */
.video-section { padding: 100px 20px 120px; background: #f5f5f5; text-align: center; }
.video-section .video-text { text-align: center; width: 100%; max-width: 100%; margin: 0 auto 32px; }
.video-section .video-text h2 { font-size: 36px; text-align: center; margin-bottom: 10px; }
.video-section .video-text p { text-align: center; color: #555; line-height: 1.6; }
.tiktok-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 32px; }
.tiktok-box { display: flex; justify-content: center; }
.tiktok-views-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 8px; }
.tiktok-view-card { background: #111; border: 2px solid #cc0000; border-radius: 12px; padding: 16px 28px; text-align: center; min-width: 140px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.view-icon { font-size: 20px; color: #cc0000; }
.view-count { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: #fff; letter-spacing: 2px; }
.view-label { font-size: 12px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.video-flex { display: flex; align-items: center; justify-content: center; gap: 60px; max-width: 1100px; margin: auto; }
.video-box { width: 100%; max-width: 600px; aspect-ratio: 16 / 9; }
.video-box iframe, .video-box video { width: 100%; height: 100%; border-radius: 4px; object-fit: cover; }

@media (max-width: 768px) {
  .video-flex { flex-direction: column; text-align: center; }
  .video-section { padding: 60px 15px 80px; }
  .video-section .video-text h2 { font-size: 24px; }
  .tiktok-grid { flex-direction: column; align-items: center; }
  .tiktok-views-row { flex-direction: column; align-items: center; }
}

/* =========================
   ORDER SECTION
========================= */
.order-section { padding: 80px 20px; background: #f5f5f5; }
.order-container { max-width: 760px; margin: auto; background: #fff; border-radius: 4px; padding: 50px; border: 1px solid #e8e8e8; border-top: 3px solid #e01c1c; }
.order-container h2 { text-align: center; font-size: 52px; margin-bottom: 8px; color: #111; letter-spacing: 2px; }
.order-container h2::after { content: ''; display: block; width: 40px; height: 3px; background: #e01c1c; margin: 10px auto 32px; }
.order-group { margin-bottom: 24px; }
.order-label { font-size: 16px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 6px; display: block; }
.order-input, .order-select, .order-textarea { font-size: 16px; padding: 14px 16px; border-radius: 10px; width: 100%; box-sizing: border-box; }
.order-textarea { min-height: 120px; resize: vertical; }
.order-input:focus, .order-select:focus, .order-textarea:focus { border-color: #e01c1c; box-shadow: 0 0 0 3px rgba(224,28,28,0.1); outline: none; }
.order-select { cursor: pointer; }
.order-submit-btn { width: 100%; border: none; padding: 18px; border-radius: 4px; background: #e01c1c; color: #fff; font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; cursor: pointer; transition: all 0.3s ease; margin-top: 10px; }
.order-submit-btn:hover { background: #b00000; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(224,28,28,0.3); }
.order-input::placeholder { color: #aaa; font-style: italic; }

@media (max-width: 768px) {
  .order-label { font-size: 15px; }
  .order-input, .order-select, .order-textarea { font-size: 16px; padding: 13px 14px; }
  .address-row { flex-direction: column; }
  h2 { font-size: 28px; }
}

.simple-order-header { padding-top: 180px; padding-bottom: 40px; text-align: center; background: #000; }
.simple-order-header h1 { font-size: 72px; color: #fff; letter-spacing: 3px; font-family: 'Bebas Neue', sans-serif; margin: 0; }

.address-row { display: flex; gap: 15px; }
.address-row .order-group { flex: 1; margin-bottom: 24px; }
@media (max-width: 768px) { .address-row { flex-direction: column; gap: 0; } }

/* =========================
   PRODUCT PICKER
========================= */
.product-picker-label { text-align: center; font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 3px; background: #000; color: #fff; margin: 0; padding: 120px 0 16px; }
.product-picker { display: flex; justify-content: center; gap: 32px; padding: 12px 30px 24px; flex-wrap: wrap; background: #000; border-bottom: 3px solid #e01c1c; }

.product-card .card-img { position: relative; width: 160px; height: 200px; margin: 0 auto 12px; }
.product-card .card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity 0.3s; }
.product-card .card-img .img-hover { opacity: 0; }
.product-card:hover .card-img .img-default, .product-card.selected .card-img .img-default { opacity: 0; }
.product-card:hover .card-img .img-hover, .product-card.selected .card-img .img-hover { opacity: 1; }
.product-card .card-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: #fff; margin-bottom: 4px; }
.product-card .card-price { font-size: 15px; color: #e01c1c; font-weight: bold; }
.product-card .card-check { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); margin: 10px auto 0; display: flex; align-items: center; justify-content: center; font-size: 12px; color: transparent; background: transparent; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.product-card.selected .card-check { background: #e01c1c; border-color: #e01c1c; color: #fff; }

@media (max-width: 768px) {
  .product-picker { gap: 16px; }
  .product-card { width: 160px; }
  .product-card .card-img { width: 120px; height: 150px; }
}

/* =========================
   QUANTITY STEPPER
========================= */
.qty-wrapper { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 4px; overflow: hidden; width: fit-content; }
.qty-btn { width: 48px; height: 48px; border: none; background: #111; color: #fff; font-size: 20px; cursor: pointer; transition: background 0.2s ease; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qty-btn:hover { background: #e01c1c; }
.qty-display { min-width: 56px; text-align: center; font-size: 20px; font-weight: 700; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; color: #111; padding: 0 10px; }
@media (max-width: 768px) { .qty-btn { width: 44px; height: 44px; font-size: 18px; } }

/* =========================
   ANNOUNCEMENT TICKER
========================= */
.ln-ticker { background: #111; padding: 8px 0; overflow: hidden; white-space: nowrap; border-top: 2px solid #e01c1c; border-bottom: 2px solid #e01c1c; }
.ln-ticker-inner { display: inline-block; animation: ticker 22s linear infinite; }
.ln-ticker span { font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 3px; color: #fff; padding: 0 28px; }
.ln-ticker .dot { color: #e01c1c; padding: 0; font-size: 14px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================
   ORDER HERO
========================= */
.order-hero { background: #111; padding: 36px 40px 32px; position: relative; overflow: hidden; border-bottom: 3px solid #e01c1c; }
.hero-bg-word { position: absolute; right: -10px; top: 50%; transform: translateY(-50%); font-family: 'Bebas Neue', sans-serif; font-size: 140px; letter-spacing: -4px; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; user-select: none; white-space: nowrap; }
.hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 2; max-width: 960px; margin: 0 auto; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.hero-tag-line { width: 22px; height: 2px; background: #e01c1c; }
.hero-tag-text { font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 4px; color: #e01c1c; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: 58px; letter-spacing: 2px; line-height: 0.9; color: #fff; margin-bottom: 14px; }
.hero-title span { color: #e01c1c; }
.hero-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 280px; }
.hero-right { display: flex; align-items: center; flex-shrink: 0; }
.hero-stat { padding: 18px 28px; text-align: center; border-left: 1px solid rgba(255,255,255,0.07); }
.hero-stat:first-child { border-left: none; }
.hero-stat-val { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 1px; color: #fff; line-height: 1; margin-bottom: 4px; }
.hero-stat-val.red { color: #e01c1c; }
.hero-stat-val small { font-size: 16px; color: rgba(255,255,255,0.35); }
.hero-stat-lbl { font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.3); text-transform: uppercase; }
.hero-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

@media (max-width: 640px) {
  .order-hero { padding: 28px 20px; }
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: 42px; }
  .hero-right { width: 100%; justify-content: space-between; }
  .hero-stat { padding: 12px 10px; }
}

/* =========================
   QTY ROW / SHIPPING
========================= */
.qty-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.qty-left { display: flex; flex-direction: column; gap: 6px; }
.free-shipping-note { font-size: 15px; font-weight: bold; color: #cc0000; background: #fff; border: 2px dashed #111; border-radius: 12px; padding: 12px 20px; align-self: center; line-height: 1.5; text-align: center; min-width: 180px; margin-top: 40px; }

/* =========================
   PER-CARD QTY CONTROLS
========================= */
.card-qty-ctrl { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 8px; }
.card-qty-btn { width: 42px; height: 42px; border-radius: 50%; border: 2px solid #111; background: #fff; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; transition: background 0.15s, color 0.15s; line-height: 1; position: relative; overflow: hidden; }
.card-qty-btn:hover { background: #ff0000; color: #fff; }
.card-qty-btn .ripple { position: absolute; border-radius: 50%; transform: scale(0); animation: ripple-effect 0.5s linear; background: rgba(220, 20, 20, 0.5); pointer-events: none; }
@keyframes ripple-effect { to { transform: scale(4); opacity: 0; } }
.card-qty-num { font-family: 'Bebas Neue', sans-serif; font-size: 26px; min-width: 28px; text-align: center; color: #111; }

/* =========================
   BUNDLE SUMMARY CARD
========================= */
.bundle-summary { max-width: 700px; margin: 16px auto 0; padding: 14px 20px; background: #fff; border: 1.5px solid #e0e0e0; border-radius: 14px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.bs-items { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bs-pill { display: inline-flex; align-items: center; gap: 6px; background: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 8px; padding: 7px 16px; font-size: 17px; font-weight: 600; color: #111; }
.bs-pill .bs-qty { background: #111; color: #fff; border-radius: 4px; padding: 2px 9px; font-size: 16px; font-weight: 700; }
.bs-sep { color: #aaa; font-size: 16px; font-weight: 400; }
.bs-total-block { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.bs-total-label { font-size: 13px; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.bs-total-amt { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 1px; color: #111; line-height: 1; }
.bs-ship { width: 100%; display: flex; align-items: center; gap: 10px; border-top: 1px solid #f0f0f0; margin-top: 10px; padding-top: 10px; font-size: 15px; }
.bs-ship-label { color: #555; white-space: nowrap; flex-shrink: 0; }
.bs-ship-bar-wrap { flex: 1; height: 5px; background: #f0f0f0; border-radius: 99px; overflow: hidden; }
.bs-ship-bar { height: 100%; border-radius: 99px; background: #111; transition: width 0.4s ease; }
.bs-ship-badge { font-size: 14px; font-weight: 700; white-space: nowrap; padding: 5px 14px; border-radius: 6px; background: #f5f5f5; color: #555; border: 1px solid #e0e0e0; transition: background 0.3s, color 0.3s; }
.bs-ship-badge.free { background: #111; color: #fff; border-color: #111; }

@media (max-width: 600px) {
  .card-qty-btn { width: 52px; height: 52px; font-size: 28px; border-width: 2.5px; }
  .card-qty-num { font-size: 32px; min-width: 32px; }
  .card-qty-ctrl { gap: 20px; margin-top: 14px; }
  .bundle-summary { flex-direction: column; align-items: stretch; padding: 18px; gap: 14px; margin: 12px 16px 0; }
  .bs-items { justify-content: center; gap: 10px; }
  .bs-pill { font-size: 18px; padding: 8px 16px; }
  .bs-pill .bs-qty { font-size: 17px; padding: 2px 10px; }
  .bs-sep { font-size: 22px; }
  .bs-total-block { align-items: center; border-top: 1px solid #f0f0f0; padding-top: 12px; }
  .bs-total-label { font-size: 14px; }
  .bs-total-amt { font-size: 42px; }
  .bs-ship { flex-wrap: wrap; gap: 8px; }
  .bs-ship-label { width: 100%; text-align: center; font-size: 15px; white-space: normal; }
  .bs-ship-bar-wrap { flex: 1; height: 7px; }
  .bs-ship-badge { font-size: 15px; padding: 6px 16px; }
}

/* =========================
   PRODUCT PICKER (order page)
========================= */
.product-picker {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 12px 30px 24px;
  flex-wrap: wrap;
  background: #000;
  border-bottom: 3px solid #e01c1c;
}

.product-picker .product-card {
  cursor: pointer;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 20px 16px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  width: 220px;
  background: rgba(255,255,255,0.03);
  box-shadow: none;
}

.product-picker .product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.3);
  box-shadow: none;
}

.product-picker .product-card.selected {
  border-color: #e01c1c;
  background: rgba(224,28,28,0.08);
}

.product-picker .product-card .card-img {
  position: relative;
  width: 160px;
  height: 200px;
  margin: 0 auto 12px;
}

.product-picker .product-card .card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s;
  transform: none;
  left: 0;
}

.product-picker .product-card .card-img .img-default { opacity: 1; }
.product-picker .product-card .card-img .img-hover   { opacity: 0; }

.product-picker .product-card:hover .card-img .img-default,
.product-picker .product-card.selected .card-img .img-default { opacity: 0; }

.product-picker .product-card:hover .card-img .img-hover,
.product-picker .product-card.selected .card-img .img-hover   { opacity: 1; }

.product-picker .product-card .card-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 4px;
}

.product-picker .product-card .card-price {
  font-size: 15px;
  color: #e01c1c;
  font-weight: bold;
}

.product-picker .product-card .card-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: transparent;
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.product-picker .product-card.selected .card-check {
  background: #e01c1c;
  border-color: #e01c1c;
  color: #fff;
}

.product-picker .product-card .product-body {
  border-top: none;
}

@media (max-width: 768px) {
  .product-picker { gap: 16px; }
  .product-picker .product-card { width: 160px; }
  .product-picker .product-card .card-img { width: 120px; height: 150px; }
}

html {
  scroll-behavior: smooth;
}