/* public/assets/css/main.css */

/* Setări globale pentru sticky footer */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #f3f4f6; /* fundal gri deschis */
  font-family: 'Inter', sans-serif;
}

main {
  flex: 1;
  padding: 10px 0;
}

/* Container pentru PC */
.container-pc {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Promo card image container - pătrat cu inset */
.promo-img-container {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Aspect 1:1 */
  box-sizing: border-box;
}

.promo-img-container img {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

/* Limitează numele produsului la maxim 3 rânduri, cu font mai mic */
.product-title {
  font-size: 1.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.2em;
  height: calc(1.2em * 3);
}

/* Stiluri pentru prețuri */
.old-price {
  font-size: 1rem;
  display: inline-block;
}

.new-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ef4444;
  display: inline-block;
}

/* Efect de hover pentru carduri promoționale */
.card-promo {
  transition: transform 0.2s ease-in-out;
}

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

/* Stil personalizat pentru titlul secțiunii Promoții & Oferte (Super oferte) */
.promo-title {
  text-align: left;
  border-bottom: 2px solid #D92635;
  padding-bottom: 8px;
  color: #D92635;
  background: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  margin-bottom: 1rem;
}


/* Grid adjustments: pe mobil, cardurile se vor centra */
.promo-cards-grid {
  justify-items: center;
}

/* Alte stiluri personalizate pot fi adăugate aici */
