/* ======================================================================
   START: RESET GLOBAL
   ====================================================================== */
* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
}
/* ======================================================================
   END: RESET GLOBAL
   ====================================================================== */


/* ======================================================================
   START: BODY (GLOBAL)
   ====================================================================== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #F2F2F2;
}
/* ======================================================================
   END: BODY (GLOBAL)
   ====================================================================== */


/* ======================================================================
   START: HEADER
   ====================================================================== */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 22px;
  padding-top: 10px;
  padding-bottom: 3px;
}
/* ======================================================================
   END: HEADER
   ====================================================================== */


/* ======================================================================
   START: NAVBAR (DESKTOP)
   ====================================================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #074441;
  padding: 10px 35px 10px 35px;
  border-radius: 10px;
  width: 100%;
}

.navbar a {
  text-decoration: none;
}

.logo img {
  display: block;
  height: 55px;
  width: auto;
  padding: 0;
  margin: 0;
  margin-right: 15px;
}
/* ======================================================================
   END: NAVBAR (DESKTOP)
   ====================================================================== */


/* ======================================================================
   START: CONTACT BUTTON (NAV)
   ====================================================================== */
.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: transparent;
  color: #fff;
  padding: 8px 13px;
  border: 1.5px solid #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  margin-right: 15px;
  margin-left: 5px;
}

/* svg inherits button text color */
.contact-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.contact-button:hover {
  background: #fff;
  color: #074B48;
  border-color: #fff;
}
/* ======================================================================
   END: CONTACT BUTTON (NAV)
   ====================================================================== */


/* ======================================================================
   START: SEARCH BAR (NAV)
   ====================================================================== */
.search-bar {
  flex: 1;
  max-width: 650px;
  height: 45px;
  display: flex;
  align-items: center;
  background: white;
  padding: 5px 10px;
  border-radius: 10px;
  margin-left: 8px;
  position: relative;
}

.search-bar input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
  margin-left: 10px;
}
/* ======================================================================
   END: SEARCH BAR (NAV)
   ====================================================================== */


/* ======================================================================
   START: ICONS (NAV)
   ====================================================================== */
.icons {
  display: flex;
  gap: 90px;
  cursor: pointer;
  position: relative;
  margin-left: 30px;
}
/* ======================================================================
   END: ICONS (NAV)
   ====================================================================== */


/* ======================================================================
   START: RESPONSIVE - NAV (<= 1024px)
   ====================================================================== */
@media (max-width: 1024px) {
  .icons {
    gap: 30px;
    margin: 0;
  }
}
/* ======================================================================
   END: RESPONSIVE - NAV (<= 1024px)
   ====================================================================== */


/* ======================================================================
   START: RESPONSIVE - NAV (<= 768px)
   ====================================================================== */
