/* 1. ELIMINACIJA DUPLOG SHADOWA I FIX ZA MENI */
.elementor-widget-woocommerce-products, 
.elementor-widget-container, 
ul.products {
    overflow: visible !important;
    box-shadow: none !important;
    border: none !important;
}

ul.products {
    display: grid !important;
    padding-bottom: 40px !important; /* Prostor za jednu sjenu na dnu */
}

/* 2. KARTICA */
.acwg-product-card {
    list-style: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.acwg-card-inner {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 20px !important;
    border: 1px solid #eee !important; /* Border koji ostaje */
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important; /* Jedina sjena */
    text-align: center !important;
    overflow: visible !important; /* Da se sjena ne siječe */
}

.acwg-card-inner:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    z-index: 50 !important; /* Dovoljno da bude iznad, ali ispod menija */
}

/* 3. DUGMAD - POJAVLJUJU SE SAMO NA HOVER */
.acwg-image-wrapper {
    position: relative !important;
    margin-bottom: 15px !important;
}

.acwg-static-pill {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -40%) !important; /* Malo niže inicijalno */
    background: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    display: flex !important;
    gap: 12px !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1) !important;
    z-index: 100 !important;
    
    /* SKRIVENO DO HOVERA */
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.acwg-card-inner:hover .acwg-static-pill {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) !important;
}

/* 4. IKONE I HOVER (BIJELA IKONA) */
.acwg-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.acwg-icon-btn, .acwg-wishlist-trigger {
    color: #555 !important;
    cursor: pointer;
}

.acwg-icon-btn:hover .acwg-icon-wrapper, 
.acwg-wishlist-trigger:hover .acwg-icon-wrapper {
    background: #ff7a18 !important;
    color: #fff !important;
}

.acwg-icon-btn:hover i, 
.acwg-wishlist-trigger:hover i {
    color: #fff !important;
}

.acwg-icon-btn.main-btn {
    width: 42px !important;
    height: 42px !important;
    background: #ff7a18 !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 5. CIJENE I NASLOV */
.acwg-price-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.acwg-price-old {
    color: #9ca3af !important;
    text-decoration: line-through !important;
    font-size: 14px !important;
}

.acwg-price-new {
    color: #ff4d2d !important;
    font-weight: 900 !important;
    font-size: 22px !important;
}

.acwg-title a {
    color: #111827 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 15px !important;
}

.acwg-pdv-note {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 5px;
}

/* Čišćenje defaultnog smeća */
.acwg-card-inner .price, .acwg-card-inner .button, .acwg-card-inner .added_to_cart {
    display: none !important;
}