/* =====================================================================
   Spuma Activa VICE - Pagina de Contact
   Tema: TikTok-style (dark, pink/cyan accent), fonturi prietenoase 40+
===================================================================== */
:root {
  --bg: #0E0E10;
  --bg-card: #1B1B1F;
  --bg-card-2: #232328;
  --pink: #FE2C55;
  --pink-dark: #D6183F;
  --cyan: #25F4EE;
  --text: #FAFAFA;
  --text-muted: #B9B9C2;
  --yellow: #FFC531;
  --green: #25D366;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --shadow-card: 0 8px 24px rgba(0,0,0,0.35);
}

* { 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 18px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 12px;
}

a { 
  color: inherit; 
  text-decoration: none; 
}

img { 
  max-width: 100%; 
  display: block; 
}

/* ---------------------------------------------------------------------
   HEADER
--------------------------------------------------------------------- */
.site-header {
  background: #000;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #232328;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-trust {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 700;
}

/* Setările de bază pentru Laptop / Desktop */
.site-header .logo {
    width: 200px; 
    max-width: 100%;
    height: auto;
    flex-shrink: 0; 
}

/* Ajustări specifice pentru Telefon */
@media (max-width: 768px) {
    .site-header .logo {
        width: 120px; 
        min-width: 100px; 
    }
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }
}

/* ---------------------------------------------------------------------
   PAGINA CONTACT (Structură & Carduri)
--------------------------------------------------------------------- */
main {
    flex: 1; /* Împinge footer-ul jos dacă ecranul este mare */
    padding: 40px 0;
}

.order-box {
  background: var(--bg-card);
  border: 1px solid #2C2C33;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.hero__title {
  font-size: 30px;
  color: var(--text);
  margin-bottom: 5px;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 16.5px;
  margin: 0 auto 24px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card-2);
    border: 1.5px solid #34343B;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    background: var(--bg-card);
}

/* Accente de culoare pe hover pentru fiecare tip de card */
.contact-card.phone:hover { border-color: var(--cyan); }
.contact-card.whatsapp:hover { border-color: var(--green); }
.contact-card.email:hover { border-color: var(--pink); }

.contact-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-details {
    text-align: left;
}

.contact-label {
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 600;
}

.contact-value {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
}

/* Culori distincte pentru fiecare metodă de contact */
.contact-card.phone .contact-value { color: var(--cyan); }
.contact-card.whatsapp .contact-value { color: var(--green); }
.contact-card.email .contact-value { color: var(--pink); }

/* Responsive - Desktop/Tablete */
@media (min-width: 700px) {
  .hero__title { font-size: 36px; }
  .contact-card { padding: 20px 24px; }
}

/* =====================================================================
   HOMEPAGE / LANDING PAGE — Vice Diamond & Spumă Activă
   Adaugă pe lângă temă existentă (nu suprascrie regulile de mai sus)
===================================================================== */
:root {
  --cyan-dark: #0FBEB8;
  --pink-glow: rgba(254, 44, 85, 0.35);
  --cyan-glow: rgba(37, 244, 238, 0.35);
}

/* Accesibilitate: focus vizibil peste tot */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.container--wide {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ---------------------------------------------------------------------
   HERO
--------------------------------------------------------------------- */
.hero {
  padding: 36px 0 30px;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--yellow);
  background: rgba(255, 197, 49, 0.12);
  border: 1px solid rgba(255, 197, 49, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 12px;
  background: linear-gradient(92deg, var(--text) 40%, var(--cyan) 75%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  color: var(--text-muted);
  font-size: 16.5px;
  max-width: 480px;
  margin: 0 auto 26px;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  margin: 0 auto;
}

@media (min-width: 560px) {
  .hero__ctas { flex-direction: row; max-width: none; justify-content: center; }
}

/* ---------------------------------------------------------------------
   BUTOANE
--------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  padding: 15px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  width: 100%;
}

.btn:hover { filter: brightness(1.07); transform: translateY(-1px); }
.btn:active { transform: translateY(0); filter: brightness(0.97); }

.btn--cyan {
  background: linear-gradient(120deg, var(--cyan), var(--cyan-dark));
  color: #06201F;
  box-shadow: 0 10px 24px var(--cyan-glow);
}

.btn--pink {
  background: linear-gradient(120deg, var(--pink), var(--pink-dark));
  color: #fff;
  box-shadow: 0 10px 24px var(--pink-glow);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid #3A3A42;
  color: var(--text);
}

/* ---------------------------------------------------------------------
   SECȚIUNI PRODUS
--------------------------------------------------------------------- */
.product-section {
  padding: 46px 0;
  scroll-margin-top: 90px;
}

.product-section + .product-section {
  border-top: 1px solid #232328;
}

.badge-rank {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.product-section--diamond .badge-rank {
  background: rgba(37, 244, 238, 0.12);
  border: 1px solid rgba(37, 244, 238, 0.4);
  color: var(--cyan);
}

.product-section--spuma .badge-rank {
  background: rgba(254, 44, 85, 0.12);
  border: 1px solid rgba(254, 44, 85, 0.4);
  color: var(--pink);
}

.product-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 760px) {
  .product-grid { grid-template-columns: 0.85fr 1.15fr; gap: 40px; }
  .product-section--spuma .product-grid { direction: rtl; }
  .product-section--spuma .product-grid > * { direction: ltr; }
}

/* Vizual decorativ (fără poze lipsă — folosim aceleași iconițe emoji ca-n restul site-ului) */
.product-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-section--diamond .product-visual {
  background: radial-gradient(circle at 30% 25%, rgba(37,244,238,0.28), transparent 60%), var(--bg-card);
  border: 1.5px solid rgba(37,244,238,0.3);
}

.product-section--spuma .product-visual {
  background: radial-gradient(circle at 30% 25%, rgba(254,44,85,0.28), transparent 60%), var(--bg-card);
  border: 1.5px solid rgba(254,44,85,0.3);
}

.product-visual__img {
  max-width: 76%;
  max-height: 76%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,0.45));
  animation: floatY 3.6s ease-in-out infinite;
}