@media (max-width: 768px) {
  .search-bar {
    max-width: 200px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .search-bar {
    max-width: 100%;
    height: 40px;
  }

  header {
    padding: 7px;
  }

  .logo img {
    height: 45px;
    margin-right: 5px;
  }

  .container {
    padding: 0 !important;
  }

  .contact-button {
    font-size: 10px;
    padding: 6px 13px;
  }

  .navbar {
    padding: 5px 15px 5px 15px;
  }

  .slider {
    display: none !important;
  }

  .menu {
    width: 100% !important;
  }

  .hamburger img {
    margin-top: 6px;
  }

  .arrow {
    rotate: 90deg !important;
  }
}
/* ======================================================================
   END: RESPONSIVE - NAV (<= 768px)
   ====================================================================== */


/* ======================================================================
   START: RESPONSIVE - NAV (<= 480px)
   ====================================================================== */
@media (max-width: 480px) {
  .search-bar {
    max-width: 100%;
    height: 35px;
    border-radius: 6px;
    margin-left: 8px;
  }

  .search-bar input {
    font-size: 12px;
  }

  .container h1 {
    font-size: 20px;
  }

  .container h2 {
    font-size: 11px;
  }

  .container p {
    font-size: 11px;
  }

  .container ul {
    font-size: 11px;
  }

  .logo img {
    height: 40px;
  }

  .hamburger img {
    margin-top: 6px;
    width: 35px;
    height: 35px;
  }
}
/* ======================================================================
   END: RESPONSIVE - NAV (<= 480px)
   ====================================================================== */


/* ======================================================================
   START: ICON TOOLTIP
   ====================================================================== */
.icon-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon {
  width: 28px;
  height: 28px;
}

.tooltip {
  position: absolute;
  top: 35px; /* Poziționează exact sub iconiță */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  margin-top: 5px;
}

.icon-container:hover .tooltip {
  opacity: 1;
}
/* ======================================================================
   END: ICON TOOLTIP
   ====================================================================== */


/* ======================================================================
   START: NAV - HIDE ICONS/CONTACT ON MOBILE
   ====================================================================== */
@media (max-width: 768px) {
  .icons,
  .contact-button {
    display: none;
  }
}

/* =====================================================
   MOBILE: arata Contact button in navbar
   ===================================================== */
@media (max-width: 768px) {
  .contact-button {
    display: inline-flex !important;
  }
}

@media (max-width: 768px){

  /* 1) navbar: un singur rand, aliniere perfect centrata */
  .navbar{
    display: grid !important;
    grid-template-columns: 56px 1fr auto; /* logo | search | contact */
    align-items: center;
    column-gap: 12px;

    padding: 12px 14px !important; /* un pic mai clean */
  }

  /* 2) logo: fix pe centru vertical */
  .navbar .logo{
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .navbar .logo img{
    height: 44px;           /* ca sa nu impinga bara */
    width: auto;
    margin: 0 !important;
  }

  /* 3) search: centru, dar si fluid */
  .navbar .search-bar{
    grid-column: 2;

    height: 44px;
    margin: 0 !important;

    width: 100%;
    justify-self: center;

    border-radius: 12px;
  }

  .search-bar svg{
    width: 20px;
    height: 20px;
  }

  .search-bar input{
    font-size: 15px;
  }

  /* 4) contact: sigur pe dreapta */
  .navbar a[href*="contact"]{
    grid-column: 3;
    justify-self: end;
    display: flex;
  }

  .navbar .contact-button{
    height: 44px;
    padding: 0 12px;
    margin: 0 !important;

    display: inline-flex;
    align-items: center;

    border-radius: 12px;
    font-size: 12px;
    white-space: nowrap;
  }

}
@media (max-width: 768px){

  /* Navbar in 2 randuri, aliniat perfect */
  .navbar{
    display: grid !important;
    grid-template-columns: auto 1fr auto;  /* logo | spatiu | contact */
    grid-template-rows: auto auto;         /* rand 1 + rand 2 */
    row-gap: 10px;
    column-gap: 12px;

    align-items: center;
    padding: 12px 14px !important;
  }

  /* LOGO: rand 1, stanga */
  .navbar .logo{
    grid-column: 1;
    grid-row: 1;

    display: flex;
    align-items: center;
  }

  .navbar .logo img{
    height: 44px;
    width: auto;
    margin: 0 !important;
  }

  /* CONTACT: rand 1, dreapta */
  .navbar a[href*="contact"]{
    grid-column: 3;
    grid-row: 1;
    justify-self: end;

    display: flex;
    align-items: center;
  }

  .navbar .contact-button{
    height: 42px;
    padding: 0 12px;
    margin: 0 !important;

    border-radius: 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* SEARCH: rand 2, pe toata latimea (centrat si frumos) */
  .navbar .search-bar{
    grid-column: 1 / -1;  /* span pe toate coloanele */
    grid-row: 2;

    width: 100%;
    max-width: 100%; 
    justify-self: center;

    height: 46px;
    margin: 0 !important;
    border-radius: 12px;
  }

}

@media (max-width: 768px){

  .navbar::before{
    content: "Chișinău, șos. Muncești 807";

    grid-column: 2;
    grid-row: 1;

    justify-self: center;
    align-self: center;

    /* DIMENSIUNI CONTROLATE */
    max-width: 180px;          /* 🔑 cheia */
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    font-weight: 600;
    line-height: 1;

    color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.10);

    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);

    /* ✂️ TAIERE ELEGANTA */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


/* ======================================================================
   END: NAV - HIDE ICONS/CONTACT ON MOBILE
   ====================================================================== */



   

/* ======================================================================
   START: SUBMENU (DESKTOP)
   ====================================================================== */
.submenu a {
  text-decoration: none;
  color: black;
}

.submenu > li {
  position: relative; /* Asigură poziționarea relativă pentru fiecare element din submenu */
}

.submenu > li:hover > .sub-submenu {
  left: 100%; /* Sub-submenu-ul apare în dreapta elementului părinte */
  top: 0; /* Aliniază sub-submenu-ul la partea de sus a elementului părinte */
  display: block; /* Afișează sub-submenu-ul */
  z-index: 20; /* Asigură-te că apare deasupra altor elemente */
}
/* ======================================================================
   END: SUBMENU (DESKTOP)
   ====================================================================== */

/* ======================================================================
   START: SIDE MENU (MOBILE) — clean, modern, professional
   MOBILE ONLY — Bottom Floating Navigation
   ❗ NU afecteaza desktopul
   ❗ Fara hamburger / fara side-menu
   ====================================================================== */

@media (max-width: 1024px) {

  /* spatiu jos ca bara sa nu acopere continutul */

  .footer {
    padding-bottom: 96px !important;
  }

  /* --------------------------------------------------
     2. Containerul levitant (bara de jos)
     -------------------------------------------------- */
  .navbar .icons {
    position: fixed;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);

    /*width: min(92vw, 420px);*/
    width: 85%;
    height: 64px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 14px;

    background: rgba(5, 49, 47, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);

    box-shadow:
      0 18px 40px rgba(0,0,0,.25),
      0 6px 14px rgba(0,0,0,.18);

    z-index: 50;
  }

  /* --------------------------------------------------
     3. Butoanele (iconitele)
     -------------------------------------------------- */
  .navbar .icons .icon-container {
    flex: 1;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    text-decoration: none;

    transition: background .15s ease, transform .15s ease;
  }

  .navbar .icons .icon-container:active {
    transform: scale(0.96);
  }

  .navbar .icons .icon-container:hover {
    background: rgba(255,255,255,0.08);
  }

  /* --------------------------------------------------
     4. Normalizare iconite (CENTRARE OPTICA REALA)
     -------------------------------------------------- */
  .navbar .icons .icon-container .icon {
    width: 26px;
    height: 26px;

    display: block;
    object-fit: contain;

    /* face iconitele albe pe fundal inchis */
    filter: brightness(0) invert(1);

    opacity: 0.95;
    transition: transform .15s ease, opacity .15s ease;
  }

  .navbar .icons .icon-container:hover .icon {
    transform: translateY(-1px);
    opacity: 1;
  }

  /* --------------------------------------------------
     5. Tooltip — dezactivat pe mobil
     -------------------------------------------------- */
  .navbar .icons .icon-container .tooltip {
    display: none !important;
  }

}

/* ======================================================================
   END: Mobile NAV
   ====================================================================== */


      /* ======================================================================
   CART BADGE — round circle + thinner text
   ====================================================================== */

.cart-count-badge{
  position: absolute;
  top: -6px;
  right: -6px;

  min-width: 18px;
  height: 18px;
  padding: 0 5px;

  display: none; /* devine grid cand are count */
  place-items: center;

  border-radius: 999px;
  background: #ff3b30;
  color: #fff;

  font-size: 12px;
  font-weight: 500;
  line-height: 1;

  border: 2px solid rgba(5,49,47,0.96);
}

/* END */


/* ======================================================================
   START: MOBILE MENU (LISTS + ITEMS)
   ====================================================================== */
.menu-mobile,
.submenu-mobile,
.subsubmenu-mobile {
  list-style: none;
  padding: 0 10px;
  margin: 0;
}

.menu-mobile {
  margin-top: -15px;
}

.menu-mobile-item,
.submenu-mobile-item {
  border: 1px solid #ccc;
  font-size: 13px;
}

.menu-mobile-title,
.submenu-mobile-title {
  padding: 15px;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #F2F2F2;
}

.mobile_incons {
  width: 27px;
  height: 27px;
  top: 0%;
}

.submenu-mobile,
.subsubmenu-mobile {
  display: none;
  background-color: #ffffff;
}

.submenu-mobile li,
.subsubmenu-mobile li {
  border: 1px solid #ccc;
}

.subsubmenu-mobile,
.submenu-mobile {
  padding-bottom: 0;
}

.submenu-mobile a,
.subsubmenu-mobile a {
  text-decoration: none;
  padding: 10px 10px;
  color: #000000;
  display: block;
}

.arrow-mobile {
  width: 14px;
  height: 14px;
  rotate: 90deg;
  margin-left: auto;
  top: 0%;
}
/* ======================================================================
   END: MOBILE MENU (LISTS + ITEMS)
   ====================================================================== */


/* ======================================================================
   START: MAIN TITLE (FORESTCOM)
   ====================================================================== */
/*de aici se incepe side bar si restul*/
.main_forestcom {
  padding-left: 20px;
  margin-top: 15px;
  font-family: 'Mohave', sans-serif;
  font-size: 50px;
  letter-spacing: -1.5px
}

.smaller_main_forestcom {
  font-weight: 400;
}

@media (max-width: 768px) {
  .main_forestcom {
    font-size: 33px;
    margin-top: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 480px) {
  .smaller_main_forestcom {
    display: none;
  }
}
/* ======================================================================
   END: MAIN TITLE (FORESTCOM)
   ====================================================================== */


/* ======================================================================
   START: CONTAINER + MENU ICONS/ARROW (DESKTOP)
   ====================================================================== */
.container {
  display: flex;
  justify-content: space-between;
}

li img {
  width: 27px;
  height: 27px;
  margin-right: 10px;
  position: relative;
  top: 8px;
  margin-left: 10px;
}

.arrow {
  position: absolute;
  top: 16px;
  right: 8px;
  width: 15px;
  height: 15px;
}
/* ======================================================================
   END: CONTAINER + MENU ICONS/ARROW (DESKTOP)
   ====================================================================== */


/* ======================================================================
   START: PRODUSE DE SEZON (MENU + HOT LABEL + ANIM)
   ====================================================================== */
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}

.menu-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  position: relative;
}

/* Eticheta "HOT" */
.menu-label.hot {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ff3b30;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  animation: pulse1 2s ease-in-out infinite;
}

/* Noua animație mai lină */
@keyframes pulse1 {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.10);
    opacity: 0.88;
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}
/* ======================================================================
   END: PRODUSE DE SEZON (MENU + HOT LABEL + ANIM)
   ====================================================================== */


/* ======================================================================
   START: MENU (DESKTOP) + SUBMENUS (DESKTOP)
   ====================================================================== */
.menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 400px;
  list-style-type: none;
}

.menu > li {
  position: relative;
  background: #f9f9f9;
  padding: 4px;
  cursor: pointer;
  height: 50px;
}

.menu li:hover {
  background: #ddd;
}

.submenu,
.sub-submenu {
  display: none;
  list-style-type: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 300px;
  background: #f9f9f9;
  border: 1px solid #ccc;
}

