

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.vodkhaz-site {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

.vodkhaz-site *,
.vodkhaz-site *::before,
.vodkhaz-site *::after {
    box-sizing: border-box;
}

.vodkhaz-site .vodkhaz-svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.vodkhaz-site .vodkhaz-page-wrapper {
    position: relative;
    width: 100%;
    min-height: 150px;
}

.vodkhaz-site .vodkhaz-background {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Liquid glass – fără bordură la stânga */
.vodkhaz-site .liquidGlass-wrapper {
    position: relative;
    display: flex;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.286);
    border-right: 1px solid rgba(255, 255, 255, 0.286);
    border-bottom: 1px solid rgba(255, 255, 255, 0.286);
    border-left: none;
}

.vodkhaz-site .liquidGlass-effect {
    position: absolute;
    z-index: 0;
    inset: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    filter: url(#vodkhaz-glass-distortion);
    overflow: hidden;
    isolation: isolate;
}

.vodkhaz-site .liquidGlass-tint {
    z-index: 1;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.vodkhaz-site .liquidGlass-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.35);
}

.vodkhaz-site .liquidGlass-wrapper .logo { z-index: 3; }

.vodkhaz-site .liquidGlass-wrapper .nav-toggle-inner,
.vodkhaz-site .liquidGlass-wrapper .header-actions-inner {
    z-index: 3;
    position: relative;
}

/* Header */
.vodkhaz-site .vodkhaz-header {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: calc(100% - 24px);
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: default;
}

.vodkhaz-site .vodkhaz-header .liquidGlass-effect {
    border-radius: 50px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.vodkhaz-site .vodkhaz-header .liquidGlass-tint,
.vodkhaz-site .vodkhaz-header .liquidGlass-shine {
    border-radius: 50px;
}

.vodkhaz-site .vodkhaz-header-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Secțiuni 33% */
.vodkhaz-site .header-section {
    flex: 1 1 33.333%;
    min-width: 0;
    display: flex;
    align-items: center;
}

.vodkhaz-site .header-section--left {
    justify-content: flex-start;
}

.vodkhaz-site .header-section--center {
    justify-content: center;
}

.vodkhaz-site .header-section--right {
    justify-content: flex-end;
}

/* Buton hamburger */
.vodkhaz-site .nav-toggle {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 14px;
    border: none;
    background: transparent;
    border-radius: 16px;
    cursor: pointer;
}

.vodkhaz-site .nav-toggle .liquidGlass-effect,
.vodkhaz-site .nav-toggle .liquidGlass-tint,
.vodkhaz-site .nav-toggle .liquidGlass-shine {
    border-radius: 16px;
}

.vodkhaz-site .nav-toggle-inner {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vodkhaz-site .hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: linear-gradient(to right, #B8914F, #FBE385, #EBC079, #D7AE6A, #C49C54);
    border-radius: 1px;
}

/* Logo */
.vodkhaz-site .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vodkhaz-site .logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.vodkhaz-site .logo-img {
    display: block;
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Iconițe cart + profile */
.vodkhaz-site .header-actions {
    align-items: center;
    border-radius: 50px;
    cursor: default;
}

.vodkhaz-site .header-actions .liquidGlass-effect,
.vodkhaz-site .header-actions .liquidGlass-tint,
.vodkhaz-site .header-actions .liquidGlass-shine {
    border-radius: 50px;
}

.vodkhaz-site .header-actions-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vodkhaz-site .icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.vodkhaz-site .icon-btn svg {
    fill: url(#vodkhaz-goldGradient);
}

/* Overlay navbar – fundal întunecat când meniul e deschis */
.vodkhaz-site .vodkhaz-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vodkhaz-site.vodkhaz-nav-open .vodkhaz-nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ========== Navbar – panou full height, conținut space-between, fără scroll ========== */
.vodkhaz-site .vodkhaz-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 101;
    width: min(320px, 85vw);
    max-width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 24px 24px 0;
    overflow: hidden;
}

.vodkhaz-site .vodkhaz-nav .liquidGlass-effect,
.vodkhaz-site .vodkhaz-nav .liquidGlass-tint,
.vodkhaz-site .vodkhaz-nav .liquidGlass-shine {
    position: absolute;
    inset: 0;
    border-radius: 0 24px 24px 0;
}

.vodkhaz-site .vodkhaz-nav .liquidGlass-effect {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.vodkhaz-site.vodkhaz-nav-open .vodkhaz-nav {
    transform: translateX(0);
}

/* Inner: ocupă tot spațiul, conținut distribuit space-between pe înălțime */
.vodkhaz-site .vodkhaz-nav-inner {
    position: relative;
    z-index: 3;
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 80px 24px 32px;
    overflow: hidden;
}

/* Logo – bloc sus, flex-shrink 0 */
.vodkhaz-site .vodkhaz-nav-logo {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vodkhaz-site .vodkhaz-nav-logo-link {
    display: block;
    line-height: 0;
}

.vodkhaz-site .vodkhaz-nav-logo-img {
    display: block;
    max-width: 160px;
    width: auto;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Butoane meniu – Acasa, Despre Vodkhaz, Contact (bordură auriu, fundal glass) */
.vodkhaz-site .vodkhaz-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vodkhaz-site .vodkhaz-nav-menu li {
    margin: 0;
    padding: 0;
}

.vodkhaz-site .vodkhaz-nav-menu a {
    display: block;
    padding: 14px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    color: #EBC079;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 75, 0.5);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.vodkhaz-site .vodkhaz-nav-menu a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(235, 192, 121, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Butoane social – text „Social Media” (gradient gold) deasupra butoanelor, ridicate mai sus */
.vodkhaz-site .vodkhaz-nav-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 16px;
    margin-top: -28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
}

.vodkhaz-site .vodkhaz-nav-social-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
    order: -1;
    background: linear-gradient(to right, #B8914F, #FBE385, #EBC079, #D7AE6A, #C49C54);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.vodkhaz-site .vodkhaz-nav-social-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.vodkhaz-site .vodkhaz-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 75, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    color: inherit;
}

.vodkhaz-site .vodkhaz-social-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(235, 192, 121, 0.7);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.vodkhaz-site .vodkhaz-social-btn svg {
    fill: url(#vodkhaz-goldGradient);
}

/* ========== Pop-up coș (glass, desktop + mobil) ========== */
.vodkhaz-site .vodkhaz-cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vodkhaz-site.vodkhaz-cart-open .vodkhaz-cart-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Panou coș – liquid glass: borduri subtile pe toate laturile, straturi glass */
.vodkhaz-site .vodkhaz-cart-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    z-index: 201;
    width: min(420px, 92vw);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.286);
    border-right: 1px solid rgba(255, 255, 255, 0.286);
    border-bottom: 1px solid rgba(255, 255, 255, 0.286);
    border-left: 1px solid rgba(255, 255, 255, 0.286);
}

.vodkhaz-site .vodkhaz-cart-panel .liquidGlass-effect,
.vodkhaz-site .vodkhaz-cart-panel .liquidGlass-tint,
.vodkhaz-site .vodkhaz-cart-panel .liquidGlass-shine {
    border-radius: 24px;
    pointer-events: none;
}

.vodkhaz-site .vodkhaz-cart-panel .liquidGlass-effect {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    filter: url(#vodkhaz-glass-distortion);
}

.vodkhaz-site .vodkhaz-cart-panel .liquidGlass-shine {
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.35), inset -1px -1px 0 rgba(255, 255, 255, 0.08);
}

.vodkhaz-site.vodkhaz-cart-open .vodkhaz-cart-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.vodkhaz-site .vodkhaz-cart-panel-inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    min-height: 0;
    padding: 24px;
    pointer-events: auto;
}

.vodkhaz-site .vodkhaz-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.vodkhaz-site .vodkhaz-cart-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #EBC079;
    margin: 0;
}

.vodkhaz-site .vodkhaz-cart-close {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(212, 168, 75, 0.5);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #EBC079;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vodkhaz-site .vodkhaz-cart-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(235, 192, 121, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.vodkhaz-site .vodkhaz-cart-items {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 4px;
    display: block;
}

.vodkhaz-site .vodkhaz-cart-item {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 75, 0.35);
    border-radius: 14px;
    margin-bottom: 10px;
    align-items: center;
}

.vodkhaz-site .vodkhaz-cart-item:last-child {
    margin-bottom: 0;
}

.vodkhaz-site .vodkhaz-cart-item-img {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.vodkhaz-site .vodkhaz-cart-item-img img,
.vodkhaz-site .vodkhaz-cart-item-img .vodkhaz-cart-item-img-src,
.vodkhaz-site #vodkhaz-cart-fragment .vodkhaz-cart-item-img img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 64px !important;
    min-height: 64px !important;
    object-fit: cover !important;
    max-width: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.vodkhaz-site .vodkhaz-cart-item-info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.vodkhaz-site .vodkhaz-cart-item-name {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #EBC079 !important;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.vodkhaz-site .vodkhaz-cart-item-name a {
    display: inline !important;
    color: #EBC079 !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}

.vodkhaz-site .vodkhaz-cart-item-name a:hover {
    text-decoration: underline !important;
    color: #FBE385 !important;
}

/* Nume produs din Elementor (când conținutul vine de la Elementor) */
.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product-name,
.vodkhaz-site #vodkhaz-cart-fragment .product-name {
    display: block !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #EBC079 !important;
    margin: 0;
    padding: 0;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product-name a,
.vodkhaz-site #vodkhaz-cart-fragment .product-name a {
    color: inherit !important;
    text-decoration: none;
}

.vodkhaz-site .vodkhaz-cart-item-price {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.vodkhaz-site .vodkhaz-cart-item-qty {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.vodkhaz-site .vodkhaz-cart-footer {
    flex-shrink: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.vodkhaz-site .vodkhaz-cart-total {
    margin: 0 0 14px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.vodkhaz-site .vodkhaz-cart-total strong {
    color: #EBC079;
}

/* Buton Checkout (fallback fără WC) – același stil liquid glass + bordură aurie */
.vodkhaz-site .vodkhaz-cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #EBC079;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 75, 0.5);
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.vodkhaz-site .vodkhaz-cart-checkout-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(235, 192, 121, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.vodkhaz-site .vodkhaz-cart-empty {
    margin: 0;
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Când coșul e gol: ascunde „Vezi magazinul”, „Vezi coșul” și butoanele de acțiune */
.vodkhaz-site .vodkhaz-cart-fragment--empty + .vodkhaz-cart-view-shop,
.vodkhaz-site .vodkhaz-cart-fragment--empty + a[href*="shop"],
.vodkhaz-site .vodkhaz-cart-panel-inner .vodkhaz-cart-fragment--empty ~ .vodkhaz-cart-view-shop,
.vodkhaz-site .vodkhaz-cart-panel-inner .vodkhaz-cart-fragment--empty ~ a[href*="shop"] {
    display: none !important;
}
.vodkhaz-site .vodkhaz-cart-fragment--empty .vodkhaz-cart-view-cart,
.vodkhaz-site .vodkhaz-cart-fragment--empty .vodkhaz-cart-checkout-btn,
.vodkhaz-site .vodkhaz-cart-fragment--empty .vodkhaz-cart-total {
    display: none !important;
}

/* Când panoul conține mesajul „coș gol”, ascunde orice link către magazin (incl. din Elementor/WooCommerce) */
.vodkhaz-site .vodkhaz-cart-panel:has(.vodkhaz-cart-empty) a[href*="shop"],
.vodkhaz-site .vodkhaz-cart-panel:has(.vodkhaz-cart-empty) a[href*="magazin"],
.vodkhaz-site .vodkhaz-cart-panel:has(.vodkhaz-cart-fragment--empty) a[href*="shop"],
.vodkhaz-site .vodkhaz-cart-panel:has(.vodkhaz-cart-fragment--empty) a[href*="magazin"],
.vodkhaz-site .vodkhaz-cart-panel:has(.vodkhaz-cart-empty) a.wc-forward[href*="shop"],
.vodkhaz-site .vodkhaz-cart-panel:has(.vodkhaz-cart-empty) a.wc-forward[href*="magazin"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.vodkhaz-site .vodkhaz-cart-view-cart {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #EBC079;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 75, 0.5);
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.vodkhaz-site .vodkhaz-cart-view-cart:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(235, 192, 121, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.vodkhaz-site .vodkhaz-cart-item-remove {
    flex-shrink: 0;
    align-self: center;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid rgba(212, 168, 75, 0.4);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #EBC079;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1;
    transition: background 0.2s, border-color 0.2s;
}

.vodkhaz-site .vodkhaz-cart-item-remove:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(235, 192, 121, 0.7);
}

/* ========== Coș independent de Elementor – reset + stil Vodkhaz (backup pentru HTML Elementor) ========== */
/* Toate regulile de mai jos se aplică doar în panoul nostru (#vodkhaz-cart-fragment) ca să nu fie afectate de CSS-ul Elementor. */

/* Reset containere Elementor doar în panoul Vodkhaz */
.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__products,
.vodkhaz-site #vodkhaz-cart-fragment .woocommerce-mini-cart.cart,
.vodkhaz-site #vodkhaz-cart-fragment .woocommerce-cart-form__contents {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: block;
    box-sizing: border-box;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product,
.vodkhaz-site #vodkhaz-cart-fragment .woocommerce-cart-form__cart-item,
.vodkhaz-site #vodkhaz-cart-fragment .cart_item {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    padding: 14px;
    margin: 0 0 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 75, 0.35);
    border-radius: 14px;
    box-sizing: border-box;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product:last-child,
.vodkhaz-site #vodkhaz-cart-fragment .woocommerce-cart-form__cart-item:last-child,
.vodkhaz-site #vodkhaz-cart-fragment .cart_item:last-child {
    margin-bottom: 0;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product-image,
.vodkhaz-site #vodkhaz-cart-fragment .product-thumbnail {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product-image img,
.vodkhaz-site #vodkhaz-cart-fragment .product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product-name,
.vodkhaz-site #vodkhaz-cart-fragment .product-name {
    flex: 1;
    min-width: 0;
    font-weight: 600;
    font-size: 1rem;
    color: #EBC079;
    margin: 0;
    padding: 0;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product-name a,
.vodkhaz-site #vodkhaz-cart-fragment .product-name a {
    color: #EBC079;
    text-decoration: none;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product-name a:hover,
.vodkhaz-site #vodkhaz-cart-fragment .product-name a:hover {
    text-decoration: underline;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product-price,
.vodkhaz-site #vodkhaz-cart-fragment .product-price {
    width: 100%;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product-price .amount,
.vodkhaz-site #vodkhaz-cart-fragment .product-price .amount,
.vodkhaz-site #vodkhaz-cart-fragment .woocommerce-Price-amount {
    color: rgba(255, 255, 255, 0.95);
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product-remove,
.vodkhaz-site #vodkhaz-cart-fragment .product-remove {
    margin-left: auto;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product-remove a,
.vodkhaz-site #vodkhaz-cart-fragment .product-remove a,
.vodkhaz-site #vodkhaz-cart-fragment .remove_from_cart_button,
.vodkhaz-site #vodkhaz-cart-fragment .elementor_remove_from_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid rgba(212, 168, 75, 0.4);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #EBC079;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1;
    transition: background 0.2s, border-color 0.2s;
    box-sizing: border-box;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__product-remove a:hover,
.vodkhaz-site #vodkhaz-cart-fragment .product-remove a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(235, 192, 121, 0.7);
}

/* Total și butoane Elementor în panoul Vodkhaz */
.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__footer,
.vodkhaz-site #vodkhaz-cart-fragment .woocommerce-mini-cart__total {
    margin: 0 0 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__footer .amount,
.vodkhaz-site #vodkhaz-cart-fragment .woocommerce-mini-cart__total .amount {
    color: #EBC079;
    font-weight: 600;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__footer-buttons,
.vodkhaz-site #vodkhaz-cart-fragment .woocommerce-mini-cart__buttons {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__footer-buttons a,
.vodkhaz-site #vodkhaz-cart-fragment .woocommerce-mini-cart__buttons a {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #EBC079;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 75, 0.5);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.vodkhaz-site #vodkhaz-cart-fragment .elementor-menu-cart__footer-buttons a:hover,
.vodkhaz-site #vodkhaz-cart-fragment .woocommerce-mini-cart__buttons a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(235, 192, 121, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Asigură că fragmentul păstrează layout-ul */
.vodkhaz-site #vodkhaz-cart-fragment {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.vodkhaz-site #vodkhaz-cart-fragment .vodkhaz-cart-items {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

/* WooCommerce mini cart în pop-up (produse + preț real) – când NU e Elementor */
.vodkhaz-site .vodkhaz-cart-items .widget_shopping_cart_content {
    padding: 0;
}
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart .woocommerce-mini-cart-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 75, 0.35);
    border-radius: 14px;
    margin-bottom: 10px;
    align-items: center;
}
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart .woocommerce-mini-cart-item:last-child {
    margin-bottom: 0;
}
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart .woocommerce-mini-cart-item a {
    color: #EBC079;
    text-decoration: none;
    font-weight: 600;
}
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart .woocommerce-mini-cart-item a:hover {
    text-decoration: underline;
}
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart .woocommerce-mini-cart-item .quantity {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart .woocommerce-mini-cart-item .amount {
    color: rgba(255, 255, 255, 0.95);
}
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart__total {
    margin: 0 0 14px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart__total .amount {
    color: #EBC079;
    font-weight: 600;
}
/* Butoane VEZI COȘUL / FINALIZARE – liquid glass + bordură aurie (ca navbar) */
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart__buttons {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart__buttons a {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #EBC079;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 168, 75, 0.5);
    border-radius: 16px;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart__buttons a:last-child {
    margin-bottom: 0;
}
.vodkhaz-site .vodkhaz-cart-items .woocommerce-mini-cart__buttons a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(235, 192, 121, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
    .vodkhaz-site .vodkhaz-background {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    .vodkhaz-site .vodkhaz-header {
        padding: 10px 14px;
        width: calc(100% - 16px);
    }

    .vodkhaz-site .logo-img {
        height: 32px;
        max-width: 140px;
    }

    .vodkhaz-site .nav-toggle {
        padding: 8px 12px;
    }

    .vodkhaz-site .hamburger {
        width: 18px;
    }

    .vodkhaz-site .icon-btn {
        width: 44px;
        height: 44px;
    }

    .vodkhaz-site .icon-btn svg {
        width: 24px;
        height: 24px;
    }
}
