#popup-notification {
    position: fixed !important;
    top: 20px;
    right: 20px;
    z-index: 99999;
    width: auto;
    pointer-events: none; /* nu afectează headerul */
}

#popup-notification .nice-toast {
    pointer-events: auto; /* butoanele din interior merg normal */
}

#popup-notification {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nice-toast {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    padding: 14px 16px;
    margin: 10px;
    animation: fadeInCart 0.3s ease forwards;
    max-width: 340px;
}

.nice-toast img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-right: 12px;
    border-radius: 6px;
}

.nice-toast .title {
    font-weight: 600;
    margin-bottom: 3px;
}

#popup-notification {
    position: fixed !important;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.nice-toast {
    pointer-events: auto;
    display: flex;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    max-width: 340px;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

.nice-toast img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-right: 12px;
    border-radius: 6px;
}

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

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


.site-menu-wrapper, .site-header {
	border-bottom: 1px solid var(--color-ochre);
	background: var(--color-black);
}

.header-logo img {
	margin: auto;
}
/* === ROUND LUXURY ICONS — EL UNICO PREMIUM === */

/* Stilizare DOAR pe primul <a> din <li class="round"> */
.header-right li.round > a {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-black);
    border: 1px solid var(--color-ochre);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white) !important;
    text-decoration: none;
    transition: 0.25s ease;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.08);
}

/* Hover luxury */
.header-right li.round > a:hover {
    background: linear-gradient(135deg, var(--color-ochre), var(--color-ochre-80));
    border-color: var(--color-ochre-80);
    color: #fff !important;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

/* Iconuri din interior */
.header-right li.round > a i {
    font-size: 18px;
    transition: 0.2s ease;
}

/* COUNT — bulina perfect rotundă */
.header-right li.round > a .count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-ochre-80);
    color: #fff;
    padding: 0 !important;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    line-height: 20px !important;
    border-radius: 50% !important;
    border: 1px solid var(--color-ochre);
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.15);
}

/* NU ATINGEM link-urile din dropdown-ul mini-cart! */
#cart .mini-cart-wrapper a,
#cart .mini-cart-wrapper button,
#cart .mini-cart-wrapper .btn,
#cart .mini-cart-wrapper .mini-remove button {
    all: unset;
    color: inherit;
    background: none;
    box-shadow: none;
    border: none;
}



/* Limbile */
.header-right li.hidden-xs img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--color-ochre);
    object-fit: cover;
    transition: 0.25s ease;
}

.header-right li.hidden-xs img:hover {
    border-color: var(--color-ochre-80);
    transform: translateY(-3px);
    box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}

#cart .mini-cart-wrapper .mini-buttons a {
	text-align: center !important;
    background: var(--color-black) !important;
    color: var(--color-white) !important;
    display: block !important;
    padding: 10px 0 10px 0 !important;
}

#cart .mini-cart-wrapper .mini-buttons a:hover {
	color: var(--color-ochre) !important;
	cursor: pointer !important;
}

/* ALIGNMENT */
.header-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* SEARCH BTN HEADER */
.i-s {
	border-radius: 20px 0 0 20px !important;
	border-left: 1px solid var(--color-ochre) !important;
	border-top: 1px solid var(--color-ochre) !important;
	border-bottom: 1px solid var(--color-ochre) !important;
	background: var(--color-black);
    color: var(--color-ochre);
}

.b-s {
	border-radius: 0 20px 20px 0 !important;
	border-right: 1px solid var(--color-ochre) !important;
	border-top: 1px solid var(--color-ochre) !important;
	border-bottom: 1px solid var(--color-ochre) !important;
	background: var(--color-black) !important;
    color: var(--color-ochre) !important;
}

#live-search {
	border-radius: 20px;
}

#live-search li {
	border-radius: 10px;
}





/* PRODUCT */
.product-inner .product-design {
	display: none;
}

.product-inner {
	border-radius: 16px;
	border: 1px solid var(--color-ochre);
}

.product-inner .btn-cart-add i {
	display: none;
}

.product-inner .btn-cart-add {
	width: 90%;
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 16px;
    border: 1px solid var(--color-ochre);
    background: var(--color-black);
	color: white;
}