.sub-submenu {
  width: 345px !important;
}

.submenu li,
.sub-submenu li {
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}

.submenu li:hover,
.sub-submenu li:hover {
  background: #ddd;
}

.menu > li:hover > .submenu,
.submenu > li:hover > .sub-submenu {
  display: block;
  z-index: 10; /* Asigură-te că meniul are un z-index mai mare */
}
/* ======================================================================
   END: MENU (DESKTOP) + SUBMENUS (DESKTOP)
   ====================================================================== */


/* ======================================================================
   START: SLIDER
   ====================================================================== */
.slider {
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  margin-top: -15px;
}

.slides {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide {
  position: relative;
  min-width: 100%; /* 3 imagini pe rând */
  padding: 5px;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .slide {
    margin-top: 1px;
  }
}

.slides img {
  width: 100%;
  height: 350px; /* Fixăm înălțimea pentru uniformitate */
  object-fit: cover; /* Asigură că imaginea se potrivește proporțional */
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
/* ======================================================================
   END: SLIDER
   ====================================================================== */


/* ======================================================================
   START: OFERTE FIERBINTI (OFFERS)
   ====================================================================== */
/*aici se incepe  OFERTE FIERBINTI*/

/* Offers Section */
.effer_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.offers-section {
  width: 96%;
  padding: 20px 0;
  background-color: transparent;
  text-align: left;
}

.offers-section h2 {
  font-size: 35px;
  font-weight: 700;
  margin-left: 10px;
  position: relative;
  display: inline-block;
  margin-top: 40px;
}

.offers-section h2::after {
  content: '';
  display: block;
  width: 100%;
  height: 6px;
  background-color: #05312F;
  position: absolute;
  bottom: -1px;
  left: 0;
  border-radius: 10px;
}

.parent {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 10px;
  height: 103vh;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .parent {
    gap: 5px;
    height: 80vh;
  }

  .offers-section h2 {
    font-size: 28px;
    margin-top: 20px;
    margin-left: 0px;
  }
}

.parent > div {
  overflow: hidden;
}

.parent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.div1 {
  grid-column: span 4 / span 4;
  grid-row: span 3 / span 3;
}

.div2 {
  grid-column: span 3 / span 3;
  grid-row: span 3 / span 3;
  grid-column-start: 5;
}

.div3 {
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
  grid-row-start: 4;
}

.div4 {
  grid-column: span 3 / span 3;
  grid-row: span 3 / span 3;
  grid-column-start: 3;
  grid-row-start: 4;
}

.div5 {
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
  grid-column-start: 6;
  grid-row-start: 4;
}

@media screen and (max-width: 768px) {
  .div1 {
    grid-column: span 4 / span 4;
    grid-row: span 3 / span 3;
  }

  .div2 {
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
    grid-column-start: 5;
  }

  .div3 {
    display: none;
  }

  .div4 {
    grid-column: span 3 / span 3;
    grid-row: span 3 / span 3;
    grid-column-start: 1;
    grid-row-start: 4;
  }

  .div5 {
    grid-column: span 4 / span 4;
    grid-row: span 3 / span 3;
    grid-column-start: 4;
    grid-row-start: 4;
  }
}
/* ======================================================================
   END: OFERTE FIERBINTI (OFFERS)
   ====================================================================== */


/* ======================================================================
   START: PRODUSE POPULARE (POPULAR PRODUCTS)
   ====================================================================== */
/*aici se ncep produsele populare*/
.popular-products-section {
  position: relative;
  padding: 20px;
  overflow: hidden;
}

.popular-products-section h2 {
  font-size: 35px;
  font-weight: 700;
  margin-left: 10px;
  position: relative;
  display: inline-block;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .recommended-products-section h2 {
    font-size: 28px !important;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .popular-products-section {
    padding: 2px;
  }

  .product-card {
    flex: 0 0 200px !important;
    height: 350px !important;
    margin-right: 5px !important;
  }

  .product-card h3 {
    font-size: 18px !important;
  }

  .popular-products-section h2 {
    font-size: 28px !important;
    margin-top: 20px;
    margin-left: 10px;
  }
  .scroll-button{
    display: none;
  }

}

.popular-products-section h2::after {
  content: '';
  display: block;
  width: 100%;
  height: 6px;
  background-color: #05312F;
  position: absolute;
  bottom: -1px;
  left: 0;
  border-radius: 10px;
}

/* Containerul de produse */
.products-container {
  display: flex;
  overflow-x: auto; /* Activăm scroll-ul orizontal */
  scroll-behavior: smooth;
  margin-top: 20px;
  white-space: nowrap;
  scrollbar-width: none; /* Ascunde scrollbar-ul pe Firefox */
  padding: 10px;
}

.products-container button a {
  text-decoration: none;
  color: white;
}

/* Ascunde scrollbar-ul pe Chrome și alte browsere */
.products-container::-webkit-scrollbar {
  display: none;
}

/* =========================
   Horizontal scroll progress
   ========================= */

.popular-products-section .scroll-progress{
  /* match the products-container inner “track” width */
  width: calc(100% - 20px);   /* products-container has padding: 10px */
  margin: 10px 10px 0;        /* same left/right as the container padding */

  height: 6px;
  border-radius: 999px;
  background: rgba(5,49,47,0.14);
  overflow: hidden;
}

.popular-products-section .scroll-progress__fill{
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: #05312F;
  transition: width 120ms linear;
}

.popular-products-section .scroll-progress.is-hidden{
  display: none;
}


/* Cardurile de produse */
.product-card {
  background: white;
  border-radius: 10px;
  padding: 10px;
  margin-right: 20px;
  flex: 0 0 300px; /* Dimensiunea fixă a fiecărui card */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 450px; /* Dimensiune fixă pentru card */
  overflow: hidden; /* Ascunde textul care depășește dimensiunea cardului */
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  font-size: 20px;
  margin: 5px 0;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  word-wrap: break-word;     /* Sparge cuvintele dacă sunt prea lungi */
  overflow-wrap: break-word; /* Alternativ modern pentru word-wrap */
  white-space: normal;       /* Permite textului să treacă pe rândul următor */
}

/* ATENȚIE: ai două blocuri pentru .product-card p (primul 12px cu -webkit-box,
   apoi încă unul 14px). Eu le las EXACT cum sunt la tine (nu schimb nimic). */
.product-card p {
  font-size: 12px; /* Dimensiune mai mică pentru text */
  color: #666;
  margin: 3px 0; /* Reduce spațiul dintre p și elementele de mai jos */
  line-height: 1.2; /* Reduce înălțimea liniei pentru a putea adăuga mai mult text */
  overflow: hidden; /* Ascunde textul care depășește dimensiunea cardului */
  text-overflow: ellipsis; /* Adaugă puncte de suspensie pentru textul care depășește */
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.product-card h3 {
  font-size: 20px;
  margin: 5px 0; /* Reduce spațiul dintre h3 și p */
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.product-card p {
  font-size: 14px;
  color: #666;
  margin: 5px 0; /* Reduce spațiul dintre p și elementele de mai jos */
}

.product-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.add-to-cart {
  background-color: #05312F;
  color: white;
  border: none;
  padding: 13px 40px;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s;
  width: 95%;
}

.add-to-cart:hover {
  background-color: #063c39;
}

/* Butoanele de scroll */
.scroll-button {
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  background-color: #05312F;
  color: white;
  border: none;
  padding-bottom: 2.5px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: 0.3s;
  width: 50px;
  height: 50px;
}

.scroll-button.left {
  left: 10px;
}

.scroll-button.right {
  right: 10px;
}

.scroll-button:hover {
  background-color: #05312F;
}




/* ======================================================================
   END: PRODUSE POPULARE (POPULAR PRODUCTS)
   ====================================================================== */





































   /* ======================================================================
   START: PRODUSE RECOMANDATE (Recommended Products)
   ====================================================================== */

.recommended-products-section {
  position: relative;
  padding: 20px;
  overflow: hidden;
  text-align: center;
}

/* Titlu */
.recommended-products-section h2 {
  font-size: 35px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 30px;
}

.recommended-products-section h2::after {
  content: '';
  display: block;
  width: 100%;
  height: 6px;
  background-color: #05312F;
  position: absolute;
  bottom: -1px;
  left: 0;
  border-radius: 10px;
}

/* Container cards */
.recommended-products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Card recomandat
   - Am scos duplicatele: margin-bottom era de 2 ori (10px + 20px) -> rămâne 20px (cea care câștiga)
   - Păstrez și width calc + flex-basis ca la tine (ca să nu schimb comportamentul) */
.recommended-product-card {
  width: calc(20% - 5px); /* 5 products per row with reduced spacing */
  box-sizing: border-box;

  background: white;
  border-radius: 10px;
  position: relative;

  padding: 10px;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 20px;

  flex: 0 0 310px; /* Dimensiunea fixă a fiecărui card */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 450px; /* Dimensiune fixă pentru card */
  overflow: hidden; /* Ascunde textul care depășește dimensiunea cardului */

  /* din blocul comun cu .product-card (era duplicat mai jos) */
  border: 1px solid #ddd;
  text-align: center;
}

.recommended-product-card button a {
  text-decoration: none;
  color: white;
}

.recommended-product-card img {
  max-width: 100%;
  height: auto;
  width: 100%;
  border-radius: 10px;
}

.recommended-product-card h3 {
  font-size: 20px;
  margin: 5px 0; /* Reduce spațiul dintre h3 și p */
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.recommended-product-card p {
  font-size: 12px; /* Dimensiune mai mică pentru text */
  color: #666;
  margin: 3px 0; /* Reduce spațiul dintre p și elementele de mai jos */
  line-height: 1.2; /* Reduce înălțimea liniei pentru a putea adăuga mai mult text */
  overflow: hidden; /* Ascunde textul care depășește dimensiunea cardului */
  text-overflow: ellipsis; /* Adaugă puncte de suspensie pentru textul care depășește */
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Limitează numărul de linii la 4 */
  -webkit-box-orient: vertical;
}

.recommended-product-card .product-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-footer .price {
  font-weight: bold;
}

/* Buton add-to-cart
   - Ai avut 2 versiuni:
     1) .recommended-product-card .add-to-cart { padding: 10px 50px; border-radius:100px; }
     2) .product-footer .add-to-cart { padding: 10px 40px; } + hover altă culoare
   - Ca să păstrăm comportamentul:
     * Pentru recomandate rămâne padding 10px 50px (mai specific).
     * Hover rămâne #075551 (din regula generală) pentru toate butoanele din .product-footer,
       DAR la recommended ai hover setat tot #05312F (nu schimbă vizual). */
.product-footer .add-to-cart {
  background-color: #05312F;
  color: white;
  border: none;
  padding: 10px 40px;
  cursor: pointer;
}

.product-footer .add-to-cart:hover {
  background-color: #075551;
}

.recommended-product-card .add-to-cart {
  background-color: #05312F;
  color: white;
  border: none;
  padding: 10px 50px;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s;
}

.recommended-product-card .add-to-cart:hover {
  background-color: #05312F;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .recommended-products-section {
    padding: 1px;
    margin-bottom: 20px;
  }

  .recommended-product-card {
    flex: 0 0 200px;
    height: 350px;
    margin-left: 2px;
    margin-right: 2px;
    margin-top: -16px;
  }

  .recommended-product-card h3 {
    font-size: 18px;
  }

  .product-footer .add-to-cart {
    padding: 8px 10px !important;
    font-size: 12px;
  }
}

@media screen and (max-width: 408px) {
  .recommended-product-card {
    flex: 0 0 180px;
    height: 350px;
  }

  .recommended-product-card h3 {
    font-size: 16px;
  }
}
/* ======================================================================
   END: PRODUSE RECOMANDATE (Recommended Products)
   ====================================================================== */



/* ======================================================================
   START: FOOTER (centrat, coloane, harta)
   ====================================================================== */

.footer {
  background: #222;
  color: #fff;
  padding: 50px 0 20px;
}

/* containerul principal: coloane pe o linie + responsive */
.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;

  gap: 40px;
  text-align: center;
}

/* fiecare sectiune din footer */
.footer-section,
.footer-section-map {
  flex: 1 1 0;
  min-width: 230px;
  max-width: 320px;
}

.footer-section a{
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-section a:hover{
  color: #59DD97;
  text-decoration: underline;
}

.footer-section a{
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-section a:hover{
  color: #59DD97;
  text-decoration: underline;
}


/* logo + social */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.logo-section img {
  width: 150px;
  height: auto;
}

/* text general */
.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  margin: 6px 0;
}

/* titluri */
.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #59DD97;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

/* liste */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #59DD97;
}

/* accent in text */
.footer-section p strong {
  color: #59DD97;
}

/* social icons */
.card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.socialContainer {
  width: 52px;
  height: 52px;
  background-color: #074441;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  transition: 0.3s;
}

.socialContainer:active {
  transform: scale(0.9);
}

.containerOne:hover {
  background-color: #d62976;
  transform: scale(1.15);
}

.containerTwo:hover {
  background-color: #0072b1;
  transform: scale(1.15);
}

.containerThree:hover {
  background-color: #000;
  transform: scale(1.15);
}

.socialSvg {
  width: 22px;
  height: 22px;
}

.socialSvg path {
  fill: #fff;
}

/* HARTA FULL WIDTH
   - Ai avut 2 seturi: unul normal + unul override cu !important.
   - Am păstrat DOAR varianta finală (override) și am integrat-o aici. */
.footer .footer-section-map {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}

.footer .footer-section-map iframe {
  display: block !important;
  box-sizing: border-box !important;

  width: calc(100% + 40px - 24px) !important;
  margin-left: calc(-20px + 12px) !important;
  margin-right: calc(-20px + 12px) !important;

  height: 320px !important;
  border: 0 !important;
  border-radius: 14px !important;
}

/* COPYRIGHT */
.copyright {
  text-align: center;
  font-size: 14px;
  padding: 15px 0;
  color: #bbb;
  border-top: 1px solid #444;
}

/* =========================================
   Realizat de Leead Grow Button
   ========================================= */

.button-container{
  display:flex;
  justify-content: center;
  align-items:center;
  padding:16px 24px;
}

/* BUTTON BASE */
.brutalist-button{
  position:relative;
  appearance:none;
  -webkit-appearance:none;

  height:60px;
  width:60px;
  padding:0;
  margin:0;

  border:2px solid #fff;
  background:#fff;
  border-radius:50%;

  /* smaller 3D look */
  box-shadow: 3px 3px 0 rgba(255,255,255,.55);

  cursor:pointer;
  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:
    width .35s ease,
    border-radius .35s ease,
    box-shadow .2s ease;

  text-decoration: none;
}

.brutalist-button::after{
  content:"";
  position:absolute;
  inset:-10px;
  background:transparent;
  pointer-events:auto;
}

/* EXPANDED STATE */
.brutalist-button:hover{
  width:240px;
  border-radius:30px;
  box-shadow: 5px 5px 0 rgba(255,255,255,.75);

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}


/* PRESSED */
.brutalist-button:active{
  box-shadow: 2px 2px 0 rgba(255,255,255,.6);
}

/* =========================
   LOGO
   ========================= */

.leeadgrow-logo{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);

  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1;
}

.brutalist-button:hover .leeadgrow-logo{
  position:relative;
  left:auto;
  top:auto;
  transform:none;
}

.leeadgrow-logo svg{
  width:100%;
  height:100%;
  display:block;
  transform-origin:50% 50%;
}

/* Always spinning */
@keyframes spinLogo{
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.leeadgrow-logo svg{
  animation: spinLogo 6s linear infinite;
}

/* =========================
   TEXT
   ========================= */

.button-text{
  display:flex;
  flex-direction:column;
  justify-content:center;

  opacity:0;
  max-width:0;
  overflow:hidden;
  transform: translateX(-8px);
  white-space:nowrap;

  transition:
    opacity .25s ease,
    transform .25s ease,
    max-width .35s ease;

  z-index:1;
}

/* show smoothly */
.brutalist-button:hover .button-text{
  opacity:1;
  max-width:220px;
  transform: translateX(0);
}

/* Text styling */
.button-text span:first-child{
  display:block;
  font-size:12px;
  font-weight:500;
  color:#555;
  line-height:1.2;
}

.button-text span:last-child{
  display:block;
  font-size:14px;
  font-weight:800;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:#000;
  line-height:1.2;
}

/* Remove any old pseudo effects */
.brutalist-button::before{
  display:none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section,
  .footer-section-map {
    max-width: 500px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section p,
  .footer-section ul li a {
    font-size: 13px;
  }

  .socialContainer {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .footer-section h3 {
    font-size: 15px;
  }

  .footer-section p {
    font-size: 12px;
  }

  .footer-section ul li a {
    font-size: 12px;
  }

  .socialContainer {
    width: 40px;
    height: 40px;
  }

  .socialSvg {
    width: 20px;
    height: 20px;
  }

  .copyright {
    font-size: 11px;
  }

  /* păstrez și gap-ul (era doar în override) */
  .footer-container {
    gap: 15px;
  }
}
/* ======================================================================
   END: FOOTER
   ====================================================================== */


/* ======================================================================
   START: SEARCH SUGGESTIONS (modern UI) - SINGLE COPY (deduplicated)
   ====================================================================== */
:root {
  --fc-primary: #074441;
  --fc-bg: #ffffff;
  --fc-text: #111;
  --fc-muted: #6b7280;
  --fc-border: #e5e7eb;
  --fc-hover: #f5f7f7;
  --fc-shadow: 0 22px 45px rgba(0,0,0,.18), 0 2px 10px rgba(0,0,0,.06);
}

.search-bar {
  position: relative; /* deja ai, dar asigurăm contextul */
}

.search-suggestions {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 8px);
  background: var(--fc-bg);
  border: 1px solid var(--fc-border);
  border-radius: 12px;
  box-shadow: var(--fc-shadow);
  max-height: 420px;
  overflow: auto;
  display: none; /* control din JS */
  z-index: 9999;
  padding: 6px;
  animation: fcDrop .14s ease-out;
  overscroll-behavior: contain;
}

/* bara “cap” opțională – lipește în JS dacă vrei */
.search-suggestions .ss-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 8px;
  border-bottom: 1px solid var(--fc-border);
  font: 600 12px/1.1 'Poppins', sans-serif;
  color: var(--fc-muted);
  letter-spacing: .02em;
}

.suggestion-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .16s ease, transform .04s ease;
}

.suggestion-item:hover {
  background: var(--fc-hover);
}

.suggestion-item[aria-selected="true"] {
  background: #eef6f5;
  outline: 1.5px solid #d6ebe9;
}

.sug-thumb {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #eef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--fc-primary);
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
}

.sug-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.sug-main {
  min-width: 0; /* truncate corect */
}

.sug-title {
  font: 600 14px/1.25 'Poppins', sans-serif;
  color: var(--fc-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sug-meta {
  margin-top: 4px;
  font: 12px/1.2 'Poppins', sans-serif;
  color: var(--fc-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sug-meta .pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--fc-border);
  margin-left: 6px;
  font-weight: 600;
}

.sug-go {
  font: 600 12px/1 'Poppins', sans-serif;
  color: var(--fc-primary);
  opacity: .9;
}

/* “fără rezultate” */
.suggestion-empty {
  padding: 18px 12px;
  text-align: center;
  color: var(--fc-muted);
  font: 500 13px/1.4 'Poppins', sans-serif;
}

/* scrollbar discret */
.search-suggestions::-webkit-scrollbar {
  width: 10px;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: #dfe6e5;
  border-radius: 999px;
  border: 2px solid #fff;
}

/* mark + highlight */
.search-suggestions mark {
  background: #fef3c7;
  color: inherit;
  padding: 0 2px;
  border-radius: 4px;
}

/* mică animație de intrare */
@keyframes fcDrop {
  from { transform: translateY(-6px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* mobile – “lipim” de input pentru feeling nativ */
@media (max-width: 768px) {
  .search-suggestions {
    top: calc(100% + 6px);
    border-radius: 10px;
    max-height: 60vh;
  }
}
/* ======================================================================
   END: SEARCH SUGGESTIONS
   ====================================================================== */



/* ======================================================================
   START: CLS / STABILIZARE (deduplicated)
   ====================================================================== */

/* fix cookie bar to avoid CLS */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

/* reserve hero space */
.slider {
  min-height: 360px;
}

.slide img {
  aspect-ratio: 1100/350;
  object-fit: cover;
}

/* stabilize product images */
.product-card img,
.recommended-product-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* reduce infinite animations */
.menu-label.hot {
  animation-iteration-count: 1;
}
/* ======================================================================
   END: CLS / STABILIZARE
   ====================================================================== */



/* ======================================================================
   START: CUSTOM ALERT
   ====================================================================== */
.custom-alert {
  position: fixed;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff4d4d;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-in-out;
  z-index: 1000;
}

.custom-alert.success {
  background-color: #0091ff;
}

.custom-alert.show {
  top: 80px;
}
/* ======================================================================
   END: CUSTOM ALERT
   ====================================================================== */



/* ======================================================================
   START: LOADING SCREEN
   ====================================================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #063F3D;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease;
  padding: 40px;
  box-sizing: border-box;
}

.loader-logo {
  max-width: 150px;
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}

.dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: auto;
}

.dot {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #075551;
  animation: pulse2 1.5s infinite ease-in-out;
}

.dot:last-child {
  margin-right: 0;
}

.dot:nth-child(1) { animation-delay: -0.3s; }
.dot:nth-child(2) { animation-delay: -0.1s; }
.dot:nth-child(3) { animation-delay:  0.1s; }
.dot:nth-child(4) { animation-delay:  0.3s; }
.dot:nth-child(5) { animation-delay:  0.5s; }

@keyframes pulse2 {
  0% {
    transform: scale(0.8);
    background-color: #085f5b;
    box-shadow: 0 0 0 0 rgba(46, 176, 150, 0.7);
  }
  50% {
    transform: scale(1.2);
    background-color: #05312F;
    box-shadow: 0 0 0 10px rgba(46, 176, 150, 0.7);
  }
  100% {
    transform: scale(0.8);
    background-color: #085f5b;
    box-shadow: 0 0 0 0 rgba(46, 176, 150, 0.7);
  }
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

body.loading {
  overflow: hidden;
}
/* ======================================================================
   END: LOADING SCREEN
   ====================================================================== */



/* ======================================================================
   START: SALE BADGE
   ====================================================================== */
.sale-badge{
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;

  padding: 6px 12px;
  font: 700 15px/1 'Poppins', sans-serif;
  letter-spacing: .6px;
  text-transform: uppercase;

  color:#05312F;

  background: #F5A623;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;

  box-shadow:
    0 8px 20px rgba(0,0,0,.18),
    0 0 0 4px rgba(89,221,151,.15);

  animation: badgeFloat 3.2s ease-in-out infinite,
             badgeGlow 3.2s ease-in-out infinite;

  overflow:hidden;
}

/* reflex (shine) care trece peste badge */
.sale-badge::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:50%;
  height:180%;
  transform: rotate(22deg);
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.28) 50%,
    rgba(255,255,255,0) 100%
  );
  animation: badgeShine 3.2s ease-in-out infinite;
}

/* miscarea foarte mica */
@keyframes badgeFloat{
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}

/* glow discret (accentul tau verde) */
@keyframes badgeGlow{
  0%, 100% { box-shadow: 0 10px 22px rgba(0,0,0,.18), 0 0 0 0 rgba(89,221,151,0); }
  50%      { box-shadow: 0 14px 28px rgba(0,0,0,.22), 0 0 0 6px rgba(89,221,151,.12); }
}

/* reflexul trece o data pe ciclu */
@keyframes badgeShine{
  0%   { transform: translateX(0) rotate(22deg); opacity:0; }
  15%  { opacity:1; }
  35%  { transform: translateX(260%) rotate(22deg); opacity:0; }
  100% { transform: translateX(260%) rotate(22deg); opacity:0; }
}

/* Mobile tweaks */
@media (max-width: 768px){
  .sale-badge{
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 9px;
  }
}

/* ======================================================================
   END: SALE BADGE
   ====================================================================== */



/* ======================================================================
   START: MOBILE MENU TITLE ALIGN (<= 770px)
   ====================================================================== */
@media (max-width: 770px) {
  .menu-mobile-title {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* align all content to the left */
    position: relative;
    gap: 10px; /* consistent spacing between icon and text */
    line-height: 1; /* tighter spacing */
  }

  .menu-mobile-title img.mobile_incons {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
  }

  .menu-mobile-title a,
  .menu-mobile-title span,
  .menu-mobile-title {
    vertical-align: middle;
  }

  /* SALE badge perfectly centered vertically, right-aligned */
  .menu-mobile-title .menu-label.hot {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 7px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    background: #ff3b30;
    color: #fff;
    animation: pulse1 2s ease-in-out infinite;
    text-transform: uppercase;
  }

  /* hide arrow if label exists */
  .menu-mobile-title .menu-label.hot + .arrow-mobile {
    display: none !important;
  }
}
/* ======================================================================
   END: MOBILE MENU TITLE ALIGN
   ====================================================================== */



/* ======================================================================
   START: TOPBAR (deasupra navbar-ului) + RESPONSIVE
   ====================================================================== */
.topbar {
  width: 100%;
  background: #05312F;
  color: #ffffff;
  border-radius: 10px 10px 0 0;
  padding: 8px 35px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  font: 500 14px/1.2 'Poppins', sans-serif;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tb-item {
  opacity: .95;
  white-space: nowrap;
}

.tb-item strong {
  font-weight: 700;
}

.tb-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.25);
}

.topbar-center {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tb-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.tb-social:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.28);
}

.tb-social svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* colturile navbarului jos, ca sa se imbini frumos cu topbarul */
.navbar {
  border-radius: 0 0 10px 10px;
}

/* keep one-line layout until 769px */
.topbar,
.topbar-left,
.topbar-center {
  flex-wrap: nowrap !important;
}

.tb-item {
  white-space: nowrap;
}

/* progressive shrink */
@media (max-width: 1200px) {
  .topbar { padding: 8px 28px; gap: 14px; }
  .topbar-left { gap: 10px; }
  .tb-item { font-size: 14px; }
  .tb-sep { height: 14px; }
  .tb-social svg { width: 16.5px; height: 16.5px; }
  .tb-social { width: 34px; height: 34px; }
}

@media (max-width: 1100px) {
  .topbar { padding: 8px 24px; gap: 12px; }
  .topbar-left { gap: 8px; }
  .tb-item { font-size: 13.5px; }
  .tb-sep { height: 13px; }
  .tb-social svg { width: 16px; height: 16px; }
  .tb-social { width: 33px; height: 33px; }
}

@media (max-width: 1024px) {
  .topbar { padding: 8px 20px; gap: 10px; }
  .topbar-left { gap: 7px; }
  .tb-item { font-size: 13px; }
  .tb-sep { height: 12px; }
}

@media (max-width: 1024px) {
  .topbar { padding: 6px 18px; gap: 10px; }
  .topbar-left { gap: 6px; }
  .tb-item { font-size: 12.5px; }
  .tb-sep { height: 11px; }
  .tb-social svg { width: 15.5px; height: 15.5px; }
  .tb-social { width: 32px; height: 32px; }
}

@media (max-width: 900px) {
  .topbar { padding: 6px 16px; gap: 8px; }
  .topbar-left { gap: 6px; }
  .tb-item { font-size: 12px; }
  .tb-sep { height: 10px; }
}

@media (max-width: 840px) {
  .topbar { padding: 6px 14px; gap: 8px; }
  .topbar-left { gap: 5px; }
  .tb-item { font-size: 11.5px; }
  .tb-sep { height: 10px; }
}

@media (max-width: 810px) {
  .topbar { padding: 6px 12px; gap: 6px; }
  .topbar-left { gap: 5px; }
  .tb-item { font-size: 11px; }
  .tb-sep { height: 9px; }
  .tb-social svg { width: 15px; height: 15px; }
  .tb-social { width: 31px; height: 31px; }
}

@media (max-width: 780px) {
  .topbar { padding: 5px 10px; gap: 6px; }
  .topbar-left { gap: 4px; }
  .tb-item { font-size: 10.8px; }
  .tb-sep { height: 9px; }
  .tb-social svg { width: 14.5px; height: 14.5px; }
  .tb-social { width: 30px; height: 30px; }
}

/* hide at ≤768px */
@media (max-width: 768px) {
  .topbar { display: none !important; }
  .navbar { border-radius: 10px; }
}

@media (min-width: 769px) {
  .navbar { border-radius: 0 0 10px 10px; }
}

/* ascundem complet pe desktop */
@media (min-width: 993px) {
  .topbar-mobile { display: none !important; }
}
/* ======================================================================
   END: TOPBAR
   ====================================================================== */












   /* ======================================================================
   START: SEARCH SUGGESTIONS (modern UI)
   ====================================================================== */

/* ---------- Tokens (UI vars) ---------- */
:root {
  --fc-primary: #074441;
  --fc-bg: #ffffff;
  --fc-text: #111;
  --fc-muted: #6b7280;
  --fc-border: #e5e7eb;
  --fc-hover: #f5f7f7;
  --fc-shadow: 0 22px 45px rgba(0,0,0,.18), 0 2px 10px rgba(0,0,0,.06);
}

/* context pentru dropdown */
.search-bar {
  position: relative; /* deja ai, dar asigurăm contextul */
}

/* dropdown container */
.search-suggestions {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 8px);
  background: var(--fc-bg);
  border: 1px solid var(--fc-border);
  border-radius: 12px;
  box-shadow: var(--fc-shadow);
  max-height: 420px;
  overflow: auto;
  display: none; /* control din JS */
  z-index: 9999;
  padding: 6px;
  animation: fcDrop .14s ease-out;
  overscroll-behavior: contain;
}

/* bara “cap” opțională – lipește în JS dacă vrei */
.search-suggestions .ss-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 8px;
  border-bottom: 1px solid var(--fc-border);
  font: 600 12px/1.1 'Poppins', sans-serif;
  color: var(--fc-muted);
  letter-spacing: .02em;
}

/* item */
.suggestion-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .16s ease, transform .04s ease;
}

