/* Add styles here */
:root {
      --bg-page: #F7FCFA;
      --bg-card: #FFFFFF;
      --accent: #35A58A;       /* verde calm / teal */
      --accent-soft: #E1F4EE;  /* verde foarte deschis */
      --text-main: #1F2933;
      --text-muted: #6C7A86;
      --border-soft: #C9E6DB;
      --shadow-soft: 0 8px 20px rgba(0,0,0,0.05);
      --radius-card: 16px;
      --radius-pill: 999px;
    }

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

    body {
      padding-top: 50px; /* ajustezi în funcție de înălțimea headerului real */
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top left, #E4F5EE 0, #F7FCFA 45%, #FFFFFF 100%);
      color: var(--text-main);
      line-height: 1.6;
    }

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

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

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    header {
      position: fixed !important;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      backdrop-filter: blur(10px);
      background: linear-gradient(135deg, #D4F4E5, #C2EDD9);
      border-bottom: 1px solid rgba(255,255,255,0.7);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 0;
      gap: 1rem;
    }

    .logo-wrap {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    .logo {
      font-weight: 800;
      font-size: 1.2rem;
      letter-spacing: 0.03em;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .logo-badge {
      width: 26px;
      height: 26px;
      border-radius: 8px;
      background: linear-gradient(135deg, #35A58A, #7FD0B6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.9rem;
      box-shadow: 0 4px 10px rgba(53,165,138,0.4);
    }

    .logo span.highlight {
      color: var(--accent);
    }

    .tagline {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .nav-links {
      display: flex;
      gap: 0.75rem;
      font-size: 0.9rem;
    }

    .nav-links a {
      padding: 0.3rem 0.6rem;
      border-radius: 999px;
      color: var(--text-muted);
      transition: background 0.2s, color 0.2s;
    }

    .nav-links a:hover {
      background: var(--accent-soft);
      color: var(--text-main);
    }

    .search-mock {
      max-width: 240px;   /* modifici valoarea cum vrei */
      width: 100%;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.75rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(53,165,138,0.35);
      background: rgba(255,255,255,0.95);
      font-size: 0.8rem;
      color: var(--text-muted);
      cursor: default;
    }

    .search-mock input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent;
    font-size: 0.85rem;
    color: var(--text-main);

    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    box-shadow: none !important;
}

.search-mock input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}


    .search-mock span.icon {
      font-size: 0.8rem;
    }

    main {
      padding: 1.5rem 0 3.5rem;
    }

    .hero {
      padding-bottom: 0rem;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
      gap: 2rem;
      align-items: center;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.15rem 0.75rem;
      border-radius: var(--radius-pill);
      background: rgba(225,244,238,0.9);
      color: var(--accent);
      font-size: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .hero-eyebrow span.dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }

    .hero-title {
      font-size: 1.7rem;   /* înainte probabil era 2.4–2.8rem */
      line-height: 1.25;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 1rem;
        line-height: 1.3;
      }
    }
  

    .hero.hero-craciun .hero-title {
      font-size: 2rem;
      line-height: 1.1;
      font-weight: 700;
    }

    @media (max-width: 768px) {
      .hero.hero-craciun .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
      }
    }

    /* Reduce spațiul dintre header și breadcrumbs doar pe mobil */
    @media (max-width: 768px) {
        .hero {
    padding-top: 1px !important;  /* înainte probabil ai 40–60px */
              }
          }

    
    .hero-craciun .hero-description {
      margin-bottom: 20px; /* distanță mai mare între paragraf și meta-items */
    }
    
    .hero-craciun .hero-meta {
      justify-content: flex-start; /* le aliniază exact la stânga */
    }
    
    .hero-craciun .hero-meta-item {
      margin: 0; /* elimină orice offset ciudat */
    }
    

    .hero-title span {
      color: var(--accent);
    }

    .hero-text {
      font-size: 0.98rem;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.55rem 1.2rem;
      border-radius: var(--radius-pill);
      border: none;
      font-size: 0.9rem;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #35A58A, #7FD0B6);
      color: #fff;
      box-shadow: 0 8px 20px rgba(53,165,138,0.45);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(53,165,138,0.55);
    }

    .btn-secondary {
      background: #fff;
      color: var(--accent);
      border: 1px solid var(--accent-soft);
    }

    .btn-secondary:hover {
      background: var(--accent-soft);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 2px; /* reducere spațiu sub jumplink-uri */
    }

    .hero-description {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 950px;
      margin-top: 1rem;
      line-height: 1.65;
    }


    .hero-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.25rem 0.6rem;
      border-radius: var(--radius-pill);
      background: rgba(255,255,255,0.9);
      border: 1px dashed var(--border-soft);
    }

    .hero-illustration {
      position: relative;
      padding: 1.5rem;
    }

    .hero-bubble {
      background: rgba(255,255,255,0.96);
      border-radius: 24px;
      padding: 1.2rem;
      box-shadow: var(--shadow-soft);
      margin-bottom: 0.85rem;
      font-size: 0.9rem;
    }

    .hero-bubble small {
      display: block;
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 0.35rem;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .hero-badge {
      padding: 0.25rem 0.7rem;
      border-radius: var(--radius-pill);
      background: var(--accent-soft);
      font-size: 0.75rem;
      color: var(--text-main);
    }

    .hero-float {
      position: absolute;
      bottom: 0;
      right: 0.8rem;
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      gap: 0.5rem;
    }

    .hero-float-card {
      background: rgba(255,255,255,0.98);
      border-radius: 16px;
      padding: 0.6rem 0.9rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.78rem;
      color: var(--text-muted);
      max-width: 220px;
    }

    .hero-float-card strong {
      color: var(--accent);
    }



    .section {
      padding: 2rem 0;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: flex-end;
      margin-bottom: 1.25rem;
    }

    h2 {
      line-height: 1.2;
    }
    

    .section-title {
      font-size: 1.4rem;
      line-height: 1.2;
      margin-bottom: 0.25rem;
    }

    @media (max-width: 768px) {
      .section-title {
        line-height: 0.5;
        font-size: 1.3rem;
      }
    }

    .section-subtitle {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 420px;
    }

    .section-link {
      font-size: 0.85rem;
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.3rem 0.75rem;
      border-radius: var(--radius-pill);
      background: rgba(225,244,238,0.9);
      white-space: nowrap;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .section-mesaje-craciun {
      padding: 0px 0 20px;
      padding-top: 0px;
    }


    /* Mobile spacing fix */
      @media (max-width: 480px) {
      .section-mesaje-craciun .section-title {
      margin-bottom: 2px !important; /* înainte probabil 24px+ */
        }
      }
    
    
    .message-card {
      background: #ffffff;
      border-radius: 14px;
      padding: 12px 16px !important; /* padding redus */
      box-shadow: 0 4px 14px rgba(0,0,0,0.06);
      border: 1px solid #e8e8e8;
      position: relative;
      max-width: 750px;
      margin-top: 25px;
    }

    .messages-grid {
      display: grid;
      grid-template-columns: 1fr; /* mobil */
      gap: 6px; /* distanța între carduri */
    }
    
    /* Desktop */
    @media (min-width: 768px) {
      .messages-grid {
        grid-template-columns: 1fr 1fr; /* două coloane */
        gap: 14px;
      }
    } 


    .message-card-footer {
      display: flex;
      justify-content: space-between; /* Copiază la stânga, Trimite pe la dreapta */
      align-items: center;
      margin-top: 6px; /* sau cât ai stabilit */
    }
    
    .message-text {
      font-size: 1.15rem;
      line-height: 1.65;
      color: #3A3A3A;
      margin: 0;
      margin-bottom: 10px !important;
    }

    .message-buttons {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 12px;
    }
    
    .copy-btn {
      transition: background-color 0.2s ease, color 0.2s ease;
      background: #35A58A;
      color: #fff;
      border: none;
      padding: 8px 14px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 0.9rem;
    }

    .copy-btn.copied,
    .copy-btn.copied:active {
  background-color: #d5d5d5 !important;  /* gri constant */
  color: #222 !important;
  border-color: #ccc !important;
}

    
    
    
    .copy-btn:hover {
      background: #2d947a;
    }
    
    .send-label {
      font-size: 0.9rem;
      color: #555;
      margin-left: 6px;
    }
    
    .social-btn {
      background: none;
      border: none;
      padding: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
    }
    
    .social-btn img {
      width: 22px;
      height: 22px;
      display: block;
      filter: brightness(0.95);
      transition: 0.2s ease;
    }
    
    .social-btn:hover img {
      transform: scale(1.07);
      filter: brightness(1.1);
    }
    
    .wa-btn img {
      /* opțional: poți recolora iconurile cu filter */
    }
    
    .ms-btn img {
      /* idem */
    }

    .share-icons {
      display: flex;
      align-items: center;
      gap: 2px;
      margin-left: auto; /* împinge în dreapta */
    }

    .share-icons .icon-link {
      display: inline-flex !important; /* aliniere perfectă */
      align-items: center;
    }

    .share-label {
      font-size: 0.9rem;   /* înainte probabil era 0.75 sau 0.8 */
      font-weight: 600;    /* puțin mai clar / lizibil */
      margin-right: 6px;   /* spațiu mai frumos înainte de iconițe */
      color: #555;
    }
    
    .icon-link {
      display: inline-flex;
      align-items: center;
    }

    .social-icon {
      width: 120px;
      height: 120px;
      margin-left: 5px;
      margin-right: 5px;
      display: block;
      cursor: pointer;
    }
    
    .social-icon:hover {
      opacity: 0.7;
    }

    
    /* Mobiles — totul rămâne bine aliniat */
    @media (max-width: 480px) {
      .message-card-footer {
        flex-wrap: wrap;
        gap: 10px;
      }
    
      .share-icons {
        margin-left: auto; /* împinge iconițele în dreapta */
      }
    }

    .share-icons img.social-icon {
      display: block;       /* elimină spații nedorite */
      width: 28px;
      height: 28px;
    }
    
    .share-icons img.social-icon:hover {
      opacity: 0.7;
    }
    
    .subcat-preview {
      margin-top: 20px;
      padding-bottom: 40px; /* ajustează cum vrei: 40px, 60px, 80px */
        }
        
        .subcat-title {
          font-size: 1.3rem;
          font-weight: 700;
          padding-left: 14px;
          border-left: 4px solid #35A58A;
          margin-bottom: 25px;
          color: #222;
        }   

    .subcat-preview .subcat-title {
      margin-top: 1px !important; /* înainte probabil era 60–80px */
      margin-bottom: 5px;  /* înainte probabil era 25px sau mai mare */
    }
    
    .subcat-preview .messages-grid {
      margin-top: 0 !important;
    }

    
    
    .btn-see-more {
      display: inline-block;
      padding: 5px 10px;
      background: #ffffff;
      border: 2px solid #35A58A;
      color: #2c816d;
      border-radius: 10px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    
    .btn-see-more:hover {
      background: #e8f7f3; /* verde pal */
      border-color: #2c816d;
    }

    .see-more-wrapper {
      margin-top: 20px;
      text-align: right;
    }
    
    .see-more-link {
      font-weight: 600;
      color: #35A58A;
      text-decoration: none;
    }
    
    .see-more-link:hover {
      text-decoration: underline;
    }

    @media (max-width: 960px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-illustration {
        order: -1;
      }
      .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .header-inner {
        flex-direction: row;
        align-items: center;
      }
      nav {
        width: auto;
        justify-content: flex-end;
      }
      .nav-links {
        display: none;
      }
      .hero {
        padding-top: 1.5rem;
      }
      .hero-inner {
        gap: 1.25rem;
      }
      .categories-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .category-card {
      position: relative;
      background: var(--bg-card);
      border-radius: var(--radius-card);
      padding: 1rem 1rem 1.1rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(255,255,255,0.9);
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
      cursor: pointer;
      overflow: hidden;
    }

    .category-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(225,244,238,0.9), transparent 60%);
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none;
    }

    .category-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(0,0,0,0.08);
      border-color: var(--accent-soft);
    }

    .category-card:hover::before {
      opacity: 1;
    }

    .category-link {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      height: 100%;
    }

    .category-top {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .icon-pill {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .icon-pill svg {
      width: 22px;
      height: 22px;
      stroke: var(--accent);
    }

    .category-title {
      font-size: 0.98rem;
      font-weight: 600;
    }

    .category-btn {
      background-color: #35A58A; /* verde-ul identitar al site-ului */
      color: #fff;
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 0.8rem;
      border: none;
      cursor: pointer;
      font-weight: 600;
      transition: background-color 0.2s ease, transform 0.15s ease;
      display: inline-block;
    }
    
    .category-btn:hover {
      background-color: #2d8f76; /* puțin mai închis */
      transform: translateY(-2px);
    }
    
    .category-btn:active {
      transform: translateY(0);
    }

    .category-badge {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .category-description {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .category-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      font-size: 0.8rem;
      color: var(--accent);
    }

    .category-footer span.cta {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .category-footer span.count {
      color: var(--text-muted);
      font-size: 0.78rem;
    }

    .popular-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem;
    }

    @media (max-width: 640px) {
      .popular-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .popular-card {
      background: rgba(255,255,255,0.95);
      border-radius: 12px;
      padding: 0.7rem 0.9rem;
      border: 1px solid rgba(201,230,219,0.95);
      font-size: 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .popular-card a {
      color: var(--accent);
      font-weight: 500;
    }

    .popular-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.6rem;
    }

    .about {
      background: rgba(255,255,255,0.96);
      border-radius: 18px;
      padding: 1.5rem 1.3rem;
      border: 1px solid rgba(201,230,219,0.95);
      box-shadow: var(--shadow-soft);
      margin-top: 0.5rem;
    }

    .about h2 {
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }

    .about p {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin-bottom: 0.7rem;
    }

    .about strong {
      color: var(--text-main);
    }

    footer {
      border-top: 1px solid rgba(255,255,255,0.9);
      background: rgba(247,252,250,0.96);
      padding: 1.5rem 0 2rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: space-between;
      align-items: flex-start;
    }

    .footer-logo {
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.5rem;
    }

    .footer-links a {
      color: var(--text-muted);
      font-size: 0.82rem;
    }

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

    .footer-copy {
      margin-top: 0.75rem;
      font-size: 0.78rem;
    }


    /* --- BURGER BUTTON --- */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--text-main);
  display: block;
  transition: 0.25s ease;
}

.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* --- OVERLAY MENU --- */
.nav-overlay {
  position: fixed;
  top: 60px;
  left: 0; 
  right: 0;
  background: white;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-radius: 0 0 12px 12px;
  z-index: 99;
  transform: translateY(-150%);
  transition: transform 0.35s ease;
}

.nav-overlay.nav-hidden {
  transform: translateY(-150%);
}

.nav-overlay:not(.nav-hidden) {
  transform: translateY(0);
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

/* --- MOBILE LINKS MODERN --- */
.nav-links-mobile a {
  font-size: 1.05rem;
  padding: 0.5rem 0;
  display: block;
  color: var(--text-main);
  border-bottom: 1px solid var(--accent-soft);
}

/* --- MOBILE SEARCH --- */
.nav-search-mobile {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
}

.nav-search-mobile input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.95rem;
  width: 100%;
}

.nav-search-mobile .icon {
  opacity: 0.6;
}

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

  .desktop-only {
    display: none;
  }

  .burger {
    display: flex;
  }
}
/* Desktop nav container */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Bara de căutare desktop trebuie ascunsă pe mobil */
.search-desktop {
  display: flex;
}

@media (max-width: 768px) {
  .search-desktop {
    display: none;
  }
}

.messages-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.message-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}

.message-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.message-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* SECȚIUNE DESPRE CRĂCIUN - stil similar cu about-clean de pe homepage */
.craciun-about {
  margin-top: 20px;
  margin-bottom: 5px;
}

.craciun-about .container {
  max-width: 1200px; /* sau cât folosește site-ul tău */
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Ajustăm wrapperul ca să nu limiteze lățimea */
.craciun-about .about-clean-wrapper {
  max-width: none !important;
  width: 100% !important;
}

.craciun-about .about-clean-content {
  max-width: none !important;
  width: 100% !important;
}

/* Ajustăm secțiunea să se comporte ca celelalte */
.craciun-about.section {
  padding-top: 1px !important; /* înainte probabil era 60–80px */
}

.craciun-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #333;
}

/* GRID CU CARDURI */
.craciun-editorial-cards {
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .craciun-editorial-cards {
    grid-template-columns: 1fr;
  }
}

/* CARD EDITORIAL */
.craciun-card {
  background: #ffffff;
  border: 1px solid #e9f5f1;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease;
}

.craciun-card:hover {
  transform: translateY(-2px);
}

.craciun-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #2c7a68;
  font-size: 1.25rem;
}

