/* =============================================================================
   css/style.css — Zeus Amanet Oradea
   Extras complet din _1.html + stiluri noi pentru hero split 2 coloane
   si slider hero cu progress bar auriu
   Fonturi: Cinzel + Raleway (incarcate din index.html)
   Tema: auriu #c5a059 pe fundal crem #f5f0ea
   ============================================================================= */

/* -----------------------------------------------------------------------
   VARIABILE CSS
   ----------------------------------------------------------------------- */
:root {
  --gold:       #c5a059;
  --gold-light: #e2c28d;
  --gold-dark:  #a07a3a;
  --bg:         #f5f0ea;
  --bg2:        #ede5d8;
  --bg3:        #e4d9c8;
  --bg4:        #d9ccba;
  --text:       #1a1a1a;
  --text-muted: #7a6a55;
  --border:     rgba(197,160,89,0.3);
  --white:      #ffffff;
  --black:      #0a0a0a;
}

/* -----------------------------------------------------------------------
   RESET & BASE
   ----------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
}

/* -----------------------------------------------------------------------
   PATTERN GRECESC (background decorativ)
   ----------------------------------------------------------------------- */
.greek-pattern {
  background-image: 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 stroke='%23C9A84C' stroke-width='0.3' opacity='0.15'%3E%3Cpath d='M0 0h10v10H0zm10 0h10v10H10zM0 10h10v10H0zm20 0h10v10H20zM10 20h10v10H10zm20 0h10v10H30zM0 30h10v10H0zm20 30h10v10H20zM30 10h10v10H30zM40 0h10v10H40zM50 10h10v10H50zM40 20h10v10H40zM50 30h10v10H50zM40 40h10v10H40zM50 50h10v10H50z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* -----------------------------------------------------------------------
   NAVBAR
   ----------------------------------------------------------------------- */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  flex-direction: column;
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}

.nav-logo img {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 36px; list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* -----------------------------------------------------------------------
   HERO — SPLIT 2 COLOANE (nou)
   Stanga: continut text existent
   Dreapta: slider nou cu produse din /api/featured
   ----------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 5%;
}

/* Layout 2 coloane pentru hero */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
              radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

.hero-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-badge span {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: 2px;
}

.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero-divider {
  width: 80px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 24px 0;
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 48px; margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* -----------------------------------------------------------------------
   HERO SLIDER (coloana dreapta) — NOU
   Auto-play 4.5s, progress bar auriu, dots + sageti, swipe mobil
   ----------------------------------------------------------------------- */
.hero-slider-wrap {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg2);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Fiecare slide din hero slider */
.hero-slide {
  min-width: 100%;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 340px;
  position: relative;
  background: var(--bg2);
}

.hero-slide-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.62rem;
  letter-spacing: 2px;
  padding: 4px 12px;
  text-transform: uppercase;
  width: fit-content;
}

.hero-slide-icon {
  font-size: 3.5rem;
  line-height: 1;
}

.hero-slide-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.hero-slide-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-slide-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
}

.hero-slide-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-slide-price {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: auto;
}

.hero-slide-cta {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

.hero-slide-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Progress bar auriu — se umple in 4.5s */
.hero-slider-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  transition: none;
  z-index: 10;
}

.hero-slider-progress.animating {
  transition: width 4.5s linear;
  width: 100%;
}

/* Sageti navigare */
.hero-slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.hero-slider-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.hero-slider-btn.prev { left: 10px; }
.hero-slider-btn.next { right: 10px; }

/* Dots navigare */
.hero-slider-dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 10;
}

.hero-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(197,160,89,0.3);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* -----------------------------------------------------------------------
   BUTOANE COMUNE
   ----------------------------------------------------------------------- */
.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 14px 36px;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 36px;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
}

.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}

/* -----------------------------------------------------------------------
   SECTIUNI COMUNE
   ----------------------------------------------------------------------- */
section { padding: 100px 5%; }

.section-label {
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 500px;
  font-weight: 300;
}

.section-header { margin-bottom: 60px; }

/* -----------------------------------------------------------------------
   SERVICII
   ----------------------------------------------------------------------- */
.services { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg3);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  border-top: 2px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--bg4); transform: translateY(-4px); }

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 24px;
  display: block;
}

.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 300;
}

