/* Base Styles */
:root {
  --red: #f55d56;
  --green: #069E51;
  --yellow: #fbba00;
  --dark: #051c2c;
  --white: #ffffff;
  --pink: #fde4e2;
  --blue: #4CC1E0;
  --turquoise: #19857E;
  --gray: #f5f5f5;
  --purple: #8052a5;
  
  --font-primary: 'Roc Grotesk Condensed', sans-serif;
  --font-handwriting: 'Kalam', cursive;
  --font-alt: 'Nunito Sans', sans-serif;
  --font-roc: 'roc-grotesk-condensed', sans-serif;

}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

body {
  font-family: var(--font-alt);
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--pink);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  text-transform: uppercase;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

h1 {
  font-size: 6.5rem;
  font-weight: 800;
  
  font-family: var(--font-roc);
}

h2 {
  font-size: 5.5rem;
  font-weight: 800;
  font-family: var(--font-roc);
}

h3 {
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--font-roc);
}

h4 {
  font-size: 3.5rem;
  line-height: 0.9;
  letter-spacing: 0.01em;
  font-weight: 800;
  font-family: var(--font-roc);
}

h5 {
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 800;
  font-family: var(--font-roc);
}

h6 {
  font-size: 2.5rem;
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 800;
  font-family: var(--font-roc);
}

p {
  font-family: var(--font-handwriting);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.handwriting {
  font-family: var(--font-handwriting);
  letter-spacing: -0.02em;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--red);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--green);
}

.container {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1.2rem 2rem 1rem;
  border-radius: 0.5rem;
  font-family: var(--font-roc);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 3px 3px 0 0 var(--dark);
}

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

.btn-primary:hover {
  background-color: var(--red);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 0 var(--dark);
}

.btn-secondary {
  background-color: var(--pink);
  color: var(--dark);
  border: 3px solid var(--dark);
}

.btn-secondary:hover {
  background-color: var(--red);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 0 var(--dark);
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar */
.navbar {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  background-color: var(--red);
  z-index: 100;
  border-bottom: 4px solid var(--dark);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo img {
  height: 3.5rem;
}

.navbar-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  color: var(--dark);
  font-family: var(--font-roc);
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.02em;
  padding: 10px 0 7px;
  border-bottom: 3px solid transparent;
}

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

.navbar-cart {
  position: relative;
}

.cart-icon {
  display: flex;
  align-items: center;
}

.cart-icon svg {
  stroke: var(--white);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--yellow);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-family: var(--font-primary);
  font-weight: 800;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background-color: var(--red);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/pattern-bg.svg');
  background-repeat: repeat;
  opacity: 0.05;
  z-index: -1;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

.hero-content h1,
.hero-content .font-h1 {
  color: var(--yellow);
  text-shadow: 4px 4px 0 var(--dark);
}

.hero-content p,
.hero-content .font-p {
  color: var(--white);
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 8px 8px 0 0 var(--dark);
  border: none;
}

.hero-content .btn-primary {
  background-color: var(--yellow);
  color: var(--dark);
  border: 2px solid var(--dark);
  box-shadow: 3px 3px 0 0 var(--dark);
}

.hero-content .btn-primary:hover {
  background-color: var(--dark);
  color: var(--yellow);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 0 #000;
}

/* Featured Products */
.featured-products {
  padding: 5rem 0;
  background-color: var(--purple);
  position: relative;
}

.featured-products::before {
  display: none;
}

.featured-products h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--red);
}

.product-carousel {
  position: relative;
}

.product-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: var(--pink);
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  box-shadow: 5px 5px 0 0 var(--dark);
  margin: 0.5rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--dark);
}

.product-image {
  overflow: hidden;
  border-radius: 0.5rem;
}

.product-card img {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: none;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-family: var(--font-primary);
  font-weight: 800;
}

.price {
  color: var(--green);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.add-to-cart {
  width: 100%;
  font-family: var(--font-primary);
  font-weight: 800;
  text-transform: uppercase;
}

.product-card .btn-secondary,
.product-card .btn-primary {
  width: 100%;
  padding: 0.8rem 1rem 0.6rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--green);
  color: var(--white);
  position: relative;
  overflow-x: hidden;
}

.about::before,
.about::after {
  display: none;
}

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

.about .container {
  display: flex;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  box-sizing: border-box;
}