.product-inner .btn-cart-add:hover {
	background: var(--color-black);
	color: var(--color-ochre);
	box-shadow: 0px 0px 6px -2px #00000057;
}

.product-inner .name {
	border-bottom: 1px solid #c088392e;
    padding-bottom: 15px;
}

.product-inner .price {
	padding-top: 12px;
}

.product-inner .rating-buttons {
    position: absolute;
    bottom: 184px;
    left: 0px;
    right: 0px;
	background:red;
    display: flex;
    align-items: center;
    pointer-events: none; /* important! */
	gap: 10px;
    justify-content: center;
	background: rgba(192, 136, 57, 0.18);
	z-index:9;
}

.product-inner .rating-buttons a {
    pointer-events: auto;
}

.product-inner .rating-buttons .btn-small-product {
    background: none;
	border: none;
	border-radius: 0;
    width: 38px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-ochre-80) !important;
    transition: 0.25s ease;
}

.product-inner .rating-buttons .btn-small-product i:hover {
	color: var(--color-ochre);
}



.product-inner .rating-buttons a:nth-child(2) {
    order: 2; /* compare */
}
.product-inner .rating-buttons a:nth-child(3) {
    order: 1; /* wishlist */
}



/* MENU DROPDOWN HOVERS AND COLORS */
/* === EL UNICO DROPDOWN – DARK LUXURY === */
/* === EL UNICO LUXURY DROPDOWN === */
.site-menu .dropdown-menu,
.elunico-dropdown {
    background: #000 !important; /* negru complet */
    border: 1px solid var(--color-ochre-80);
    border-radius: 6px;
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    margin-top: 0;
}

/* LINKURI DROPDOWN */
.site-menu .dropdown-menu > li > a,
.elunico-dropdown > ul > li > a {
    color: #fff !important;
    padding: 10px 18px;
    font-family: var(--font-inter);
    font-size: 15px;
    display: block;
    text-decoration: none;
    transition: 0.25s ease;
}

/* === HOVER TEXT OCHRE (background rămâne negru) === */
.site-menu .dropdown-menu > li > a:hover,
.elunico-dropdown > ul > li > a:hover {
    color: var(--color-ochre) !important;
    background: #000 !important; /* rămâne negru curat */
}



/* SUB-DROPDOWN */
.elunico-dropdown .dropdown-menu {
    background: #000 !important;
    border: 1px solid var(--color-ochre);
}

/* TEXT MENIU PRINCIPAL */
.site-menu .navbar-nav > li > a {
    font-weight: 600;
    color: #fff !important;
    transition: 0.25s ease;
}

.site-menu .navbar-nav > li > a:hover {
    color: var(--color-white) !important;
    background: var(--color-ochre-80) !important;
}

.site-menu .navbar-nav > li:hover > a {
    background: var(--color-ochre-80) !important;
    color: var(--color-white) !important;
}




/* FOOTER */
.site-footer {
	background: var(--color-black);
}

.info-block {
	border-top: 1px solid var(--color-ochre) !important;
	border-bottom: 1px solid var(--color-ochre) !important;
	color: var(--color-ochre);
}



/* === STICKY MENU === */
.site-menu-wrapper.sticky-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    background: var(--color-black) !important;
    border-bottom: 1px solid var(--color-ochre) !important;
    z-index: 99998 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* Pe homepage, suprascrie transparența */
.hero-home-active .site-menu-wrapper.sticky-menu {
    background: var(--color-black) !important;
    border-bottom: 1px solid var(--color-ochre) !important;
}

/* OFFSET body */
.sticky-offset {
    margin-top: 60px; /* dacă meniul e mai înalt, modifici valoarea */
}

/* === Hover dropdown DOAR pe desktop === */
@media (min-width: 992px) {
    .site-menu .dropdown:hover > .dropdown-menu {
        display: block !important;
    }
}

/* Pe mobil (sub 992px) — hover dezactivat complet */
@media (max-width: 991px) {
    .site-menu .dropdown-menu {
        display: none !important;
    }
}



/* === HEADER TRANSPARENT DOAR CÂND E ACTIV HERO === */
.hero-home-active .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.1) !important;
    border-bottom: 1px solid rgba(192, 136, 57, 0.2);
    z-index: 9999;
}

