@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Playfair+Display:wght@500;700&display=swap");

:root {
  --v-green: #2d7a4f;
  --v-green-dark: #1e5c3a;
  --v-green-light: #e8f5ee;
  --v-orange: #d4843e;
  --v-orange-light: #f5e6d3;
  --v-cream: #faf8f4;
  --v-brown: #5a3e2b;
  --v-text: #2c2c2c;
  --v-text-muted: #6b6b6b;
  --v-white: #ffffff;
  --v-border: #e2ddd5;
  --v-shadow: 0 4px 20px rgba(45, 122, 79, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--v-text);
  background: var(--v-cream);
  line-height: 1.7;
  font-size: 16px;
}

.navigare {
  background: var(--v-white);
  border-bottom: 3px solid var(--v-green);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.navigare .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.marca {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.marca-img {
  height: 44px;
  width: auto;
}

.marca-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--v-green);
  letter-spacing: -0.5px;
}

.marca-sub {
  font-size: 0.7rem;
  color: var(--v-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.linkuri-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.linkuri-nav a {
  text-decoration: none;
  color: var(--v-text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.linkuri-nav a:hover {
  color: var(--v-green);
}

.buton-nav {
  background: var(--v-green);
  color: var(--v-white) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 25px;
  font-weight: 700;
  transition: background 0.2s;
}

.buton-nav:hover {
  background: var(--v-green-dark);
  color: var(--v-white) !important;
}

.plansa {
  background: linear-gradient(
    135deg,
    var(--v-green-light) 0%,
    var(--v-white) 50%,
    var(--v-orange-light) 100%
  );
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.plansa::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(45, 122, 79, 0.06) 0%,
    transparent 70%
  );
}

.titlu-planse {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--v-green-dark);
  margin-bottom: 1rem;
  position: relative;
}

.subtitlu-planse {
  font-size: 1.2rem;
  color: var(--v-text-muted);
  max-width: 550px;
  margin: 0 auto 2rem;
}

.plansa-img {
  max-width: 900px;
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--v-shadow);
}

.sectiune {
  padding: 4rem 0;
}

.sectiune-titlu {
  text-align: center;
  margin-bottom: 3rem;
}

.sectiune-titlu h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--v-green-dark);
  margin-bottom: 0.5rem;
}

.sectiune-titlu p {
  color: var(--v-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.linie-verde {
  width: 60px;
  height: 3px;
  background: var(--v-orange);
  margin: 0.8rem auto;
  border-radius: 2px;
}

.grile-produse {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.cartela {
  background: var(--v-white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--v-border);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.cartela:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(45, 122, 79, 0.12);
}

.cartela-img-ambalaj {
  padding: 1.5rem;
  background: var(--v-green-light);
  text-align: center;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cartela-img-ambalaj img {
  max-height: 200px;
  max-width: 100%;
  object-fit: contain;
}

.cartela-corp {
  padding: 1.3rem 1.5rem;
}

.cartela-eticheta {
  display: inline-block;
  background: var(--v-orange-light);
  color: var(--v-orange);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.cartela-corp h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--v-brown);
  margin-bottom: 0.4rem;
}

.cartela-corp p {
  font-size: 0.9rem;
  color: var(--v-text-muted);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.pret-produs {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--v-green);
}

.pret-produs small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--v-text-muted);
}

.despre-sec {
  background: var(--v-white);
}

.despre-grila {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.despre-grila img {
  border-radius: 14px;
  width: 100%;
  box-shadow: var(--v-shadow);
}

.despre-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--v-green-dark);
  margin-bottom: 1rem;
}

.despre-text p {
  color: var(--v-text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.avantaje {
  background: var(--v-green);
  color: var(--v-white);
  padding: 3rem 0;
}

.avantaje-grila {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.avantaj-item i {
  font-size: 2.5rem;
  color: var(--v-orange);
  margin-bottom: 0.8rem;
  display: block;
}

.avantaj-item h4 {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.avantaj-item p {
  font-size: 0.85rem;
  opacity: 0.85;
}

.subsol {
  background: var(--v-brown);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.subsol-grila {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.subsol h5 {
  color: var(--v-white);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.subsol p,
.subsol a {
  font-size: 0.9rem;
  line-height: 1.8;
}

.subsol a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.subsol a:hover {
  color: var(--v-orange);
}

.subsol-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.subsol-logo span {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--v-white);
}

.subsol-baza {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.retele {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.retele a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.retele a:hover {
  background: var(--v-orange);
  color: var(--v-white);
}

.retele i {
  font-size: 1rem;
}

.pagina-politica {
  padding: 4rem 0;
}

.pagina-politica h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--v-green-dark);
  margin-bottom: 2rem;
}

.pagina-politica h2 {
  font-size: 1.3rem;
  color: var(--v-brown);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.pagina-politica p,
.pagina-politica li {
  color: var(--v-text-muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.pagina-politica ul {
  padding-left: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--v-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.2rem 0;
  z-index: 999;
  display: none;
}

.cookie-banner.activ {
  display: block;
}

.cookie-interior {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-interior p {
  font-size: 0.9rem;
  color: var(--v-text-muted);
  margin: 0;
}

.cookie-interior p a {
  color: var(--v-green);
  text-decoration: underline;
}

.buton-cookie {
  background: var(--v-green);
  color: var(--v-white);
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.buton-cookie:hover {
  background: var(--v-green-dark);
}

@media (max-width: 991px) {
  .despre-grila {
    grid-template-columns: 1fr;
  }
  .avantaje-grila {
    grid-template-columns: repeat(2, 1fr);
  }
  .subsol-grila {
    grid-template-columns: 1fr 1fr;
  }
  .linkuri-nav {
    display: none;
  }
  .titlu-planse {
    font-size: 2.2rem;
  }
}

@media (max-width: 575px) {
  .avantaje-grila {
    grid-template-columns: 1fr;
  }
  .subsol-grila {
    grid-template-columns: 1fr;
  }
  .titlu-planse {
    font-size: 1.8rem;
  }
  .cookie-interior {
    flex-direction: column;
    text-align: center;
  }
}
