/*General*/


.logomare{
    background-size: contain !important;
}

.produs_page p,.produs_page ul,.produs_page ol,
.desceriere_categorie_pagina{
    font-size:16px;
    color:#000;
}
.produs_page h2,.produs_page h3,.produs_page h4,.produs_page h5,
.desceriere_categorie_pagina h2,.desceriere_categorie_pagina h3,.desceriere_categorie_pagina h4,.desceriere_categorie_pagina h5{
    color:var(--second-color);
    font-weight:600;
    margin: 1em 0 8px;
    display: block;
}
.produs_page h2,
.desceriere_categorie_pagina h2{
    font-size:24px;
    text-decoration:underline;
}
.produs_page h3,
.desceriere_categorie_pagina h3{
    font-size:22px;
}
.produs_page h4,.produs_page h5,
.desceriere_categorie_pagina h4,.desceriere_categorie_pagina h5{
    font-size:20px;
}
.hide-mobile {
  display: block;
}
.hide-desktop {
  display: none;
}

/*Descriere*/
.descriere-aleroma .container {
    padding: 40px 0;
    line-height: 1.7;
    color: #333;
}

.descriere-aleroma h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.descriere-aleroma h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.descriere-aleroma p {
    margin-bottom: 18px;
}

.descriere-aleroma-grid {
    display: flex;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.descriere-col {
    flex: 1 1 300px;
}

.descriere-aleroma ul {
    margin: 0;
    padding-left: 20px;
}

.descriere-aleroma li {
    margin-bottom: 8px;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
  .hide-desktop {
    display: block;
  }
}

/*END General*/
 
 
 /*Product page*/
 .indisponibil-info{
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 4px;
    background: var(--orange-color);
    color: #fff;
    width:fit-content;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction:row;
    gap:1em;
 }
 .indisponibil-info .info-icon{
     height:22px;
     width:auto;
     fill:#ffffff;
 }
 /*END Product page*/
    .fab-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      z-index: 1000;
    }

    .fab {
      background-color: #28a745;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      transition: background 0.3s;
    }

    .fab:hover {
      background-color: #218838;
    }

    .fab svg {
      width: 28px;
      height: 28px;
      fill: white;
    }

    .fab-options {
      display: flex;
      flex-direction: column;
      margin-bottom: 10px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s ease;
    }

    .fab-container:hover .fab-options {
      opacity: 1;
      transform: translateY(0);
    }

    .fab-options a {
      background: white;
      color: #000000;
      font-weight:500;
      text-decoration: none;
      padding: 8px 12px;
      border-radius: 6px;
      margin: 5px 0;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      font-size: 14px;
      transition: background 0.2s;
    }

    .fab-options a:hover {
      background: #f0f0f0;
    }
    
    ul>br{
        display:none;
    }
    
/*FAQ*/

/* ========= FAQ CONTAINER ========= */
[itemtype="https://schema.org/FAQPage"] {
  display: block;
  margin: 2rem auto;
}

/* ========= LISTA OL CU COUNTER CUSTOM ========= */
[itemtype="https://schema.org/FAQPage"] > ol {
  counter-reset: faq-counter; /* inițiem numerotarea */
  padding-left: 0;            /* scoatem indentarea implicită */
  margin: 0;
  list-style:none;
}

/* ========= CARD + NUMER ========= */
[itemtype="https://schema.org/FAQPage"] li[itemtype="https://schema.org/Question"] {
  counter-increment: faq-counter; /* creștem numărul */
  position: relative;

  margin-bottom: 1.5rem;
  padding: 1.2rem 1.2rem 1.2rem 3.8rem; /* spațiu pentru badge */
  border-radius: 0.75rem;
  background: #ffffff;
  border: 1px solid #e3e3e8;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

/* Hover card */
[itemtype="https://schema.org/FAQPage"] li[itemtype="https://schema.org/Question"]:hover {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
  border-color: #d0d4ff;
}

/* ========= NUMERUL (BADGE) ========= */
[itemtype="https://schema.org/FAQPage"] li[itemtype="https://schema.org/Question"]::before {
    content: counter(faq-counter);
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-color);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* ========= ÎNTREBAREA ========= */
[itemtype="https://schema.org/FAQPage"] [itemprop="name"] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
  user-select: text;
}

[itemtype="https://schema.org/FAQPage"] [itemprop="name"] strong {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}

/* Icon decorativ la dreapta */
[itemtype="https://schema.org/FAQPage"] [itemprop="name"]::after {
  content: "❓";
  margin-left: auto;
  opacity: 0.5;
}

/* ========= RĂSPUNSUL — VIZIBIL PERMANENT ========= */
[itemtype="https://schema.org/FAQPage"] [itemtype="https://schema.org/Answer"] {
  margin-top: 0.7rem;
  opacity: 1;
  max-height: none;
  overflow: visible;
}

[itemtype="https://schema.org/FAQPage"] [itemtype="https://schema.org/Answer"] p[itemprop="text"] {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}

/* ========= RESPONSIV ========= */
@media (max-width: 768px) {
  [itemtype="https://schema.org/FAQPage"] li[itemtype="https://schema.org/Question"] {
    padding: 1rem 1rem 1rem 3.4rem;
  }

  [itemtype="https://schema.org/FAQPage"] li[itemtype="https://schema.org/Question"]::before {
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.9rem;
    top: 1rem;
    left: 1rem;
  }
}


/*END FAQ*/
    
    @media screen and (min-width:769px){
        .fab-container{
            display:none;
        }
    }