/* Iconițe pe fundal de HERO */
.hero-home-active .header-right li.round a {
    background: rgba(0,0,0,0.15) !important;
    border-color: var(--color-ochre) !important;
}
.hero-home-active .header-right li.round a:hover {
    background: var(--color-ochre) !important;
}

/* Logo clar peste video */
.hero-home-active .header-logo img {
    filter: drop-shadow(0 0 6px rgba(0,0,0,0));
}

/* Meniu sub header — tot transparent */
.hero-home-active .site-menu-wrapper {
    background: rgba(0,0,0,0.1) !important;
    border-bottom: 1px solid rgba(192, 136, 57, 0.2);
    position: absolute;
    top: 100px;
    width: 100%;
    z-index: 9998;
}

.b-s, .i-s {
	background: rgba(0,0,0,0.15) !important;
}


/* MINI CART – fix pentru a nu intra sub meniu */
.mini-cart-wrapper {
    position: absolute !important;
    z-index: 99999 !important;
}

/* ==== HERO SLIDER (DESKTOP) ==== */

#elunico-hero {
    position: relative;
    width: 100%;
    height: 680px; 
    overflow: hidden;
}

/* slide container */
.hero-slide {
    position: relative;
    height: 680px;
    color: #fff;
}

/* background IMAGE */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}
 
/* background VIDEO */
.hero-bg-video {
    position: absolute;
    top: 50%; 
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
}

/* DESKTOP */
#elunico-hero,
.hero-slide {
    height: 680px;
}

/* MOBILE FULL SCREEN HERO */
@media (max-width: 767px) {

    #elunico-hero,
    .hero-slide {
        height: 100vh !important;
        min-height: 100vh !important;
    }

    .hero-bg-image,
    .hero-bg-video {
        height: 100vh !important;
        width: 100%;
        object-fit: cover !important;
        object-position: center center;
    }

    .hero-content {
        padding-top: 45vh !important; /* Center text vertical */
        text-align: center;
    }

    .hero-title {
        font-size: 34px !important;
    }

    .hero-desc {
        font-size: 16px !important;
    }
	
	.hero-home-active .site-menu-wrapper {
		top: 75px;
	}
	
	.site-menu .info-menu {
		background: var(--color-black);
	}
}

.site-menu-wrapper {
	box-shadow: none;
}

@media (max-width: 991px) {

  .site-menu .dropdown-menu {
      display: none !important;
      position: static !important;
  }

  .site-menu .dropdown.open > .dropdown-menu {
      display: block !important;
  }

  .btn-mobile-dropdown {
      position: absolute;
      right: 10px;
      top: 9px;
      background: none;
      border: none;
      color: var(--color-ochre);
      font-size: 18px;
  }
}

@media (max-width: 767px) {

  body {
      padding-top: 120px; /* înălțimea headerului pe mobil */
  }

  .hero-home-active body {
      padding-top: 120px; /* dacă ai hero transparent */
  }

}

/* ===== HEADER TRANSPARENT + MINI-CART PESTE MENIU ===== */

.hero-home-active .site-header {
    position: absolute !important;
    z-index: 10000 !important;
    background: rgba(0,0,0,0.1) !important;
}

/* meniul secundar sub header */
.hero-home-active .site-menu-wrapper {
    z-index: 9000 !important;
}

/* mini-cart peste absolut tot */
#cart {
    position: relative;
    z-index: 11000;
}

#cart .mini-cart-wrapper {
    position: absolute !important;
    z-index: 12000 !important;
}

/* asigură că nu e tăiat */
.site-header,
.site-menu-wrapper {
    overflow: visible !important;
}

.hero-home-active .header-right li.round .mini-name a, .hero-home-active .header-right li.round .mini-name a:hover {
	background: none !important;
}


.product-info .image .gallery-item img {
	max-height: 450px;
}

.product-info .image {
	border: 1px solid #c0883926;
	border-radius: 10px;
}

.product-info .image {
    overflow: hidden;
    border-radius: 12px;
}

/* doar img-urile DIRECT din .image, nu cele din .ico */
.product-info .image > a > img {
    transition: transform 0.35s ease;
}

/* hover doar pe poza mare */
.product-info .image:hover > a > img {
    transform: scale(1.08);
}

.product-info .price {
	margin-bottom: 0px;
}