.craciun-card p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
}

/* Elimină orice highlight verde la hover pentru subcategoriile Crăciun */
.category-card:hover,
.category-card:focus,
.category-card:active,
.category-link:hover,
.category-link:focus,
.category-link:active {
    background: #ffffff !important;
    box-shadow: none !important;
}

.category-card::before,
.category-card::after,
.category-link::before,
.category-link::after {
    background: transparent !important;
}

.lista-craciun {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
  padding-left: 20px;      /* indentare ca un <ul> normal */
  list-style-type: disc;   /* bullet normal */
}

.lista-craciun li {
  margin-bottom: 12px;     /* exact ca p */
  line-height: 1;        /* exact ca p */
  color: #7c7c7c;             /* exact ca p */
  font-size: 0.95rem;
}

/* ============================
   FAQ ACCORDION - FINAL REFINEMENT
============================ */

/* Mai mult spațiu deasupra titlului */
.faq-section .section-title {
  margin-bottom: 15px;
  padding-top: 30px;
}

.faq-section {
  padding-bottom: 1px;
}

.faq-item:last-child {
  margin-bottom: 0;
}

/* Lista FAQ */
.faq-list {
  max-width: 900px;
  margin-left: 0; /* aliniere la stânga */
}

/* Fiecare item fără linie separatoare */
.faq-item {
  padding: 0;
  margin-bottom: 16px; /* spațiu între casete */
  border: none;
}