.about-content {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 400px;
  border-radius: 1rem;
  box-shadow: 8px 8px 0 0 var(--dark);
  border: none;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background-color: var(--yellow);
  position: relative;
}

.testimonials::before,
.testimonials::after {
  display: none;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
}

.testimonial-card {
  padding: 2rem;
  background-color: var(--pink);
  border-radius: 1rem;
  border: none;
  box-shadow: 5px 5px 0 0 var(--dark);
  margin: 0.5rem 1rem;
  text-align: center;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card h4 {
  font-size: 1.5rem;
  color: var(--red);
  font-family: var(--font-primary);
  font-weight: 800;
}

/* Footer */
footer {
  padding: 5rem 0 2rem;
  background-color: var(--red);
  color: var(--dark);
  position: relative;
}

footer::before {
  display: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-logo img {
  height: 4rem;
  margin-bottom: 1rem;
}

.footer-logo p {
  margin-bottom: 2rem;
}

.footer-links h3,
.footer-newsletter h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-family: var(--font-primary);
  font-weight: 800;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: var(--dark);
}

.footer-links ul li a:hover {
  color: var(--yellow);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a img {
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s ease;
}

.social-links a:hover img {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-primary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 800;
}

/* Shop Page */
.shop-hero {
  padding: 2rem 0;
  background-color: var(--yellow);
  text-align: center;
  position: relative;
}


.shop-hero h1,
.shop-hero p {
  color: var(--dark);
}

.shop-hero h1 {
  font-family: var(--font-primary);
  font-weight: 800;
}

.shop-filters {
  padding: 2rem 0;
  background-color: var(--pink);
}

.filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.filter-group select {
  padding: 0.5rem 1rem;
  border: 2px solid var(--dark);
  border-radius: 0.5rem;
  font-family: var(--font-alt);
  font-size: 1rem;
  background-color: var(--pink);
}

.product-grid {
  padding: 2rem 0 5rem;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

/* Font Classes */
.font-h1 {
  text-shadow: 4px 4px 0 var(--dark);
   -webkit-text-stroke: 3px #1C132F;
  font-family: var(--font-primary);
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
}

.font-h2 {
  -webkit-text-stroke: 3px #19857E;
  text-shadow: 4px 4px 0 var(--dark);
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--font-primary);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.font-h3 {
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}
.cta-content .font-p {
  color: black;

}
.font-p {
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--font-handwriting);
  font-size: 1.2rem;
  line-height: 1.5;
}

.font-handwriting {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Tentang Nanti', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

/* Responsive Styles */
@media (max-width: 1280px) {
  h1 {
    font-size: 5.5rem;
  }
  
  h2 {
    font-size: 4.75rem;
  }
  
  h3 {
    font-size: 3.5rem;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 5rem;
  }
  
  h2 {
    font-size: 4.25rem;
  }
  
  .products {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .product-card {
    padding: 1rem;
  }
  
  .navbar-links {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 3.5rem;
  }
  
  h3 {
    font-size: 3rem;
  }

  h4 {
    font-size: 2.5rem;
  }
  
  h5 {
    font-size: 2.25rem;
  }
  
  h6 {
    font-size: 2rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--red);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 100;
  }
  
  .navbar-links.active {
    transform: translateX(0);
  }
  
  .nav-link {
    font-size: 2rem;
    padding: 15px 0;
  }

  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .btn-primary, 
  .btn-secondary {
    padding: 1rem 1.5rem 0.8rem;
    font-size: 1.2rem;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    order: 2;
    margin-top: 2rem;
  }
  
  .hero-image {
    order: 1;
  }
  
  .about .container {
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
  }
  
  .about-image {
    margin-top: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .footer-logo, .footer-links {
    width: 100%;
    margin-bottom: 0;
  }
  
  .footer-newsletter {
    display: none; /* Hide newsletter on mobile screens */
  }
  
  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .social-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  
  .cta-container {
    flex-direction: column;
  }
  
  .cta-content {
    width: 100%;
    order: 2;
  }
  
  .cta-image {
    width: 100%;
    order: 1;
    margin-bottom: 2rem;
  }
  
  .cta-badge {
    height: 100px;
    width: 100px;
    font-size: 0.8rem;
    top: -1rem;
    right: -1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.75rem;
  }
  
  h3 {
    font-size: 2.25rem;
  }
  
  h4, h5, h6 {
    font-size: 1.75rem;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .product-card {
    padding: 1rem;
    margin: 0;
    max-width: 100%;
  }
  
  .container {
    width: 95%;
    padding: 0 0.5rem;
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  .navbar-logo img {
    height: 2.5rem;
  }
  
  .btn-primary, 
  .btn-secondary {
    padding: 0.8rem 1.2rem 0.6rem;
    font-size: 1.1rem;
  }
  
  .nav-link {
    font-size: 1.75rem;
  }
  
  .filters {
    flex-direction: column;
  }
  
  .filter-group {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .shop-hero .container {
    text-align: center;
  }
  
  .navbar .container {
    flex-wrap: wrap;
  }
  
  .navbar-links {
    order: 3;
    width: 100%;
    justify-content: center;
    padding: 0.5rem 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    scrollbar-width: none;
  }
  
  .navbar-links::-webkit-scrollbar {
    display: none;
  }
  
  .navbar-cart {
    order: 2;
  }
  
  .hero {
    padding: 3rem 0;
  }
  
  .hero-image img {
    box-shadow: 6px 6px 0 0 var(--dark);
  }
  
  footer {
    padding: 3rem 0 5rem;
  }
  
  .footer-links h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .footer-links ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links ul li {
    margin-right: 0;
  }
  
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
  
  .footer-logo img {
    height: 3.5rem;
  }
  
  .social-links a img {
    width: 1.75rem;
    height: 1.75rem;
  }
}

/* Ensure all buttons use the font */
button, 
.btn,
.btn-primary, 
.btn-secondary,
.add-to-cart {
  font-family: var(--font-primary);
  font-weight: 800;
  text-transform: uppercase;
}

/* Spotlight Section */
.spotlight-section {
  padding: 3rem 0;
  background-color: var(--pink);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.spotlight-section::before {
  display: none;
}

.spotlight-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 2rem;
  border: 3px solid var(--dark);
  border-radius: 1rem;
  background-color: var(--pink);
  box-shadow: 8px 8px 0 0 var(--dark);
}

.spotlight-heading {
  font-size: 1.2rem;
  color: var(--red);
  font-family: var(--font-handwriting);
  margin-bottom: 0.5rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.spotlight-heading img {
  height: 1.8rem;
}

.spotlight-title {
  font-size: 3.5rem;
  line-height: 0.9;
  color: var(--dark);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.bold-text {
  color: var(--red);
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 0.9;
  display: block;
  margin: 0.5rem 0;
  font-family: var(--font-primary);
  text-transform: uppercase;
}

.decorative-line {
  margin: 1rem auto;
  display: block;
  width: 200px;
  height: 20px;
}

.shop-now-button {
  display: inline-block;
  background-color: var(--yellow);
  color: var(--dark);
  font-family: var(--font-primary);
  font-weight: 800;
  text-transform: uppercase;
  padding: 1rem 2.5rem 0.8rem;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  box-shadow: 5px 5px 0 0 var(--dark);
  border: 3px solid var(--dark);
  transition: all 0.3s ease;
}

.shop-now-button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 0 var(--dark);
  background-color: var(--red);
  color: var(--white);
}

.chili-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 1;
}

.chili-icon.left {
  left: -25px;
  top: 50%;
  transform: translateY(-50%) rotate(-20deg);
}

.chili-icon.right {
  right: -25px;
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
}

@media (max-width: 768px) {
  .spotlight-title {
    font-size: 2.5rem;
  }
  
  .bold-text {
    font-size: 3.5rem;
  }
  
  .shop-now-button {
    padding: 0.8rem 2rem 0.6rem;
    font-size: 1rem;
  }
  
  .chili-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .spotlight-title {
    font-size: 2rem;
  }
  
  .bold-text {
    font-size: 2.8rem;
  }
  
  .spotlight-content {
    padding: 1.5rem;
  }
  
  .chili-icon {
    display: none;
  }
}

/* Footer Newsletter Form */
.footer-newsletter form {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  max-width: 100%;
  width: 100%;
}

.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 3px solid var(--dark);
  border-radius: 0.5rem;
  font-family: var(--font-alt);
  font-size: 1rem;
  background-color: var(--white);
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0 0 var(--dark);
  width: 100%;
  min-width: 180px; /* Ensure minimum width on all devices */
}

.footer-newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 5px 5px 0 0 var(--dark);
  transform: translate(-2px, -2px);
}

.footer-newsletter input[type="email"]::placeholder {
  color: var(--dark);
  opacity: 0.6;
}

@media (min-width: 769px) {
  .footer-newsletter form {
    max-width: 400px; /* Set a wider max-width on desktop */
  }
}

@media (max-width: 480px) {
  .footer-newsletter form {
    width: 100%;
  }
  
  .footer-newsletter input[type="email"] {
    width: 100%;
    margin-bottom: 0.75rem;
    text-align: center;
    min-width: 0; /* Allow full flexibility on mobile */
  }
}

.footer-newsletter button[type="submit"] {
  padding: 0.75rem 1rem;
  background-color: var(--yellow);
  color: var(--dark);
  border: 3px solid var(--dark);
  border-radius: 0.5rem;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0 0 var(--dark);
  min-width: fit-content;
  white-space: nowrap;
}

.footer-newsletter button[type="submit"]:hover {
  background-color: var(--dark);
  color: var(--yellow);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 0 #000;
}

/* Our Story Section */
.our-story {
  padding: 5rem 0;
  background-color: var(--pink);
  position: relative;
}

.our-story-container {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.our-story-image {
  flex: 1;
}

.our-story-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 8px 8px 0 0 #000000; /* Jet black shadow */
  border: none;
}

.our-story-content {
  flex: 1;
  background-color: var(--green);
  padding: 2.5rem;
  border-radius: 1rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  border: 5px solid #000000; /* Jet black border */
  box-shadow: 12px 12px 0 0 #000000; /* Jet black shadow */
}

.our-story-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.our-story-content p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .our-story-container {
    flex-direction: column;
  }
  
  .our-story-content {
    order: 2;
  }
  
  .our-story-image {
    order: 1;
    margin-bottom: 2rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background-color: var(--pink);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/pattern-bg.svg');
  background-repeat: repeat;
  opacity: 0.1;
  z-index: 0;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.cta-content {
  flex: 1;
  padding: 2rem;
  background-color: var(--red);
  border-radius: 1rem;
  border: 5px solid var(--dark);
  box-shadow: 8px 8px 0 0 var(--dark);
  color: var(--white);
}

.cta-content h2 {
  color: var(--yellow);
  margin-bottom: 1rem;
  -webkit-text-stroke: 2px var(--dark);
}

.cta-content p {
  font-family: var(--font-alt);
  text-transform: none;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

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

.cta-image {
  flex: 1;
  position: relative;
}

.cta-img {
  width: 100%;
  border-radius: 1rem;
  border: 5px solid var(--dark);
  box-shadow: 8px 8px 0 0 var(--dark);
}

.cta-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background-color: var(--yellow);
  padding: 1rem;
  border-radius: 50%;
  height: 120px;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  border: 3px solid var(--dark);
  transform: rotate(15deg);
  box-shadow: 4px 4px 0 0 var(--dark);
}

.badge-highlight {
  color: var(--red);
  font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .spotlight-title {
    font-size: 2.5rem;
  }
  
  .bold-text {
    font-size: 3.5rem;
  }
  
  .shop-now-button {
    padding: 0.8rem 2rem 0.6rem;
    font-size: 1rem;
  }
  
  .chili-icon {
    width: 60px;
    height: 60px;
  }
}

/* Mobile Bottom Navbar */
.mobile-navbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark);
  border-top: 3px solid var(--red);
  padding: 12px 0 8px;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
}

.mobile-navbar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-roc);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  padding: 0;
  flex: 1;
  max-width: 20%;
  text-align: center;
}

.mobile-nav-item svg {
  width: 20px;
  height: 20px;
  margin-bottom: 5px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--yellow);
}

.mobile-nav-item.active svg,
.mobile-nav-item:hover svg {
  stroke: var(--yellow);
}

/* Style for active menu toggle */
.mobile-nav-item.menu-toggle.active {
  color: #ff6b00;
  background-color: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
}

.mobile-nav-item.menu-toggle.active svg {
  stroke: var(--red);
}

.mobile-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
}