.breadcrumb {
	background: none;
	border: none;
	text-align: center;
	margin-top: 10px;
}

.product-tabs {
	list-style: none;
	padding: 0;
	margin: 0 0 25px;
	display: flex;
	justify-content: center;   /* ✅ CENTRARE PE ORIZONTALĂ */
	align-items: center;
	gap: 40px;
	border-top: 1px solid var(--color-ochre);
	border-bottom: 1px solid var(--color-ochre);
}

.product-inner .image {
    overflow: hidden;              /* ascunde marginile la zoom */
    border-radius: 12px;           /* respectă cardul */
}

.product-inner .image img {
    transition: transform 0.35s ease;
}

.product-inner:hover .image img {
    transform: scale(1.05);        /* zoom subtil */
}

.header-right>li {
	padding: .8rem .3rem;
}

.product-info .price {
	border-bottom: 0;
}

.reducere-procent {
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 13px;
    text-align: center;
    background-color: var(--color-ochre-60);
    color: white;
    padding: 5px 15px 5px 15px;
    border-radius: 5px;
	transform: rotate(0deg);
	width: auto;
}

.attribute thead td, .attribute thead tr td:first-child {
	background-color: var(--color-ochre);
    color: white;
    border-color: var(--color-ochre);
}

.attribute td {
	border-color: var(--color-ochre);
}

.breadcrumb {
	box-shadow: none;
	-webkit-box-shadow: none;
}


/* ===== BADGES CONTAINER ===== */
.product-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ===== BADGE DE BAZĂ ===== */
.badge {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: var(--color-black);
    border: 1px solid var(--color-ochre);
    line-height: 1;
    white-space: nowrap;
}

/* ===== TIPURI ===== */

.badge.discount {
    background: var(--color-ochre-60);
    border-color: var(--color-ochre-60);
	color: white;
}

.badge.best {
    background: var(--color-ochre-60);
	border-color: var(--color-ochre-60);
	color: white;
}

.badge.new {
    background: var(--color-ochre-60);
	border-color: var(--color-ochre-60);
	color: white;
}

/* ==== TITLURI SECTIUNI – EL UNICO STYLE ==== */
.elunico-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    margin: 40px 0 20px;
    position: relative;
}

/* === BARA OCHRE DEDESUBT (CA PE HOMEPAGE) === */
.elunico-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-ochre), transparent);
    transform: translateX(-50%);
}

#column-left {
	padding-top: 10px;
}


.mfilter-heading {
	background: none;
}

.mfilter-heading-text > span, .mfilter-heading .mfilter-head-icon {
	color: var(--color-black);
}

.mfilter-heading {
	border-top: none;
	border-bottom: 1px solid var(--color-ochre);
}

.mfilter-opts-container {
    border-top-color: var(--color-ochre) !important;
}

/* ICON FONT AWESOME PENTRU MEGAFILTER */

.mfilter-heading .mfilter-head-icon:before {
    font-family: FontAwesome;
    content: "\f067"; /* plus */
    font-size: 14px;
    color: var(--color-black);
    transition: 0.25s ease;
}

/* Când este DESCHIS -> icon MINUS */
.mfilter-heading:not(.mfilter-collapsed) .mfilter-head-icon:before {
    content: "\f068"; /* minus */
}

/* Aliniere icon */
.mfilter-heading-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* mic hover */
.mfilter-heading:hover .mfilter-head-icon:before {
    color: #fff;
}

/* --- OPRIM ICONUL ORIGINAL MEGAFILTER COMPLET --- */
.mfilter-head-icon {
    background: none !important;
}

.mfilter-head-icon:after,
.mfilter-head-icon span,
.mfilter-head-icon svg {
    display: none !important;
}

/* SCOATE SĂGEATA DIN TEMĂ */
.mfilter-heading .mfilter-head-icon {
    width: auto;
    height: auto;
}

/* DEZACTIVĂ ORICE TRANZITIE VECHE */
.mfilter-head-icon,
.mfilter-heading-content {
    transition: none !important;
}

/* -------- ICON FONT AWESOME CURAT -------- */

/* ICON DEFAULT (+) */
.mfilter-heading .mfilter-head-icon:before {
    font-family: FontAwesome !important;
    content: "\f067"; /* PLUS */
    font-size: 15px;
    color: var(--color-black);
    display: inline-block;
    transition: color 0.2s ease;
}