/* Butonul (întrebarea) rămâne pe verde */
.faq-question {
  width: 100%;
  background: #EBF7F3;
  border: 1px solid #D5EFE7;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1d1d1d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

/* Hover pe întrebare */
.faq-question:hover {
  background: #DFF4EC;
  border-color: #35A58A;
}

/* Icon + */
.faq-icon {
  font-size: 1.3rem;
  font-weight: bold;
  color: #35A58A;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Icon rotit la activare */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #207d63;
}

/* Răspunsul ca parte a aceleiași casete */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: #ffffff;
  border: 1px solid #D5EFE7;
  border-top: none; /* se "lipește" de întrebare */
  border-radius: 0 0 10px 10px; /* doar colțurile de jos rotunjite */
  padding: 0 16px;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.2s ease;
}

/* La activare: arătăm răspunsul */
.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 14px 16px 16px 16px;
}

/* Text răspuns */
.faq-answer p {
  color: #444;
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

/* FAQ: micșorează H3-ul din întrebări */
/* Default (desktop / general) */
.faq-question .faq-title{
  font-size: 1rem;
  line-height: 1.3;
  margin: 0;
  font-weight: 700;
}

/* Mobil (ex: până la 768px) */
@media (max-width: 768px){
  .faq-question .faq-title{
    font-size: 0.90rem;  /* mai mic pe mobil */
    line-height: 1.25;
  }
}


/* SECTIUNE PENTRU MESAJ COPIAT SI TRIMIS PE MESSENGER*/

/* facem icon-link relativ, ca să poziționăm hint-ul față de el */
.icon-link {
  position: relative;
}

/* TOOLTIP LOCAL – DOAR PENTRU DESKTOP */
/* hint local pentru DESKTOP */
@media (min-width: 768px) {
  .icon-link {
    position: relative;
  }

  .share-hint-desktop {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);

    background: #1E90FF;
    color: #fff;

    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;

    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 30;
  }

  .share-hint-desktop.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* toast GLOBAL pentru mobil */
/* toast GLOBAL pentru mobil */
@media (max-width: 767px) {
  .toast-mobile {
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);

    background: #1E90FF;
    color: white;
    padding: 12px 18px;
    border-radius: 14px;

    max-width: 90%;
    width: max-content;
    text-align: center;
    line-height: 1.35;

    font-size: 0.9rem;
    font-weight: 600;

    box-shadow: 0 6px 14px rgba(0,0,0,0.2);

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9999;
  }

  .toast-mobile.show {
    opacity: 1;
  }
}