/* -----------------------------------------------------------------------
   CATEGORII
   ----------------------------------------------------------------------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.cat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
}

.cat-card:hover::after { opacity: 1; }

.cat-icon { font-size: 2rem; margin-bottom: 16px; display: block; }

.cat-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  color: var(--text);
}

/* -----------------------------------------------------------------------
   TRUST / STATISTICI
   ----------------------------------------------------------------------- */
.trust {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 5%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  text-align: center;
}

.trust-item {
  padding: 48px 32px;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}

.trust-num {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.trust-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* -----------------------------------------------------------------------
   LOCATIE
   ----------------------------------------------------------------------- */
.location { background: var(--bg); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.location-info { display: flex; flex-direction: column; gap: 32px; }

.location-item {
  display: flex; gap: 20px; align-items: flex-start;
}

.location-item-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold);
}

.location-item h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.location-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

.map-container {
  border: 1px solid var(--border);
  overflow: hidden;
  height: 400px;
}

.map-container iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(80%) invert(90%) contrast(80%);
}

/* -----------------------------------------------------------------------
   CONTACT
   ----------------------------------------------------------------------- */
.contact { background: var(--bg2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

.contact-info { display: flex; flex-direction: column; gap: 36px; }

.contact-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}

.phone-big {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 2px;
}

/* -----------------------------------------------------------------------
   FOOTER
   ----------------------------------------------------------------------- */
footer {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 60px 5% 32px;
}

.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 3px;
}

.footer-links {
  display: flex; gap: 32px; list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.footer-copy span { color: var(--gold); }

.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* -----------------------------------------------------------------------
   GOLD DIVIDER
   ----------------------------------------------------------------------- */
.gold-divider {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}

/* -----------------------------------------------------------------------
   FILTER TABS (produse)
   ----------------------------------------------------------------------- */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 40px 0 48px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  font-weight: 600;
}

/* -----------------------------------------------------------------------
   GRID PRODUSE
   ----------------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.35s;
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.12);
}

.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.product-img {
  background: var(--bg3);
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.product-info { padding: 20px; }

.product-cat {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 16px;
}

.product-footer {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.product-price {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.product-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 6px 14px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.product-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.product-card.hidden { display: none; }

/* -----------------------------------------------------------------------
   OFERTE (card rosu)
   ----------------------------------------------------------------------- */
.product-card.offer-card {
  border-color: rgba(233,69,96,0.3);
}

.product-card.offer-card:hover {
  border-color: #e94560;
  box-shadow: 0 16px 40px rgba(233,69,96,0.12);
}

.offer-old-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 8px;
}

.offer-badge-red { background: #e94560 !important; }

.filter-btn[data-filter="oferte"].active {
  background: #e94560 !important;
  border-color: #e94560 !important;
  color: white !important;
}

/* -----------------------------------------------------------------------
   MODAL PRODUS
   ----------------------------------------------------------------------- */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  width: 100%; max-width: 700px;
  position: relative;
  animation: fadeUp 0.3s ease forwards;
}

.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); width: 36px; height: 36px;
  cursor: pointer; font-size: 1.1rem; transition: all 0.3s; z-index: 10;
}

.modal-close:hover { border-color: var(--gold); color: var(--gold); }

.modal-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-img {
  background: var(--bg3);
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  border-right: 1px solid var(--border);
  overflow: hidden;
}

.modal-img img { width: 100%; height: 100%; object-fit: cover; }

.modal-info {
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
}

.modal-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  text-transform: uppercase;
  width: fit-content;
}