.mobile-nav-item .icon-container {
  position: relative;
}

/* Mobile Menu Categories Dropdown */
.mobile-menu-dropdown {
  position: fixed;
  bottom: 70px;
  left: 0;
  width: 100%;
  background-color: var(--red);
  border-top: 3px solid var(--dark);
  border-bottom: 3px solid var(--dark);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
}

.mobile-menu-dropdown.active {
  padding: 15px 0;
  max-height: 300px;
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-categories {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.mobile-menu-category {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-roc);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-category:last-child {
  border-bottom: none;
}

.mobile-menu-category svg {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-category:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--yellow);
}

.mobile-menu-category:hover svg {
  stroke: var(--yellow);
}

/* Show mobile navbar only on smaller screens */
@media (max-width: 768px) {
  .mobile-navbar {
    display: block;
  }
  
  body {
    padding-bottom: 65px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .container {
    overflow-x: hidden;
    max-width: 100%;
  }
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 0;
  background-color: var(--white);
  position: relative;
  text-align: center;
  border-top: 4px solid var(--dark);
  border-bottom: 4px solid var(--dark);
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern-bg.svg');
  background-size: 400px;
  opacity: 0.05;
  pointer-events: none;
}

.how-it-works h2 {
  margin-bottom: 3rem;
  color: var(--red);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 250px;
  background-color: var(--pink);
  border-radius: 1rem;
  padding: 2rem;
  border: 3px solid var(--dark);
  box-shadow: 8px 8px 0 0 var(--dark);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0 0 var(--dark);
}

.step-number {
  font-family: var(--font-primary);
  font-size: 5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0 var(--dark);
}

.step h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.step p {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
  }
  
  .step {
    width: 100%;
    margin-bottom: 2rem;
  }
}

/* Subscription Boxes */
.subscription-boxes {
  padding: 5rem 0;
  background-color: var(--pink);
  position: relative;
  text-align: center;
}

.subscription-boxes h2 {
  margin-bottom: 1rem;
  color: #f55d56 ;
}

.box-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: var(--red);
}