/* OPTIMIZARE SHARE FOOTER PE MOBIL */
@media (max-width: 600px) {
  .message-card-footer {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .share-icons {
    display: flex;
    align-items: center;
    gap: 0.25rem !important;
  }

  .share-label {
    margin-right: 0.05rem !important;
  }

  .icon-link .social-icon {
    width: 25px !important;
    height: 25px !important;
  }
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  background: transparent; /* important */
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  font-size: 14px;
}


.breadcrumbs a {
  color: #35A58A;
  text-decoration: none;
  font-size: inherit;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: #999;
}

.breadcrumbs.hidden {
  display: none;
}

.message-card {
  position: relative; /* necesar pentru poziționarea bulinei */
}

/* numerotare pentru cele mai frumoase 10 mesaje */

.card-number {
  position: absolute;
  top: -10px;
  left: -10px;

  width: 22px;
  height: 22px;
  border-radius: 50%;

  background: #1E88E5; /* albastru elegant */
  color: white;
  font-weight: 600;
  font-size: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 2px 6px rgba(0,0,0,0.15);

  z-index: 10;
}

/* Sectiune pentru link-uri interne la finalul subcategoriilor */


.craciun-recomandari {
  margin-top: 10px;
}

/* === TITLU SECȚIUNE === */
.recomandari-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #1f1f1f;
}