.modal-cat {
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.modal-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  font-weight: 300;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.modal-price {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}

.modal-call {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 14px;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  width: 100%;
  margin-top: auto;
}

.modal-call:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

/* -----------------------------------------------------------------------
   DRAG & DROP ZONE (upload imagini admin)
   ----------------------------------------------------------------------- */
.drop-preview-wrapper {
  position: relative;
  display: none;
  width: 100%;
  margin-top: 12px;
}

.drop-preview-wrapper.visible { display: block; }

.drop-preview-x {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: rgba(233,69,96,0.9);
  border: none;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.2s;
}

.drop-preview-x:hover { background: #e94560; }

/* -----------------------------------------------------------------------
   SLIDER SECTIUNE (vechiul slider din body — pastrat pentru compatibilitate)
   ----------------------------------------------------------------------- */
.slider-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.slider-slide-img {
  width: 50%;
  height: 420px;
  object-fit: cover;
  flex-shrink: 0;
}

.slider-slide-img-placeholder {
  width: 50%;
  height: 420px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  flex-shrink: 0;
}

.slider-slide-info {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slider-slide-label {
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.slider-slide-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}

.slider-slide-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
}

.slider-slide-price {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

/* -----------------------------------------------------------------------
   FEATURED BOXES
   ----------------------------------------------------------------------- */
.featured-box {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s, transform 0.3s;
}

.featured-box:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.featured-box-icon { font-size: 2rem; }

.featured-box-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
}

.featured-box-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 300;
}

.featured-box-price {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 4px;
}

.featured-box-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.62rem;
  letter-spacing: 2px;
  padding: 3px 10px;
  text-transform: uppercase;
  width: fit-content;
}

/* -----------------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
   ----------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------------------------------------
   WHATSAPP FLOATING BUTTON
   ----------------------------------------------------------------------- */
@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%  { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
}

#whatsappBtn { display: flex !important; }

/* -----------------------------------------------------------------------
   ADMIN OVERLAY (pastrat pentru compatibilitate cu index.html)
   ----------------------------------------------------------------------- */
.admin-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}

.admin-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
}

.admin-panel {
  background: var(--bg2);
  border: 1px solid var(--border);
  width: 100%; max-width: 860px;
  position: relative;
}

.admin-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  display: flex; justify-content: space-between; align-items: center;
}

.admin-header h2 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.admin-close {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); width: 36px; height: 36px;
  cursor: pointer; font-size: 1.1rem; transition: all 0.3s;
}

.admin-close:hover { border-color: var(--gold); color: var(--gold); }

.admin-body { padding: 32px; }

.admin-login { text-align: center; padding: 20px 0; }
.admin-login p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.9rem; }
.admin-login input {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); padding: 12px 20px; width: 100%; max-width: 300px;
  font-family: 'Raleway', sans-serif; font-size: 0.9rem; outline: none;
  display: block; margin: 0 auto 12px; text-align: center;
  letter-spacing: 2px;
}
.admin-login input:focus { border-color: var(--gold); }
.login-error { color: #e94560; font-size: 0.8rem; margin-top: 8px; display: none; }

.admin-tabs { display: flex; gap: 2px; margin-bottom: 32px; }
.admin-tab {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text-muted); padding: 10px 24px;
  font-family: 'Raleway', sans-serif; font-size: 0.78rem;
  letter-spacing: 1.5px; cursor: pointer; transition: all 0.3s;
}
.admin-tab.active {
  background: var(--gold); border-color: var(--gold);
  color: var(--bg); font-weight: 600;
}

.admin-section { display: none; }
.admin-section.active { display: block !important; }

.admin-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form .full { grid-column: 1 / -1; }

.admin-field { display: flex; flex-direction: column; gap: 6px; }
.admin-field label {
  font-size: 0.68rem; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
}
.admin-field input, .admin-field select, .admin-field textarea {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); padding: 11px 14px;
  font-family: 'Raleway', sans-serif; font-size: 0.88rem; outline: none;
  transition: border-color 0.3s;
}
.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus { border-color: var(--gold); }
.admin-field select option { background: var(--bg3); }

.drop-zone {
  border: 2px dashed var(--border);
  padding: 36px 20px; text-align: center;
  cursor: pointer; transition: all 0.3s;
  position: relative;
}
.drop-zone:hover, .drop-zone.dragover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.drop-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.drop-zone-icon { font-size: 2rem; margin-bottom: 10px; }
.drop-zone p { color: var(--text-muted); font-size: 0.82rem; }
.drop-zone span { color: var(--gold); }
.drop-preview { width: 100%; max-height: 160px; object-fit: contain; margin-top: 12px; display: none; }

