.card,
.daily-card {
  background: white;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.2s;
  overflow: hidden;
}

.card:hover,
.daily-card:hover {
  transform: translateY(-4px);
}

.card img,
.daily-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.card h3,
.daily-card h3 {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 600;
}

.card p,
.daily-card p,
.daily-card small {
  margin-top: 6px;
}

.daily-price {
  font-weight: bold;
  color: #ea580c;
  margin-top: 8px;
}

.card {
  min-width: 220px;
  max-width: 220px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  flex-shrink: 0;
}

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

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover; 
}

.card h3 {
  font-size: 16px;
  padding: 10px 12px 0;
}

.card-buttons {
  display: flex;
  gap: 8px;
  padding: 10px 12px 14px;
}

.card-buttons button {
  flex: 1;
  font-size: 13px;
  border: none;
  border-radius: 8px;
  padding: 6px;
  cursor: pointer;
}

.btn-view {
  background: #f97316;
  color: white;
}

.btn-map {
  background: #f1f5f9;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-buttons {
  margin-top: auto;
}

#storePreview {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 9999;
}

#storePreview img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.store-preview-content {
  padding: 14px;
}

.store-preview-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.store-address {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.store-meta {
  font-size: 13px;
  margin-bottom: 10px;
  color: #444;
}

.store-products {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.store-products img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.btn-primary {
  display: block;
  text-align: center;
  background: #f97316;
  color: white;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.store-products {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mini-product {
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mini-product img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #f3f3f3;
  border-radius: 8px;
  padding: 4px;
}

.mini-product span {
  font-size: 12px;
  margin-top: 4px;
  font-weight: 600;
}

.daily-card {
  width: 100%;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: 0.2s;
}

.daily-card:hover {
  transform: translateY(-3px);
}

.card-image {
  width: 100%;
  height: 160px;
  background: #f5f5f5;
}

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

.card-image {
  width: 100%;
  height: 200px;
  background: #f5f5f5;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 IMPORTANTE */
}

.card-content {
  padding: 15px;
}

.price {
  font-weight: bold;
  margin-top: 5px;
}

.daily-badge {
  position: absolute;
  margin: 10px;
  background: #ff6a00;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}