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

:root {
  --chili-red: #A30D1E;
  --chili-dark: #5A0F0F;
  --chili-light: #F8F5F2;
  --chili-gray: #EDE7E5;
  --text-dark: #111111;
  --text-muted: #6B6B6B;
  --border-light: #EDE7E5;
  --white: #ffffff;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
}

.brand-mark {
  color: var(--chili-red);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--chili-red);
}

.cart-link {
  background: none;
  border: 1px solid var(--border-light);
  padding: 8px 15px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.cart-count {
  background: var(--chili-red);
  color: var(--white);
  border-radius: 50px;
  padding: 2px 6px;
  font-size: 0.8rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 99;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--chili-dark);
}

.btn-secondary {
  background: var(--chili-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--chili-red);
  color: var(--chili-red);
}

.btn-outline:hover {
  background: var(--chili-red);
  color: white;
}

.btn-glow {
  box-shadow: 0 0 20px rgba(163, 13, 30, 0.3);
}

.btn-link {
  background: none;
  border: none;
  color: var(--chili-red);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.btn-link:hover {
  gap: 10px;
}

.btn-sm {
  padding: 8px 15px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--chili-red) 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
  padding: 80px 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(163, 13, 30, 0.1);
  color: var(--chili-red);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.lede {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--chili-red);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  height: 500px;
}

.hero-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  z-index: 2;
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  z-index: 1;
}

.hero-badge-1,
.hero-badge-2 {
  position: absolute;
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge-1 {
  top: 20%;
  left: 0;
  animation: float 3s ease-in-out infinite;
}

.hero-badge-2 {
  bottom: 20%;
  right: 0;
  animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.img-float {
  animation: float 6s ease-in-out infinite;
}

.img-rotate {
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Section Headers */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-header.text-center {
  flex-direction: column;
  text-align: center;
}

.section-subtitle {
  display: block;
  color: var(--chili-red);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Highlights */
.highlights {
  padding: 60px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.highlight-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(163, 13, 30, 0.1);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--chili-red) 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.highlight-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  20% { transform: translateX(100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* About Section */
.about {
  background: var(--chili-light);
  padding: 60px 0;
}

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

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  list-style: none;
}

.pill-list li {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.about-features {
  margin: 20px 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.feature i {
  color: var(--chili-red);
}

.about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.grid-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.grid-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-item:hover img {
  transform: scale(1.1);
}

/* Featured Products */
.featured {
  padding: 60px 0;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(163, 13, 30, 0.1);
}

.product-media {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--chili-red);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-body {
  padding: 20px;
}

.product-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.price {
  font-weight: 700;
  color: var(--chili-dark);
  margin-bottom: 15px;
}

.card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Testimonials */
.testimonials {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f5f2 0%, #ffffff 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact {
  padding: 60px 0;
  background: var(--chili-light);
}

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

.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-details {
  margin: 30px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--chili-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chili-red);
}

.contact-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--chili-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chili-red);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--chili-red);
  color: white;
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-form .form-row {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-light);
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
}

.form-helper {
  display: none;
}

/* Footer */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-tagline {
  margin: 20px 0;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: var(--chili-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chili-red);
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--chili-red);
  color: white;
}

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

.footer-links h3,
.footer-contact h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--chili-red);
}

.footer-contact i {
  width: 20px;
  color: var(--chili-red);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
}

.muted {
  color: var(--text-muted);
}

.small {
  font-size: 0.9rem;
}

/* Cart Drawer */
.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--border-light);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 201;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid var(--border-light);
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-count-drawer {
  background: var(--chili-red);
  color: white;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-empty {
  text-align: center;
  padding: 40px 20px;
}

.cart-empty i {
  font-size: 4rem;
  color: var(--border-light);
  margin-bottom: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--chili-red);
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 25px;
  height: 25px;
  border: 1px solid var(--border-light);
  background: white;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--chili-light);
}

.qty-value {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
}

.remove-btn:hover {
  color: var(--chili-red);
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border-light);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-form input {
  padding: 10px;
  border: 1px solid var(--border-light);
  border-radius: 5px;
}

/* Shop Page */
.shop-head {
  background: var(--chili-light);
  padding: 40px 0;
  text-align: center;
}

.shop-head h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.shop-grid {
  padding: 40px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-image-main {
    width: 300px;
    height: 300px;
  }

  .hero-image-accent {
    width: 200px;
    height: 200px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-image-grid {
    max-width: 500px;
    margin: 0 auto;
  }

  .contact-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-cta {
    justify-content: center;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cart-drawer {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }
}

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

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

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .cart-item {
    grid-template-columns: 50px 1fr auto;
    gap: 10px;
    padding: 10px;
  }

  .cart-item-image {
    width: 50px;
    height: 50px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .shop-head h1 {
    font-size: 2.2rem;
  }
}

/* Utility Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.pulse {
  animation: pulse 0.3s ease-in-out;
}

@keyframes btnAdded {
  0% { transform: scale(1); }
  50% { transform: scale(0.95); background: var(--chili-dark); }
  100% { transform: scale(1); }
}

.btn-added {
  animation: btnAdded 0.3s ease-in-out;
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  color: var(--text-dark);
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--chili-red);
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-left-color: #10b981;
}

.notification-success i {
  color: #10b981;
}

.notification-error {
  border-left-color: #ef4444;
}

.notification-error i {
  color: #ef4444;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.modal.open {
  opacity: 1;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.modal-image img {
  width: 100%;
  border-radius: 10px;
}

.ingredients-list {
  list-style: none;
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ingredients-list li {
  background: var(--chili-light);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
}

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