@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --blue:    #1a5f8a;
  --blue2:   #0d3d5e;
  --sky:     #d6ecf7;
  --yellow:  #f0c030;
  --yellow2: #e8a800;
  --white:   #ffffff;
  --cream:   #fdf9f0;
  --text:    #1c2b38;
  --muted:   #5a7a8a;
  --border:  #c8dfe8;
  --radius:  12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); background: var(--cream); }

/* ── HEADER ── */
header {
  background: linear-gradient(135deg, var(--blue2) 0%, var(--blue) 60%, #2179a8 100%);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
}
header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: relative;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-icon {
  width: 42px; height: 42px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.nav-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; letter-spacing: .5px; }
.nav-sub  { font-size: 11px; opacity: .7; letter-spacing: 1px; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 14px; font-weight: 400; letter-spacing: .3px; transition: color .2s; }
.nav-links a:hover { color: var(--yellow); }

.hero {
  padding: 70px 48px 80px;
  max-width: 680px;
  position: relative;
}
.hero-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  font-size: 17px;
  line-height: 1.7;
  opacity: .88;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25d366; color: #fff;
  padding: 13px 24px; border-radius: 50px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.btn-wa svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.btn-sec {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: #fff;
  padding: 13px 24px; border-radius: 50px;
  font-size: 15px; font-weight: 400; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: background .2s;
}
.btn-sec:hover { background: rgba(255,255,255,.2); }

.hero-deco {
  position: absolute;
  right: 48px; top: 50%; transform: translateY(-50%);
  font-size: 140px; opacity: .08; line-height: 1;
  pointer-events: none; user-select: none;
}

/* ── WAVE ── */
.wave { display: block; background: var(--blue); line-height: 0; }
.wave svg { display: block; width: 100%; }

/* ── SECTION ── */
section { padding: 64px 48px; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.section-title span { color: var(--blue); }
.section-sub { font-size: 16px; color: var(--muted); margin-bottom: 40px; font-weight: 300; line-height: 1.6; }
.section-head { max-width: 560px; }

/* ── CATEGORIES ── */
.cats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.cat-btn {
  padding: 8px 18px; border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white); color: var(--muted);
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all .2s; letter-spacing: .3px;
}
.cat-btn:hover, .cat-btn.on {
  background: var(--blue); border-color: var(--blue); color: var(--white);
}

/* ── PRODUCT GRID ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,95,138,.12); }
.card-img {
  height: 130px;
  background: linear-gradient(135deg, var(--sky) 0%, #b8d9ee 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,95,138,.08));
}
.card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.card-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 6px;
}
.card-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.35; }
.card-pack { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--blue2);
}
.card-price span { font-size: 13px; font-weight: 400; color: var(--muted); font-family: 'Lato', sans-serif; }
.card-order {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--yellow); color: var(--blue2);
  padding: 7px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700; text-decoration: none;
  transition: background .2s, transform .15s;
  border: none; cursor: pointer;
}
.card-order:hover { background: var(--yellow2); transform: scale(1.04); }

/* ── ABOUT ── */
#despre { background: var(--blue2); color: var(--white); }
#despre .section-label { color: var(--yellow); }
#despre .section-title { color: var(--white); }
#despre .section-title span { color: var(--yellow); }
#despre .section-sub { color: rgba(255,255,255,.7); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.feat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px;
}
.feat-icon { font-size: 26px; margin-bottom: 8px; }
.feat-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.feat-desc  { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.5; }
.about-visual {
  display: flex; flex-direction: column; gap: 14px;
}
.about-stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.about-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; color: var(--yellow);
  flex-shrink: 0;
}
.about-stat-l { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.4; }

/* ── CONTACT ── */
#contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
}
.contact-icon { font-size: 44px; }
.contact-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--text); }
.contact-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.contact-btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25d366; color: #fff;
  padding: 12px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
  width: 100%; justify-content: center;
}
.contact-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.contact-btn-wa svg { width: 18px; height: 18px; fill: #fff; }
.contact-btn-email {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--blue); color: #fff;
  padding: 12px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .2s, transform .2s;
  width: 100%; justify-content: center;
}
.contact-btn-email:hover { background: var(--blue2); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--blue2);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 28px 48px;
  font-size: 13px;
}
footer strong { color: var(--yellow); }

/* ── FLOAT WA BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.5);opacity:0} }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero { padding: 48px 20px 56px; }
  .hero h1 { font-size: 32px; }
  .hero-deco { display: none; }
  section { padding: 48px 20px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  footer { padding: 24px 20px; }
}