.suggestion-item:hover {
  background: var(--fc-hover);
}

.suggestion-item[aria-selected="true"] {
  background: #eef6f5;
  outline: 1.5px solid #d6ebe9;
}

/* thumb */
.sug-thumb {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #eef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--fc-primary);
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
}

.sug-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* text */
.sug-main {
  min-width: 0; /* truncate corect */
}

.sug-title {
  font: 600 14px/1.25 'Poppins', sans-serif;
  color: var(--fc-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sug-meta {
  margin-top: 4px;
  font: 12px/1.2 'Poppins', sans-serif;
  color: var(--fc-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sug-meta .pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--fc-border);
  margin-left: 6px;
  font-weight: 600;
}

.sug-go {
  font: 600 12px/1 'Poppins', sans-serif;
  color: var(--fc-primary);
  opacity: .9;
}

/* “fără rezultate” */
.suggestion-empty {
  padding: 18px 12px;
  text-align: center;
  color: var(--fc-muted);
  font: 500 13px/1.4 'Poppins', sans-serif;
}

/* scrollbar discret */
.search-suggestions::-webkit-scrollbar {
  width: 10px;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background: #dfe6e5;
  border-radius: 999px;
  border: 2px solid #fff;
}

/* mark + highlight */
.search-suggestions mark {
  background: #fef3c7;
  color: inherit;
  padding: 0 2px;
  border-radius: 4px;
}

/* mică animație de intrare */
@keyframes fcDrop {
  from { transform: translateY(-6px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* mobile – “lipim” de input pentru feeling nativ */
@media (max-width: 768px) {
  .search-suggestions {
    top: calc(100% + 6px);
    border-radius: 10px;
    max-height: 60vh;
  }
}

/* ======================================================================
   END: SEARCH SUGGESTIONS (modern UI)
   ====================================================================== */



/* ======================================================================
   START: CLS / STABILIZARE (layout stability)
   ====================================================================== */

/* fix cookie bar to avoid CLS */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

/* reserve hero space */
.slider {
  min-height: 360px;
}

.slide img {
  aspect-ratio: 1100/350;
  object-fit: cover;
}

/* stabilize product images */
.product-card img,
.recommended-product-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* reduce infinite animations */
.menu-label.hot {
  animation-iteration-count: 1;
}

/* ======================================================================
   END: CLS / STABILIZARE (layout stability)
   ====================================================================== */



/* ======================================================================
   START: FULL HD BANNER (News Banner)
   ====================================================================== */

.news-banner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 25px auto;
  border-radius: 20px;
  overflow: hidden;

  background-image:
    linear-gradient(90deg, rgba(5, 49, 47, 0.92) 0%, rgba(5, 49, 47, 0.75) 35%, rgba(5, 49, 47, 0.25) 70%),
    url("/MainPhotos/banner forestcom.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 520px;

  display: flex;
  align-items: center;
}

/* Bara verticală */
.news-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background: #0a5653;
}

/* TEXT */
.news-banner-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 40px 60px 40px 80px;
  max-width: 750px;
}

.news-kicker {
  font-size: 32px;
  line-height: 1.2;
}

.news-brand {
  font-size: 62px;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #ffffff;
}

.news-period {
  font-size: 22px;
  margin-bottom: 30px;
}

/* CTA BUTTON */
.news-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  font-size: 20px;
  border-radius: 999px;
  background: white;
  color: #0a5653;
  border: 2px solid #157f7b;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

.news-cta:hover {
  background: #0a5653;
  color: white;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .news-banner {
    height: 360px;
    border-radius: 16px;
  }

  .news-banner-content {
    padding: 30px 30px 30px 45px;
  }

  .news-kicker {
    font-size: 22px;
  }

  .news-brand {
    font-size: 40px;
  }

  .news-period {
    font-size: 16px;
  }

  .news-cta {
    padding: 10px 28px;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .news-banner {
    height: 300px;
    border-radius: 14px;
  }

  .news-banner-content {
    padding: 20px 20px 20px 30px;
  }

  .news-kicker {
    font-size: 18px;
  }

  .news-brand {
    font-size: 32px;
  }

  .news-period {
    font-size: 14px;
  }

  .news-cta {
    font-size: 14px;
    padding: 8px 22px;
  }
}

/* ===== Puncte de navigare (stil dash slider) ===== */
.news-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  margin-top: 0;
}

.news-dot {
  display: block;
  width: 45px;
  height: 15px;
  border-radius: 100px;
  background-color: transparent;
  border: 3px dashed #ffffff;
  opacity: 0.8;
  transition: 0.25s ease;
  cursor: pointer;
}

/* punct activ */
.news-dot.active {
  background-color: #0a5653;
  border-style: solid;
  border-color: #0a5653;
  opacity: 1;
}

/* hover */
.news-dot:not(.active):hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ======================================================================
   END: FULL HD BANNER (News Banner)
   ====================================================================== */



/* ======================================================================
   START: LAYOUT CONTAINER (menu + content)
   ====================================================================== */

.container {
  display: flex;
  padding: 20px;
  justify-content: space-between;
}

/* Desktop (>=770): layout meniu + slider */
@media (min-width: 770px) {
  .container {
    display: flex;
    align-items: center;      /* centrează meniul pe verticală cu slider-ul */
    justify-content: flex-start;
    gap: 4px;                 /* spațiu clar între meniu și slider */
  }

  .menu {
    width: 400px;             /* lățime fixă pentru meniu */
    flex-shrink: 1;           /* nu lăsa meniul să fie strivit */
  }

  .slider {
    flex: 1;                  /* ia tot spațiul rămas */
  }
}

/* Tablet (770–1024): foloseste doar meniul de mobil */
@media (max-width: 1024px) and (min-width: 770px) {
  .menu,
  .menu-desktop,
  .left-menu {
    display: none !important;
  }

  .menu-mobile,
  .mobile-menu {
    display: block !important;
  }

  .container {
    flex-direction: column !important;
    gap: 18px;
  }

  .slider {
    width: 100%;
    max-width: 100%;
  }
}

/* ======================================================================
   END: LAYOUT CONTAINER (menu + content)
   ====================================================================== */



/* ======================================================================
   START: MENIU LATERAL DESKTOP (default)
   ====================================================================== */

.menu {
  list-style-type: none;
  padding: 6px 0;
  margin: 0;
  width: 380px;

  background: #ffffff;
  border-radius: 0;
  border: 1px solid #e3e7ea;
  box-shadow: 0 10px 25px rgba(5, 49, 47, 0.10);
}

/* item principal */
.menu > li {
  position: relative;
  display: flex;
  align-items: center;

  background: transparent;
  padding: 8px 12px;
  cursor: pointer;

  border-bottom: 1px solid #eef0f2;
  height: auto;

  transition: background 0.18s ease, padding-left 0.18s ease;
}

.menu > li:last-child {
  border-bottom: none;
}

/* icon stânga */
.menu > li > img:first-child {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  margin-left: 6px;
  top: 0;
}

/* săgeata dreapta */
.menu .arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
}

/* hover */
.menu > li:hover {
  background: #f3f7f7;
  padding-left: 16px;
}

/* text */
.menu > li,
.menu > li a {
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
}

/* ======================================================================
   END: MENIU LATERAL DESKTOP (default)
   ====================================================================== */



/* ======================================================================
   START: SUBMENIU + SUB-SUBMENIU (default)
   ====================================================================== */

.submenu,
.sub-submenu {
  list-style-type: none;
  display: none;

  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 4px;

  width: 320px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e3e7ea;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
  padding: 6px 0;

  z-index: 30;
}

/* sub-submenu puțin mai larg */
.sub-submenu {
  width: 340px;
}

/* item submeniu */
.submenu li,
.sub-submenu li {
  position: relative;
  padding: 9px 14px;
  border-bottom: 1px solid #f0f2f4;
  cursor: pointer;

  background: transparent;
  transition: background 0.15s ease, padding-left 0.15s ease;
  font-size: 13px;
}

.submenu li:last-child,
.sub-submenu li:last-child {
  border-bottom: none;
}

.submenu li:hover,
.sub-submenu li:hover {
  background: #f3f7f7;
  padding-left: 18px;
}

/* link */
.submenu a,
.sub-submenu a {
  text-decoration: none;
  color: #222;
  display: block;
}

/* logică hover */
.menu > li:hover > .submenu {
  display: block;
}

.submenu > li:hover > .sub-submenu {
  display: block;
}

/* HOT label (desktop) */
.menu-label.hot {
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ff5e3a;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 999px;
}

/* ======================================================================
   END: SUBMENIU + SUB-SUBMENIU (default)
   ====================================================================== */



/* ======================================================================
   START: MENIU MOBILE (carduri simple)
   ====================================================================== */

.menu-mobile {
  margin-top: 10px;
  margin-bottom: 15px;
  padding: 0 10px;
}

.menu-mobile-item {
  border-radius: 12px;
  border: 1px solid #e3e7ea;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 8px;
}

/* titlu categorie */
.menu-mobile-title {
  padding: 13px 12px;
  background-color: #f8fafb;
  color: #111;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 500;
}

/* icon */
.menu-mobile-title img.mobile_incons {
  width: 24px;
  height: 24px;
}

/* arrow */
.menu-mobile-title .arrow-mobile {
  width: 14px;
  height: 14px;
  rotate: 90deg;
}

/* submeniuri */
.submenu-mobile,
.subsubmenu-mobile {
  display: none;
  background-color: #ffffff;
}

.submenu-mobile li,
.subsubmenu-mobile li {
  border: none;
}

.submenu-mobile a,
.subsubmenu-mobile a {
  text-decoration: none;
  padding: 15px;
  margin-left: -3px;
  color: #222;
  display: block;
  font-size: 13px;

  border-left: 3px solid transparent;
  border-bottom: 1px solid #F2F2F2;
  transition: background 0.15s ease, border-color 0.15s ease, padding-left 0.15s ease;
}

.submenu-mobile a:hover,
.subsubmenu-mobile a:hover {
  background: #f3f7f7;
  border-color: #05312F;
  padding-left: 20px;
}

/* Nivel 2 (subsubmenu) */
.subsubmenu-mobile a {
  text-align: center;
}

/* show/hide menu */
@media (max-width: 770px) {
  .menu { display: none; }
}

@media (min-width: 770px) {
  .menu-mobile { display: none; }
}

/* HOT pentru "Produse de sezon" pe mobile <=1024 */
@media (max-width: 1024px) {
  .menu-mobile li:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .menu-mobile li:first-child .hot-label {
    position: static;
    margin-left: auto;
    transform: none;
  }

  .menu-mobile li:first-child .arrow-icon {
    display: none;
  }
}

/* anume pentru eticheta hot pentru <768px */
@media (max-width: 768px) {
  .menu-mobile li:first-child {
    display: block;
  }
}

/* ======================================================================
   END: MENIU MOBILE (carduri simple)
   ====================================================================== */



/* ======================================================================
   START: REFINARE DESKTOP (>=1024px) - DEDUPLICATED FINAL STATE
   - Aici am unit toate blocurile tale repetate și am păstrat finalul.
   ====================================================================== */
@media (min-width: 1024px) {

  /* container meniu + slider (variantă PC) */
  .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  /* card meniu desktop (final) */
  .menu {
    width: 360px;
    margin-top: 15px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;

    background: #ffffff;
    border: 1px solid #e3e7ea;
    border-right: none;             /* se “lipește” de slider */
    border-top: none !important;
    box-shadow: 0 10px 24px rgba(5, 49, 47, 0.10);

    list-style-type: none;
  }

  /* item-uri (final: 56px + padding 18px) */
  .menu > li {
    box-sizing: border-box;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    height: 56px;
    padding: 0 42px 0 18px;

    background: transparent;
    border-bottom: 1px solid #eef0f2;
    cursor: pointer;
    transition: background 0.18s ease;
  }

  .menu > li:first-child {
    border-top: none !important;
  }

  .menu > li:last-child {
    border-bottom: none !important;
  }

  /* icon stânga (final) */
  .menu > li > img:first-child {
    width: 26px;
    height: 26px;
    margin-right: 12px;
    margin-left: 0;
    top: 0;
    position: relative;
  }

  /* săgeata (final) */
  .menu .arrow {
    position: absolute;
    top: 50%;
    right: 18px;              /* aliniat cu HOT la primul item */
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
  }

  /* text */
  .menu > li,
  .menu > li a {
    font-size: 14px;
    color: #111111;
    text-decoration: none;
    font-weight: 500;
  }

  /* hover */
  .menu > li:hover {
    background: #f5f8f8;
  }

  /* -------- Submenu / Sub-submenu (final state) -------- */
  .submenu,
  .sub-submenu {
    box-sizing: border-box;

    margin: 0 !important;         /* elimină margin implicit */
    margin-left: 0 !important;    /* elimină gap-ul dintre ele */
    left: 100%;
    top: 0 !important;

    padding-top: 0 !important;
    padding-bottom: 0 !important;

    border-top: none !important;
    border-radius: 0;
    background: #ffffff;
    border: 1px solid #e3e7ea;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  }

  /* dimensiuni finale (câștiga ultimul bloc) */
  .submenu {
    width: 350px !important;
  }

  .sub-submenu {
    width: 370px !important;
    margin-left: -1px; /* suprapunere bordere */
  }

  /* item-uri submenu (final: 56px, padding & font) */
  .submenu li,
  .sub-submenu li {
    box-sizing: border-box;

    height: 56px !important;
    display: flex;
    align-items: center;

    padding-left: 18px !important;
    padding-right: 44px !important;

    font-size: 15px !important;

    border: 1px solid #f0f2f4;
    background: transparent;
    transition: background 0.15s ease, padding-left 0.15s ease;
  }

  .submenu li:last-child,
  .sub-submenu li:last-child {
    border-bottom: none;
  }

  .submenu li:hover,
  .sub-submenu li:hover {
    background: #f5f7f7 !important;
    padding-left: 22px !important;
  }

  /* săgeți submenu (final) */
  .submenu li .arrow,
  .sub-submenu li .arrow {
    width: 14px !important;
    height: 14px !important;
    right: 18px !important;
  }

  /* suprapunere top la hover (final) */
  .menu > li:hover > .submenu,
  .submenu > li:hover > .sub-submenu {
    top: -1px !important;
  }

  /* -------- Fix special: primul item "Produse de sezon" -------- */
  .menu > li:first-child > a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    position: static;
    text-decoration: none;
    color: #111;
    font-weight: 500;
  }

  .menu > li:first-child > a > img {
    width: 26px;
    height: 26px;
    margin-right: 12px;
    margin-left: 0;
    top: 0;
    position: relative;
    flex-shrink: 0;
  }

  .menu > li:first-child .menu-label.hot {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    padding: 3px 10px;
    font-size: 11px;
    border-radius: 999px;
  }
}
/* ======================================================================
   END: REFINARE DESKTOP (>=1024px)
   ====================================================================== */
