/* ===== Paletă de culori (din imaginea trimisă) ===== */
:root {
  --tabacco: #A89982;
  --stone:   #AAA297;
  --coffee:  #5A493B;
  --cream:   #C8BDB1;
  --chai:    #968473;
  --walnut:  #60544D;

  --bg:        #F3EEE8;   /* fundal pagină (cream foarte deschis) */
  --bg-card:   #FFFFFF;
  --text:      #2E2620;
  --text-soft: #6B6055;
  --line:      #E3DAD0;

  --shadow: 0 6px 22px rgba(58, 46, 35, 0.10);
  --radius: 12px;
  --maxw: 1200px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
}

button { font-family: inherit; cursor: pointer; }

h1, h2, h3 { margin: 0 0 .4em; color: var(--coffee); }

/* ===== Bară de sus ===== */
.topbar {
  background: var(--coffee);
  color: #EDE5DB;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  flex-wrap: wrap;
}
.topbar a { color: #EDE5DB; opacity: .9; }
.topbar a:hover { opacity: 1; }
.topbar .tb-phones { display: flex; gap: 16px; flex-wrap: wrap; }
.topbar .tb-right { display: flex; align-items: center; gap: 18px; }
.topbar .tb-social { display: flex; gap: 14px; }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; }
.lang-switch i { opacity: .5; font-style: normal; }
.lang-switch a { opacity: .55; }
.lang-switch a.active-lang { opacity: 1; text-decoration: underline; }

/* ===== Header ===== */
.header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .5px;
  color: var(--coffee);
  white-space: nowrap;
}
.logo .logo-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--chai);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.logo small { display: block; font-size: 11px; font-weight: 500; color: var(--text-soft); letter-spacing: 2px; }

.search {
  flex: 1;
  display: flex;
  max-width: 560px;
  border: 1.5px solid var(--tabacco);
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}
.search input {
  flex: 1;
  border: 0;
  padding: 11px 18px;
  font-size: 14px;
  outline: none;
  background: transparent;
}
.search button {
  border: 0;
  background: var(--chai);
  color: #fff;
  padding: 0 20px;
  font-size: 15px;
}
.search button:hover { background: var(--walnut); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.icon-btn {
  position: relative;
  background: none;
  border: 0;
  font-size: 22px;
  color: var(--coffee);
  line-height: 1;
}
.cart-count {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--walnut);
  color: #fff;
  font-size: 11px;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  padding: 0 4px;
}

