.cover {
  height: 200px;
  background-color: var(--cream-2);
  background-size: cover;
  background-position: center;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px 20px;
  margin-top: -48px;
}

.logo-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-soft);
  background: var(--cream-2);
}

.store-desc {
  margin: 0;
  color: var(--gold-2);
  font-size: 0.95rem;
}

.categories-nav {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 20px 24px;
  scrollbar-width: none;
}

.categories-nav::-webkit-scrollbar {
  display: none;
}

@media (min-width: 640px) {
  .categories-nav {
    justify-content: center;
  }
}

.category-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  min-width: 68px;
  flex-shrink: 0;
}

.category-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--cream-2);
}

.category-pill.active .category-circle {
  border-color: var(--gold);
}

.category-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-label {
  font-size: 0.78rem;
  color: var(--espresso);
  font-weight: 500;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
  padding: 0 20px 110px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 14px 100px;
  }

  .product-info {
    padding: 10px 10px 14px;
  }

  .product-info h3 {
    font-size: 1rem;
  }

  .product-price {
    font-size: 0.9rem;
    margin: 0 0 10px;
  }

  .btn-details {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-image {
  aspect-ratio: 1 / 1;
  background: var(--cream-2);
}

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

.product-info {
  padding: 12px 14px 16px;
}

.product-info h3 {
  font-family: var(--font-serif);
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 600;
}

.product-price {
  color: var(--gold-2);
  font-weight: 600;
  margin: 0 0 12px;
}

.btn-details {
  width: 100%;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--espresso-soft);
  padding: 60px 0;
}

.modal-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--cream-2);
}

.modal-body {
  padding: 20px 22px 24px;
}

.modal-body h2 {
  font-family: var(--font-serif);
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.modal-price {
  color: var(--gold-2);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 12px;
}

.modal-desc p {
  margin: 3px 0;
  color: var(--espresso-soft);
  font-size: 0.88rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0;
}

.qty-selector button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--espresso);
  background: none;
  font-size: 1.1rem;
  color: var(--espresso);
}

#qty-value {
  font-size: 1.05rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.btn-whatsapp {
  width: 100%;
  background: var(--whatsapp-green);
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 50;
  text-decoration: none;
}

@media (max-width: 480px) {
  .cover {
    height: 150px;
  }
  .logo-circle {
    width: 80px;
    height: 80px;
  }
  .store-name {
    font-size: 1.5rem;
  }
}