/* === GRID === */
.recomandari-grid {
  display: grid;
  gap: 12px;
}

/* === CARD COMPACT === */
.recomandare-item {
  display: flex;
  gap: 12px;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
  color: inherit;
}

/* ICON */
.recomandare-item .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* TITLU + LINK */
.recomandare-item h3 {
  font-size: 1rem;
  margin: 0 0 2px;
  font-weight: 600;
}

.recomandare-item h3 a {
  text-decoration: none;
  color: #157862;        /* verdele tău, dar mai închis */
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.recomandare-item h3 a:hover {
  text-decoration: underline;
}

/* SĂGEATĂ */
.recomandare-item .arrow {
  font-size: 1rem;
  opacity: 0.65;
}

/* DESCRIERE COMPACTĂ */
.recomandare-item p {
  font-size: 0.82rem;
  margin: 0;
  color: #555;
  line-height: 1.25rem;
}



/* COOKIE POP-UP */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 340px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  font-size: 14px;
  z-index: 999999999;
  border: 1px solid rgba(0,0,0,0.08);
  display: none;
}

.cookie-header {
  display: flex;
  align-items: center; /* CENTRARE VERTICALĂ PERFECTĂ */
  gap: 10px;           /* spațiu frumos între icon și text */
  margin-bottom: 10px;
}


