body {
   margin: 0;
   font-family: sans-serif;
  
 }
 

 footer{background-color: #666;}
 
 .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}


.product-card {
  width: 170px;
  border: 1px solid #ccc;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  background: #fdfdfd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: border 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.02); /* optional, pentru efect vizual ușor */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}


.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}


#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  color: white;
  padding: 15px;
  z-index: 1000;
  font-size: 14px;
}
.cookie-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  background: #00a651;
  color: white;
  border-radius: 4px;
}
.cookie-buttons button:last-child {
  background: #888;
}

/* Footer general */
.site-footer {
  background-color: #333;
  color: white;
  padding: 40px 20px 20px;
  font-family: sans-serif;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Carduri din footer */
.site-footer .procuct_card {
  flex: 1;
  min-width: 200px;
}

.site-footer h2 {
  font-size: 20px;
  margin-bottom: 15px;
  color: white;
}

/* Linkuri din footer */
.site-footer a {
  color: white;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* Secțiunea de jos cu copyright */
.site-footer > div:last-child {
  text-align: left;
  margin-top: 30px;
  font-size: 14px;
  color: #ccc;
}

.product-cards-container {
  display: flex;
  justify-content: center;         /* centrează pe orizontală */
  align-items: stretch;            /* aliniere pe verticală (egală) */
  flex-wrap: wrap;                 /* permite trecerea pe rând nou dacă ecranul e mic */
  gap: 40px;                       /* distanță între carduri */
  margin: 40px auto;               /* margini verticale și centru orizontal */
  max-width: 1200px;               /* pentru control pe lățime */
}
.prices_calculated{
  margin-top: 0; 
  font-size: 0.9rem; 
  color: #555;
}
.contact-map {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 40px auto;
  max-width: 1000px;
  padding: 20px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-map-frame {
  flex: 1;
  min-width: 280px;
}

.contact-map-frame iframe {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  border: none;
}