.boxes-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.box-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  border: 3px solid var(--dark);
  box-shadow: 8px 8px 0 0 var(--dark);
  transition: all 0.3s ease;
}

.box-card:hover {
  transform: translateY(-10px);
  box-shadow: 12px 12px 0 0 var(--dark);
}

.box-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-bottom: 3px solid var(--dark);
}

.box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.box-card:hover .box-image img {
  transform: scale(1.1);
}

.box-badge {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background-color: var(--yellow);
  color: var(--dark);
  font-family: var(--font-primary);
  font-weight: 800;
  padding: 0.5rem 2rem;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 1;
}

.box-content {
  padding: 2rem;
  text-align: center;
}

.box-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.box-content p {
  margin-bottom: 1.5rem;
  height: 80px;
}

.box-price {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .boxes-container {
    flex-direction: column;
    align-items: center;
  }
  
  .box-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .box-content p {
    height: auto;
  }
}

/* Countries Section */
.countries-section {
  padding: 5rem 0;
  background-color: var(--white);
  position: relative;
  text-align: center;
  border-top: 4px solid var(--dark);
}

.countries-section h2 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.countries-section p {
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.country-card {
  position: relative;
  height: 200px;
  border-radius: 1rem;
  overflow: hidden;
  border: 3px solid var(--dark);
  box-shadow: 5px 5px 0 0 var(--dark);
  transition: all 0.3s ease;
}

.country-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 0 0 var(--dark);
}

.country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.country-card:hover img {
  transform: scale(1.1);
}

.country-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(5, 28, 44, 0.7);
  padding: 1rem;
  transition: all 0.3s ease;
}

.country-overlay h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.view-all-container {
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .countries-grid {
    grid-template-columns: 1fr;
  }
}

/* Join CTA Section */
.join-cta {
  padding: 5rem 0;
  background-color: var(--red);
  position: relative;
  text-align: center;
  border-top: 4px solid var(--dark);
  border-bottom: 4px solid var(--dark);
}

.join-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/pattern-bg.svg');
  background-size: 500px;
  opacity: 0.1;
  pointer-events: none;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.join-cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 3.5rem;
}

.join-cta p {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background-color: var(--white);
  color: var(--red);
}

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

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
  background-color: var(--white);
  color: var(--red);
}

@media (max-width: 768px) {
  .join-cta h2 {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
} 