.product-visual__accent {
  position: absolute;
  font-size: 26px;
  opacity: 0.85;
  animation: floatY 4.2s ease-in-out infinite;
}
.product-visual__accent:nth-child(2) { top: 18%; left: 14%; animation-delay: 0.3s; }
.product-visual__accent:nth-child(3) { bottom: 16%; right: 12%; animation-delay: 0.9s; font-size: 20px; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.product-info h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.product-tag {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 18px;
}

/* Preț */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.price-old {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 17px;
}

.price-new {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
}

.product-section--diamond .price-new { color: var(--cyan); }
.product-section--spuma .price-new { color: var(--pink); }

.price-save {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  color: #06201F;
  background: var(--yellow);
  padding: 3px 9px;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* Urgență: countdown + stoc */
.urgency {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  background: var(--bg-card-2);
  border: 1px dashed #3A3A42;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 14.5px;
  font-weight: 700;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
}

.countdown__time {
  font-family: var(--font-display);
  background: #000;
  border-radius: 6px;
  padding: 3px 8px;
  letter-spacing: 0.03em;
  animation: pulseSoft 1.6s ease-in-out infinite;
}

@keyframes pulseSoft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.product-description {
  color: var(--text-muted);
  margin: 26px 0;
  font-size: 16px;
}

/* Grid caracteristici */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

@media (min-width: 560px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

.feature-card {
  background: var(--bg-card-2);
  border: 1px solid #2C2C33;
  border-radius: var(--radius-sm);
  padding: 18px;
}

.feature-card__icon {
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0;
}

/* CTA secundar (bloc repetat sub caracteristici) */
.cta-block {
  background: var(--bg-card);
  border: 1px solid #2C2C33;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  margin-bottom: 36px;
}

.cta-block .price-row { justify-content: center; }
.cta-block .urgency { justify-content: center; }

/* ---------------------------------------------------------------------
   FAQ (folosind <details>/<summary> — accesibil, fără JS)
--------------------------------------------------------------------- */
.faq h2 { font-size: 22px; margin-bottom: 16px; }

.faq-item {
  background: var(--bg-card-2);
  border: 1px solid #2C2C33;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 18px;
  font-weight: 700;
  font-size: 15.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding: 0 18px 16px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ---------------------------------------------------------------------
   DIVIDER între produse
--------------------------------------------------------------------- */
.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #2C2C33;
}

/* ---------------------------------------------------------------------
   STICKY CTA (mobil + desktop, bară fixă jos)
--------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: rgba(14,14,16,0.92);
  backdrop-filter: blur(6px);
  border-top: 1px solid #2C2C33;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta__info { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-cta__name { font-size: 12.5px; color: var(--text-muted); font-weight: 700; }
.sticky-cta__price { font-family: var(--font-display); font-size: 19px; font-weight: 800; }

.sticky-cta .btn { width: auto; padding: 12px 20px; font-size: 14.5px; }

/* ---------------------------------------------------------------------
   TOAST notificare comandă recentă
--------------------------------------------------------------------- */
.toast {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid #2C2C33;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-card);
  max-width: 280px;
  font-size: 13.5px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.toast.is-visible { transform: translateY(0); opacity: 1; }
.toast__icon { font-size: 20px; }
.toast__text b { color: var(--text); }
.toast__text span { display: block; color: var(--text-muted); font-size: 12px; margin-top: 2px; }

@media (max-width: 700px) {
  .toast { bottom: 78px; }
}

/* ---------------------------------------------------------------------
   FOOTER
--------------------------------------------------------------------- */
.site-footer {
  background: #000;
  border-top: 1px solid #232328;
  padding: 30px 0 100px;
  margin-top: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
  font-size: 12.5px;
  color: #6E6E76;
  line-height: 1.6;
}

@media (min-width: 700px) {
  .site-footer { padding-bottom: 30px; }
}