.cookie-icon {
  font-size: 24px;
  line-height: 1;
}

.cookie-header h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
}

.cookie-popup p {
  margin: 0 0 12px 0;
  line-height: 1.45;
  color: #333;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.cookie-btn {
  padding: 10px;
  border-radius: 8px;
  flex: 1;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.cookie-btn.accept {
  background: #35A58A;
  color: white;
}

.cookie-btn.essential {
  background: #e9e9e9;
  color: #333;
}

.cookie-link {
  font-size: 13px;
  color: #0066cc;
  text-decoration: underline;
  display: inline-block;
  margin-top: 5px;
}

.cookie-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1.1; /* important pentru centrare perfectă */
}


/* --- MOBILE OPTIMIZARE COOKIE POPUP --- */
@media (max-width: 600px) {
  .cookie-popup {
    width: calc(100% - 24px);
    bottom: 12px;
    right: 12px;
    left: 12px;
    padding: 14px;
  }

  .cookie-header {
    margin-bottom: 6px;
  }

  .cookie-icon {
    font-size: 20px;
  }

  .cookie-header h3 {
    font-size: 15px;
  }

  .cookie-popup p {
    font-size: 13px;
    margin: 0 0 10px;
    line-height: 1.35;
  }

  .cookie-buttons {
    gap: 8px;
    margin-bottom: 6px;
  }

  .cookie-btn {
    padding: 8px;
    font-size: 13px;
    border-radius: 6px;
  }

  .cookie-link {
    font-size: 12px;
  }

  @media (max-width: 600px) {
    .cookie-title {
      font-size: 15px;
    }
  }
  
}