.admin-product-list { display: flex; flex-direction: column; gap: 12px; }
.admin-product-item {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 16px 20px; display: flex; align-items: center; gap: 16px;
  transition: border-color 0.3s;
}
.admin-product-item:hover { border-color: rgba(197,160,89,0.5); }
.admin-product-thumb {
  width: 52px; height: 52px; background: var(--bg4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0; overflow: hidden;
}
.admin-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-product-details { flex: 1; }
.admin-product-details h4 {
  font-family: 'Cinzel', serif; font-size: 0.88rem;
  color: var(--text); margin-bottom: 4px;
}
.admin-product-details span { font-size: 0.75rem; color: var(--text-muted); }
.admin-product-price {
  font-family: 'Cinzel', serif; color: var(--gold);
  font-size: 0.95rem; font-weight: 700; margin-right: 16px;
}
.admin-product-actions { display: flex; gap: 8px; }

.btn-edit, .btn-del {
  padding: 6px 14px; font-size: 0.72rem; letter-spacing: 1px;
  cursor: pointer; font-family: 'Raleway', sans-serif; transition: all 0.3s;
}
.btn-edit { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.btn-edit:hover { border-color: var(--gold); color: var(--gold); }
.btn-del { background: transparent; border: 1px solid rgba(233,69,96,0.3); color: rgba(233,69,96,0.7); }
.btn-del:hover { border-color: #e94560; color: #e94560; }

.admin-success {
  background: rgba(201,168,76,0.1); border: 1px solid var(--gold);
  color: var(--gold); padding: 12px 20px; font-size: 0.85rem;
  text-align: center; margin-bottom: 20px; display: none;
}

.empty-state {
  text-align: center; padding: 40px;
  color: var(--text-muted); font-size: 0.9rem;
}

/* -----------------------------------------------------------------------
   HAMBURGER & MOBILE MENU
   ----------------------------------------------------------------------- */
.hamburger { display: none; }
.mobile-menu { display: none; }

/* -----------------------------------------------------------------------
   RESPONSIVE — MOBILE (max 768px)
   ----------------------------------------------------------------------- */
@media (max-width: 768px) {

  nav { padding: 0 4%; height: 64px; }
  .nav-links { display: none; }
  .nav-logo span { font-size: 0.85rem; }
  .nav-logo img { width: 36px; height: 36px; }
  .nav-cta { padding: 8px 14px; font-size: 0.7rem; letter-spacing: 1px; }

  /* Hamburger vizibil pe mobil */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-right: 8px;
  }
  .hamburger span {
    width: 22px; height: 2px;
    background: var(--gold);
    transition: all 0.3s;
  }

  /* Mobile menu */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(245,240,234,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 20px 0;
    flex-direction: column;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--text);
    text-decoration: none;
    padding: 14px 24px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--gold); }

  /* Hero — coloana unica pe mobil */
  .hero {
    padding: 100px 5% 60px;
    text-align: center;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  /* Slider hero — sub text pe mobil */
  .hero-slider-wrap {
    order: -1; /* apare deasupra textului pe mobil */
  }

  .hero-badge { margin: 0 auto 20px; }
  .hero-content { max-width: 100%; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem) !important; }

  .hero-content > div {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }

  .hero-content > div img {
    width: 110px !important;
    height: 110px !important;
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-num { font-size: 1.6rem; }

  section { padding: 60px 5%; }
  .section-title { font-size: 1.6rem; }

  .services-grid   { grid-template-columns: 1fr !important; gap: 16px; }
  .products-grid   { grid-template-columns: 1fr !important; gap: 16px; }
  .trust-grid      { grid-template-columns: 1fr !important; gap: 20px; }
  .location-grid   { grid-template-columns: 1fr !important; gap: 32px; }
  .contact-grid    { grid-template-columns: 1fr !important; gap: 32px; }
  #featuredBoxes   { grid-template-columns: 1fr !important; }

  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .product-img { height: 200px; font-size: 4rem; }

  /* Modal */
  .modal-body { grid-template-columns: 1fr !important; }
  .modal-img {
    height: 220px;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
  .modal-info { padding: 20px; }
  .modal-name { font-size: 1.1rem; }
  .modal-price { font-size: 1.6rem; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  /* Admin */
  .admin-form { grid-template-columns: 1fr !important; }
  .admin-form .full { grid-column: 1 !important; }
  .admin-panel { margin: 10px; }
  .admin-tabs { flex-wrap: wrap; gap: 4px; }
  .admin-tab { font-size: 0.68rem; padding: 8px 12px; }

  div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem !important; }
  .section-title { font-size: 1.4rem; }
  .modal-box { margin: 10px; }
}