/* ===== Navigare categorii ===== */
.nav {
  background: var(--walnut);
}
.nav .container { display: flex; flex-wrap: wrap; }
.nav-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; flex: 1;
}
.nav-menu > li { position: relative; }
.nav-toggle { display: none; }
.nav-menu a {
  display: block;
  color: #EFE7DC;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active,
.nav-menu > li.has-sub:hover > a { background: var(--coffee); color: #fff; }
.nav-menu .caret { font-size: 10px; margin-left: 6px; vertical-align: middle; }

/* Submeniu — pe desktop apare la hover */
.submenu {
  list-style: none; margin: 0; padding: 6px 0;
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--coffee);
  box-shadow: var(--shadow);
  border-radius: 0 0 8px 8px;
  z-index: 50;
  display: none;
}
.nav-menu > li.has-sub:hover > .submenu { display: block; }
.submenu a {
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  padding: 10px 18px;
  white-space: nowrap;
}
.submenu a:hover { background: var(--walnut); color: #fff; }

/* ===== Banner livrare ===== */
.ship-bar {
  background: var(--stone);
  color: var(--coffee);
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 12px;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(120deg, var(--tabacco), var(--chai));
  color: #fff;
  border-radius: var(--radius);
  margin: 24px 0;
  padding: 54px 40px;
  box-shadow: var(--shadow);
}
.hero h1 { color: #fff; font-size: 34px; max-width: 620px; }
.hero p { font-size: 17px; max-width: 560px; opacity: .95; margin: 0 0 22px; }
.btn {
  display: inline-block;
  background: var(--coffee);
  color: #fff;
  border: 0;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
}
.btn:hover { background: var(--walnut); }
.btn.btn-light { background: #fff; color: var(--coffee); }
.btn.btn-outline { background: transparent; border: 2px solid var(--coffee); color: var(--coffee); }

/* ===== Secțiuni ===== */
.section { margin: 36px 0; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-head h2 { font-size: 24px; margin: 0; }
.section-head .line { flex: 1; height: 1px; background: var(--line); margin: 0 18px; }

/* ===== Grilă categorii ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.cat-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  font-weight: 700;
  color: var(--coffee);
  transition: transform .15s, background .15s;
}
.cat-card:hover { transform: translateY(-3px); background: var(--tabacco); color: #fff; }
.cat-card .emoji { font-size: 30px; display: block; margin-bottom: 8px; }

/* ===== Grilă produse ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s, transform .15s;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-thumb {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-size: 54px;
  color: var(--chai);
  overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-body { padding: 14px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--chai); font-weight: 700; }
.product-name {
  font-size: 15px;
  font-weight: 600;
  margin: 5px 0 10px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}
.product-name a:hover { color: var(--chai); }
.product-price { font-size: 19px; font-weight: 800; color: var(--coffee); margin-top: auto; }
.product-price .old { font-size: 13px; color: var(--text-soft); text-decoration: line-through; margin-left: 8px; font-weight: 500; }
.badge {
  position: absolute;
  margin: 10px;
  background: var(--walnut);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}
.product-thumb-wrap { position: relative; }
.add-cart {
  margin-top: 12px;
  background: var(--chai);
  color: #fff;
  border: 0;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  width: 100%;
}
.add-cart:hover { background: var(--walnut); }

.empty {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-soft);
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px dashed var(--line);
}

/* ===== Pagină produs ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.product-detail .pd-image {
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-size: 120px; color: var(--chai);
  overflow: hidden;
}
.product-detail .pd-image img { width: 100%; height: 100%; object-fit: contain; }
/* când există imagine reală: o arătăm întreagă, în proporții naturale (fără tăiere) */
.product-detail .pd-image--img { aspect-ratio: auto; display: block; overflow: visible; }
.product-detail .pd-image--img img { width: 100%; height: auto; max-height: 560px; object-fit: contain; }
.pd-price { font-size: 30px; font-weight: 800; color: var(--coffee); margin: 14px 0; }
.pd-desc { color: var(--text-soft); margin: 18px 0; }
.qty {
  display: inline-flex; align-items: center; border: 1px solid var(--tabacco);
  border-radius: 8px; overflow: hidden; margin-right: 12px;
}
.qty button { border: 0; background: var(--cream); width: 38px; height: 42px; font-size: 18px; color: var(--coffee); }
.qty input { width: 48px; height: 42px; border: 0; text-align: center; font-size: 16px; }
.breadcrumb { color: var(--text-soft); font-size: 13px; margin: 18px 0; }
.breadcrumb a:hover { color: var(--chai); }

/* ===== Coș (drawer) ===== */
.overlay {
  position: fixed; inset: 0; background: rgba(46, 38, 32, .5);
  opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 60;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 380px; max-width: 92vw;
  background: var(--bg); box-shadow: -8px 0 30px rgba(0,0,0,.25);
  transform: translateX(100%); transition: transform .25s; z-index: 70;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { background: var(--coffee); color: #fff; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.cart-head h3 { color: #fff; margin: 0; }
.cart-head button { background: none; border: 0; color: #fff; font-size: 24px; }
.cart-items { flex: 1; overflow-y: auto; padding: 14px; }
.cart-row { display: flex; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px; margin-bottom: 10px; }
.cart-row .ci-thumb { width: 54px; height: 54px; border-radius: 8px; background: var(--cream); display: grid; place-items: center; font-size: 26px; color: var(--chai); overflow: hidden; flex: none; }
.cart-row .ci-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.cart-row .ci-info { flex: 1; min-width: 0; }
.cart-row .ci-name { font-size: 14px; font-weight: 600; }
.cart-row .ci-price { color: var(--coffee); font-weight: 700; font-size: 14px; }
.cart-row .ci-qty { display: flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 13px; }
.cart-row .ci-qty button { width: 24px; height: 24px; border: 1px solid var(--tabacco); background: var(--cream); border-radius: 5px; color: var(--coffee); }
.ci-remove { background: none; border: 0; color: var(--walnut); font-size: 18px; align-self: flex-start; }
.cart-foot { padding: 16px; border-top: 1px solid var(--line); background: var(--bg-card); }
.cart-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-soft); margin-bottom: 6px; }
.cart-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; color: var(--coffee); margin: 8px 0 12px; padding-top: 8px; border-top: 1px solid var(--line); }
.btn-whatsapp { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: #25D366; color: #fff; border: 0; padding: 14px; border-radius: 10px; font-weight: 800; font-size: 15px; }
.btn-whatsapp:hover { background: #1da851; }
.cart-note { font-size: 12px; color: var(--text-soft); text-align: center; margin-top: 8px; }

/* ===== Footer ===== */
.footer {
  background: var(--coffee);
  color: #D9CFC3;
  margin-top: 50px;
  padding: 44px 0 0;
}
.footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.footer h4 { color: #fff; margin: 0 0 12px; font-size: 16px; }
.footer a { color: #D9CFC3; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; text-align: center; padding: 16px; font-size: 13px; }

/* ===== Admin ===== */
.admin-wrap { max-width: 1000px; margin: 40px auto; padding: 0 18px; }
.admin-login { max-width: 380px; margin: 80px auto; background: var(--bg-card); padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.form-field { margin-bottom: 14px; text-align: left; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--coffee); margin-bottom: 5px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--line); border-radius: 8px;
  font-size: 14px; font-family: inherit; background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--chai); }
.admin-bar { display: flex; align-items: center; justify-content: space-between; background: var(--coffee); color: #fff; padding: 16px 22px; border-radius: var(--radius); margin-bottom: 24px; }
.admin-bar h2 { color: #fff; margin: 0; }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.tab-btn { border: 1px solid var(--line); background: var(--bg-card); color: var(--text-soft); padding: 10px 18px; border-radius: 10px; font-weight: 700; font-size: 14px; }
.tab-btn:hover { color: var(--coffee); }
.tab-btn.active { background: var(--coffee); color: #fff; border-color: var(--coffee); }
.tab-btn.active:hover { color: #fff; }
.admin-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; align-items: start; }
.panel { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th, .admin-table td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); }
.admin-table th { color: var(--chai); font-size: 12px; text-transform: uppercase; }
.admin-table img { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; }
.row-actions button { border: 0; background: var(--cream); color: var(--coffee); padding: 5px 9px; border-radius: 6px; margin-right: 5px; font-size: 13px; }
.row-actions button.del { background: #f0d9d3; color: #8a3b28; }
.tag { font-size: 11px; background: var(--cream); color: var(--coffee); padding: 2px 8px; border-radius: 20px; }
.muted { color: var(--text-soft); font-size: 13px; }

/* ===== Pagini de conținut (articole / blog / ghid etc.) ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s, transform .15s;
}
.article-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.article-thumb {
  aspect-ratio: 16 / 9;
  background: var(--cream);
  display: grid; place-items: center;
  font-size: 48px; color: var(--chai);
  overflow: hidden;
}
.article-thumb img { width: 100%; height: 100%; object-fit: contain; }
.article-body-card { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.article-date { font-size: 12px; color: var(--text-soft); margin-bottom: 4px; }
.article-title { font-size: 17px; margin: 0 0 8px; }
.article-title a:hover { color: var(--chai); }
.article-excerpt { color: var(--text-soft); font-size: 14px; margin: 0 0 14px; flex: 1; }
.article-more { color: var(--coffee); font-weight: 700; font-size: 14px; margin-top: auto; }
.article-more:hover { color: var(--chai); }

.article-full {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 820px;
}
.article-full h1 { font-size: 30px; margin: 6px 0 10px; }
.article-cover {
  aspect-ratio: 16 / 9;
  background: var(--cream);
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-size: 90px; color: var(--chai);
  overflow: hidden;
  margin: 16px 0 22px;
}
.article-cover img { width: 100%; height: 100%; object-fit: contain; }
/* când există imagine reală: o arătăm întreagă, în proporții naturale (fără tăiere) */
.article-cover--img { aspect-ratio: auto; display: block; }
.article-cover--img img { width: 100%; height: auto; max-height: 560px; object-fit: contain; }
.article-body { color: var(--text); line-height: 1.7; }
.article-body p { margin: 0 0 14px; }

/* Pagini juridice (Termeni, Confidențialitate, Retur, Contact) */
.legal-body h2 { font-size: 19px; margin: 26px 0 10px; color: var(--text); }
.legal-body ul { margin: 0 0 14px; padding-left: 22px; }
.legal-body li { margin: 0 0 6px; }
.legal-contact { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--cream); }
.legal-contact p { margin: 0 0 8px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .product-detail { grid-template-columns: 1fr; }
  .admin-grid { grid-template-columns: 1fr; }
  .footer .container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* header: logo + acțiuni pe un rând, căutarea dedesubt */
  .header .container { flex-wrap: wrap; gap: 12px; }
  .logo { font-size: 19px; }
  .logo .logo-mark { width: 34px; height: 34px; font-size: 17px; }
  .header-actions { margin-left: auto; order: 2; }
  .search { order: 3; flex-basis: 100%; max-width: 100%; }

  /* meniu hamburger */
  .nav .container { display: block; padding: 0; }
  .nav-toggle {
    display: flex; align-items: center; gap: 10px;
    width: 100%; background: var(--coffee); color: #fff; border: 0;
    padding: 14px 18px; font-size: 15px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .3px; cursor: pointer;
  }
  .nav-toggle .bars { font-size: 18px; }

  .nav-menu { display: none; flex-wrap: wrap; }
  .nav-menu.open { display: flex; }

  /* linkurile simple (Acasă, Articole, Blog, Curiozități, Recomandări, Ghid, Post, Tratament) — pe un rând */
  .nav-menu > li { flex: 0 0 auto; }
  .nav-menu > li > a { border-top: 1px solid rgba(255,255,255,.12); padding: 13px 16px; }

  /* categoriile cu subcategorii — pe toată lățimea, acordeon la tap */
  .nav-menu > li.has-sub { flex: 0 0 100%; position: static; }
  .nav-menu > li.has-sub > a { display: flex; justify-content: space-between; align-items: center; }
  .submenu {
    position: static; min-width: 0;
    box-shadow: none; border-radius: 0; padding: 0;
    background: rgba(0,0,0,.18);
  }
  .nav-menu > li.has-sub:hover > .submenu { display: none; }
  .nav-menu > li.has-sub.open > .submenu { display: block; }
  .nav-menu > li.has-sub.open > a .caret { transform: rotate(180deg); }
  .submenu a { padding-left: 34px; }
  .nav-menu .caret { transition: transform .15s; }

  /* topbar compact */
  .topbar { font-size: 12px; }
  .topbar .container { justify-content: space-between; gap: 8px; }

  /* produse: 2 coloane */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-thumb { font-size: 42px; }
  .product-name { font-size: 14px; min-height: 40px; }
  .product-price { font-size: 17px; }
  .footer .container { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .topbar .tb-social { display: none; }
  .topbar .tb-phones { gap: 10px; }
  .topbar .tb-phones a:first-child { display: inline; }
  .section-head h2 { font-size: 20px; }
  .section-head .muted { display: none; }
  .product-thumb { font-size: 36px; }
  .add-cart { font-size: 13px; padding: 9px; }
  .pd-price { font-size: 24px; }
  .cart-drawer { width: 100%; max-width: 100%; }
}

/* ===== Cont client (modal autentificare / profil) ===== */
.account-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 22px; }
.account-name { font-size: 13px; font-weight: 700; color: var(--coffee); }
.account-modal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.96);
  width: 420px; max-width: 94vw; max-height: 90vh;
  background: var(--bg); border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.3);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 70;
}
.account-modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.account-body { padding: 18px 20px; overflow-y: auto; }
.account-err { color: #8a3b28; background: #f7e6df; border-radius: 8px; padding: 8px 10px; font-size: 13px; margin: 0 0 12px; }
.account-switch { text-align: center; margin: 14px 0 0; font-size: 14px; }
.account-switch a { color: var(--coffee); font-weight: 700; }
.acc-hello { font-size: 18px; font-weight: 800; color: var(--coffee); margin-bottom: 12px; }
.acc-info { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px; font-size: 14px; display: grid; gap: 6px; margin-bottom: 16px; }
.acc-info span { color: var(--text-soft); font-weight: 600; }
.acc-subhead { margin: 0 0 8px; color: var(--coffee); font-size: 15px; font-weight: 800; }
.acc-cart { margin-bottom: 14px; }
.acc-cart-row { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.acc-cart-row.acc-cart-total { border-bottom: 0; border-top: 2px solid var(--coffee); font-weight: 800; color: var(--coffee); font-size: 16px; margin-top: 4px; padding-top: 10px; }

/* ===== Admin: clienți ===== */
.client-list { display: grid; gap: 16px; }
.client-card { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff; }
.client-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 14px 16px; background: var(--cream); }
.client-name { font-size: 16px; font-weight: 800; color: var(--coffee); margin-bottom: 6px; }
.client-meta { font-size: 13px; color: var(--text-soft); margin-top: 2px; }
.client-meta b { color: var(--coffee); }
.client-head .del { border: 0; background: #f0d9d3; color: #8a3b28; padding: 6px 10px; border-radius: 6px; font-size: 15px; flex: none; }
.client-cart-wrap { padding: 14px 16px; }
.client-cart td { padding: 6px 8px; }
.client-cart-total { text-align: right; font-size: 15px; color: var(--coffee); margin-top: 8px; }

/* ===== Servicii piercing (listă de prețuri) ===== */
.serv-intro { max-width: 720px; margin: -6px 0 22px; font-size: 14px; }
.price-group {
  font-size: 15px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--chai); margin: 26px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.price-group:first-of-type { margin-top: 4px; }
.price-list { display: grid; gap: 12px; }
.price-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px;
  transition: box-shadow .15s;
}
.price-row:hover { box-shadow: var(--shadow); }
.price-info { flex: 1; min-width: 0; }
.price-name { font-weight: 700; color: var(--coffee); font-size: 16px; }
.price-desc { font-size: 13px; color: var(--text-soft); margin-top: 3px; }
.price-value { font-weight: 800; color: var(--coffee); font-size: 18px; white-space: nowrap; }
.price-book { flex: none; padding: 10px 20px; font-size: 14px; }
.serv-cta { text-align: center; margin: 26px 0 6px; }
.serv-cta .btn-whatsapp { display: inline-flex; width: auto; padding: 14px 34px; }

@media (max-width: 600px) {
  .price-row { flex-wrap: wrap; gap: 8px 14px; }
  .price-info { flex: 1 0 100%; }
  .price-book { margin-left: auto; }
}