/* DESCHIS = MINUS */
.mfilter-heading:not(.mfilter-collapsed) .mfilter-head-icon:before {
    content: "\f068"; /* MINUS */
}

/* ABDICA HOVER TEMA */
.mfilter-heading:hover .mfilter-head-icon:before {
    color: var(--color-black);
}

/* ALINIERE PERFECTĂ */
.mfilter-heading-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mfilter-heading:not(.mfilter-collapsed) .mfilter-head-icon {
    transform: rotate(180deg);
}

.mfilter-head-icon {
    all: unset !important;
    display: inline-block !important;
    font-family: FontAwesome !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    transform: none !important;
    transition: none !important;
    background: none !important;
}

/* ICON + */
.mfilter-heading .mfilter-head-icon:before {
    content: "\f067" !important; /* plus */
    color: var(--color-black);
    font-size: 15px;
    display: inline-block;
    transform: none !important;
}

/* ICON − */
.mfilter-heading:not(.mfilter-collapsed) .mfilter-head-icon:before {
    content: "\f068" !important; /* minus */
}

/* fără efecte vechi */
.mfilter-head-icon::after {
    content: none !important;
}

/* ALINIERE */
.mfilter-heading-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ===== CHECKBOX STYLE PREMIUM MIC ===== */

/* dimensiune aproape identică cu original */
.mfilter-option input[type="checkbox"],
.mfilter-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-ochre);
    cursor: pointer;
}

/* mic spațiu între checkbox și text */
.mfilter-col-input {
    padding-right: 6px;
}

/* îmbunătățim zona de click fără mărire vizuală */
.mfilter-option label {
    cursor: pointer;
}

/* hover fin */
.mfilter-option:hover input[type="checkbox"],
.mfilter-option:hover input[type="radio"] {
    filter: brightness(1.1);
}

/* opțional: când e selectat */
.mfilter-option input:checked {
    box-shadow: 0 0 0 1px rgba(211,156,44,0.6);
}

/* opțional: focus (click / tastatură) */
.mfilter-option input:focus {
    outline: none;
    box-shadow: 0 0 0 1px rgba(211,156,44,0.8);
}

.mfilter-slider-slider .ui-slider-range, #mfilter-price-slider .ui-slider-range {
	background: var(--color-black) !important;
}

#mfilter-opts-price-min, #mfilter-opts-price-max {
	border-radius: 7px;
	width: 65px;
}

.mfilter-opts-container {
	border-top-color: var(--color-black);
}

/* ASCUNDEM ICONIȚELE BY DEFAULT */
.product-inner .rating-buttons {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: all 0.25s ease;
}

/* LE ARĂTĂM DOAR LA HOVER PE CARD */
.product-inner:hover .rating-buttons {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 767px) {
	.product-inner:hover .rating-buttons {
		opacity: 0;
	}
}


#search #live-search {
	background: var(--color-black);
}

#search #live-search ul li {
	background: var(--color-black);
} 

#search #live-search ul li:nth-child(even) {
	background: var(--color-black);
}

#search #live-search ul li .product-image img {
	border-radius: 5px;
}

#search #live-search ul li a {
	color: white;
}

#search #live-search ul li .product-name p {
	color: gray;
}

#search #live-search ul li .product-price .price {
	color: white;
}

#search #live-search ul li:hover {
	background: var(--color-ochre-80) !important;
}

.category-description.closed .hid-btn button {
	border-radius: 10px;
}


@media (max-width: 767px) {
    .btn.btn-cart-add {
        padding: 12px 12px !important;
    }
	
	.product-filter select.form-control {
		width: 100%;
	}
	
	.badge {
		font-size: 11px;
		padding: 3px 10px 3px 10px;
		right: 10px;
	}
}

@media (min-width: 768px) and (max-width: 1300px) {
	.product-grid .product-inner .price .price-new {
		font-size: 2.0rem;
	}
	.product-grid .product-inner .price .price-old {
		font-size: 1.6rem;
	}
}

#major img {
	max-width: 250px;
}

.elunico-hero-single {
	height: 1000px !important;
}

@media (max-width: 767px) {
    .product-inner .btn-cart-add {
        border: none;
    }
}