:root {
  --purple-primary: #8e67ab;
  --dark-bg: #1a1a1a;
  --light-gray: #f8f9fa;
}

body {
  /* font-family: "Monospace", monospace; */
  color: #333;
}

.x-small {
  font-size: 0.75rem;
}

/* Hero Section */
.hero-section {
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  position: relative;
}

.hero-section-company {
  background-size: cover;
  background-position: center;
  position: relative;
}

.logo-badge {
  display: inline-block;
  border: 3px solid #fff;
  padding: 10px 20px;
  font-size: 1.5rem;
  transform: rotate(-5deg);
  background: rgba(0, 0, 0, 0.3);
}

.search-box {
  max-width: 500px;
}

.rounded-pill-start {
  border-top-left-radius: 50px !important;
  border-bottom-left-radius: 50px !important;
}

.rounded-pill-end {
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
}

.stats-row span {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding-right: 15px;
}
.stats-row span strong {
  font-size: 1.5rem;
  display: block;
}

.stats-row span:last-child {
  border-right: none;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
}

.whatsapp-btn:hover {
  color: white;
  background-color: #128c7e;
}

/* Cards */
.restaurant-card {
  transition: transform 0.3s;
  overflow: hidden;
}

.restaurant-card:hover {
  transform: translateY(-5px);
}

.badge-popular {
  position: absolute;
  top: 10px;
  left: -30px;
  background-color: #ff0066;
  color: white;
  padding: 5px 30px;
  font-size: 0.7rem;
  font-weight: bold;
  transform: rotate(-45deg);
  z-index: 1;
}

/* Steps */
.step-card {
  background: white;
  border-radius: 10px;
  position: relative;
  height: 100%;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #f8f9fa;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section .bg-black {
  background-color: #000 !important;
}

.list-categories li {
  margin-bottom: 10px;
  font-weight: 300;
}

.bg-purple {
  background-color: var(--purple-primary) !important;
}

.eat-text {
  font-family: "Gourmet", cursive;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  bottom: 0;
  left: 0;
  width: 100%;
}

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-links li a {
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  border-radius: 50%;
}

.social-links li a:hover {
  color: var(--purple-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding-bottom: 60px;
  }

  .stats-row {
    flex-direction: column;
    gap: 10px !important;
  }

  .stats-row span {
    border-right: none;
    padding-right: 0;
  }
}

.form-label {
  font-weight: 700;
}


@media (max-width: 576px) {
  .store-product-card {
    display: flex;
    flex-direction: row;
    border-radius: 0.5rem !important;
    overflow: hidden;
  }
  
  .store-product-card .ratio {
    width: 35%;
    flex-shrink: 0;
  }
  
  .store-product-card .card-body {
    width: 65%;
  }
  
  .store-product-card .card-text {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .store-product-card .card-img-top {
    object-fit: cover;
    border-radius: 0.5rem;
  }
}