/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Updated font family to match Nespresso style with Helvetica Neue as primary */
  font-family: "Helvetica Neue", "Source Sans Pro", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Added promotional banner styles */
.promo-banner {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  padding: 12px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  overflow: hidden;
}

.promo-slider {
  display: flex;
  animation: slide 12s infinite;
  white-space: nowrap;
}

.promo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 100%;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 20px;
}

.promo-item i {
  color: #10b981;
  font-size: 1rem;
}

@keyframes slide {
  0%,
  30% {
    transform: translateX(0);
  }
  33%,
  63% {
    transform: translateX(-100%);
  }
  66%,
  96% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Header */
.header {
  position: fixed;
  /* Adjusted top position to account for promo banner */
  top: 44px;
  width: 100%;
  /* Made header transparent when it has transparent class */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.header.transparent {
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.transparent .nav-brand h1,
.header.transparent .nav-link {
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Added mobile-specific transparent navbar styles */
.header.mobile-transparent {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.mobile-transparent .nav-brand h1,
.header.mobile-transparent .nav-link,
.header.mobile-transparent .nav-toggle span {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand h1 {
  /* Updated brand typography to match Nespresso style with Helvetica Neue */
  font-family: "Helvetica Neue", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 3px;
  transition: color 0.3s ease;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #8b5cf6;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #1f2937;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  /* Adjusted padding to account for promo banner and transparent header */
  padding: 140px 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
  position: relative;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Updated hero background with premium coffee product image */
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.7) 0%, rgba(31, 41, 55, 0.6) 50%, rgba(55, 65, 81, 0.5) 100%),
    url("imagenes/capsule-haus.png") center / cover;
  z-index: -1;
  border-radius: 20px;
}

.hero-content {
  flex: 1;
  z-index: 1;
}

.hero-title {
  /* Updated hero title typography to use Helvetica Neue like Nespresso */
  font-family: "Helvetica Neue", sans-serif;
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #e5e7eb;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #1f2937;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Products Section */
.products {
  padding: 6rem 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1f2937;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Updated product cards to match Nespresso's premium aesthetic */
.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000000;
  letter-spacing: -0.025em;
}

.product-info p {
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Updated price styling to match Nespresso's elegant approach */
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
}

/* Updated product price container for better alignment */
.product-price-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}

/* Redesigned shop button to match Nespresso's sophisticated button style */
.btn-shop {
  padding: 0.75rem 1.5rem;
  background: #000000;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  min-width: 140px;
}

.btn-shop:hover {
  background: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Added alternative gold button style for premium accent */
.btn-shop.btn-gold {
  background: #b58b00;
  color: white;
}

.btn-shop.btn-gold:hover {
  background: #9d7600;
}

/* Added outline button variant like Nespresso */
.btn-shop.btn-outline {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
}

.btn-shop.btn-outline:hover {
  background: #000000;
  color: white;
}

/* About Section */
.about {
  padding: 6rem 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.about-text p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature i {
  color: #8b5cf6;
  font-size: 1.2rem;
}

.feature span {
  font-weight: 500;
  color: #1f2937;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Subscription Modal */
.subscription-modal {
  display: flex;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("/placeholder.svg?height=800&width=1200")
    center / cover;
  backdrop-filter: blur(3px);
}

.modal-container {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  margin: 2rem;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: modalSlideUp 0.4s ease;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #6b7280;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #1f2937;
  transform: scale(1.1);
}

.modal-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1f2937;
  text-align: center;
  margin-bottom: 0.5rem;
}

.modal-content p {
  text-align: center;
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-form input {
  padding: 1.2rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.modal-form input:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  background: white;
}

.btn-modal {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-modal:hover {
  background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Added success content styles for modal */
.success-content {
  text-align: center;
}

.success-icon {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.success-content h2 {
  color: #1f2937;
  margin-bottom: 1rem;
}

.success-content p {
  color: #6b7280;
  margin-bottom: 2rem;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Social Section */
.social {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  text-align: center;
}

.social h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  /* Added better typography for section title */
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  /* Made social buttons more proportioned and elegant */
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-decoration: none;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 140px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

/* Added elegant hover effects for social buttons */
.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

.social-link i {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.1);
}

.social-link span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Enhanced brand-specific hover colors */
.social-link.instagram:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #f09433;
  box-shadow: 0 15px 35px rgba(240, 148, 51, 0.4);
}

.social-link.facebook:hover {
  background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
  border-color: #1877f2;
  box-shadow: 0 15px 35px rgba(24, 119, 242, 0.4);
}

.social-link.youtube:hover {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  border-color: #ff0000;
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.4);
}

.social-link.tiktok:hover {
  background: linear-gradient(135deg, #ff0050 0%, #00f2ea 100%);
  border-color: #ff0050;
  box-shadow: 0 15px 35px rgba(255, 0, 80, 0.4);
}

.social-link.shop:hover {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  border-color: #8b5cf6;
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.product-card,
.about-text {
  animation: fadeInUp 0.8s ease-out;
}

/* Enhanced mobile responsive design - mobile-first approach */
@media (max-width: 768px) {
  /* Added mobile styles for promo banner */
  .promo-banner {
    padding: 10px 0;
  }

  .promo-item {
    font-size: 0.8rem;
    padding: 0 15px;
  }

  /* Made header completely transparent on mobile for better product visibility */
  .header {
    top: 40px;
    background: transparent;
    backdrop-filter: blur(8px);
    border-bottom: none;
  }

  .container {
    padding: 0 15px;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  /* Enhanced text shadow for better readability on transparent background */
  .nav-brand h1 {
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  }

  /* Enhanced hamburger menu visibility with stronger shadow */
  .nav-toggle {
    display: flex;
  }

  .nav-toggle span {
    background: white;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .nav-menu {
    position: fixed;
    /* Adjusted top position for mobile menu to account for promo banner */
    top: 120px;
    left: 0;
    width: 100%;
    /* Made mobile menu semi-transparent with dark background */
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* Show mobile menu when active */
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Made mobile menu links white */
  .nav-link {
    color: white;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:hover {
    color: #d4af37;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    /* Adjusted hero padding and layout to position buttons at bottom */
    padding: 120px 1rem 0;
    gap: 0;
    min-height: 100vh;
    justify-content: flex-start;
    display: flex;
  }

  .hero-content {
    /* Added flex properties to control content distribution */
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
  }

  .hero-background {
    border-radius: 15px;
    margin: 0 10px;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    /* Added margin-top to create space from header */
    margin-top: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
    padding: 0 1rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    /* Position buttons at absolute bottom with proper spacing */
    margin-top: auto;
    padding: 2rem 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .products {
    padding: 4rem 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about {
    padding: 4rem 0;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .features {
    align-items: center;
  }

  .social {
    padding: 3rem 0;
  }

  .social-links {
    gap: 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .social-link {
    min-width: auto;
    padding: 1.8rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
  }

  .social-link:hover {
    transform: translateY(-5px) scale(1.02);
  }

  .social-link i {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
  }

  .social-link span {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .modal-container {
    margin: 1rem;
    padding: 2.5rem 1.5rem;
    max-width: 400px;
  }

  .modal-content h2 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .social-links {
    grid-template-columns: 1fr;
    max-width: 250px;
  }

  .whatsapp-btn {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  /* Mobile responsive adjustments for product price container */
  .product-price-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .btn-shop {
    width: 100%;
    text-align: center;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .hero {
    /* Adjusted padding for smaller screens */
    padding: 100px 1rem 0;
    min-height: 100vh;
  }

  .hero-title {
    font-size: 2.2rem;
    /* Reduced top margin for smaller screens */
    margin-top: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-buttons {
    /* Adjusted bottom padding for smaller screens */
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 360px) {
  .promo-banner {
    padding: 6px 0;
  }

  .promo-item {
    font-size: 0.7rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .modal-container {
    margin: 0.3rem;
    padding: 1.5rem 1rem;
  }

  .nav-brand h1 {
    font-size: 1.4rem;
  }
}