/* Subtitluri de secțiune (H3 în interiorul unui H2 mare) */
.messages-subheading {
  font-size: 1.1rem;          /* mai mic decât H2 */
  line-height: 1.2;
  font-weight: 600;
  margin-top: 1.5rem;         /* micșorăm spațiul față de ce e mai sus */
  margin-bottom: 0.5rem;      /* spațiu mic față de primul mesaj */
  color: #1f2933;             /* un gri-închis, similar cu textul principal */
}

/* Opțional: un accent mic în fața titlului (linie verticală) */
.messages-subheading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 1em;
  margin-right: 8px;
  border-radius: 999px;
  background: #35A58A;        /* culoarea ta de accent (cea din logo) */
  vertical-align: middle;
}

/* Pe mobil, un pic mai mic, ca să nu pară înghesuit */
@media (max-width: 768px) {
  .messages-subheading {
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 1.25rem;
    margin-bottom: 0.4rem;
  }
}


/* Breadcrumbs: permite trecerea pe rand nou (mobile) */
@media (max-width: 768px) {
  .breadcrumbs {
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
    line-height: 1.25;
  }

  .breadcrumbs a,
  .breadcrumbs span {
    display: inline !important;
  }
}


/* =========================
   LEGAL PAGES: header fix
   ========================= */
   body.page-legal #header {
    position: relative;
    z-index: 9999;
  }
  

body.page-legal main {
  /* împinge conținutul sub header-ul fixed */
  padding-top: 0 !important;
}

/* container: dacă deja ai .container global, nu îl strică */
body.page-legal .container {
  max-width: 980px;
}

/* secțiunea principală */
body.page-legal .section {
  padding: 1.6rem 0 2.2rem;
}

/* card simplu */
body.page-legal .legal-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 1.25rem 1.25rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

/* headerul din conținut (H1 + data) */
body.page-legal .legal-header h1 {
  margin: 0 0 0.25rem 0;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.2px;
}

body.page-legal .legal-header .updated {
  margin: 0 0 1rem 0;
  color: rgba(0,0,0,0.55);
  font-size: 0.95rem;
}

/* text */
body.page-legal .legal-content p {
  margin: 0.45rem 0 0.9rem;
  line-height: 1.65;
}

body.page-legal .legal-content h2 {
  margin: 1.35rem 0 0.55rem;
  font-size: 1.15rem;
  letter-spacing: -0.15px;
}

body.page-legal .legal-content h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.02rem;
  color: rgba(0,0,0,0.82);
}

/* liste */
body.page-legal .legal-content ul {
  margin: 0.35rem 0 1rem 1.15rem;
  padding: 0;
}

body.page-legal .legal-content li {
  margin: 0.28rem 0;
}

/* linkuri din conținut */
body.page-legal .legal-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* separatoare fine între secțiuni (opțional) */
body.page-legal .legal-content h2 {
  padding-top: 0.25rem;
}

/* responsive */
@media (max-width: 640px) {
  body.page-legal .legal-card {
    padding: 1rem;
    border-radius: 14px;
  }
}

