/* --- BOČNA KORPA (SIDE CART) --- */

/* Tamna pozadina (Overlay) */
.cart-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 2000;
    opacity: 0; visibility: hidden; transition: 0.3s;
    backdrop-filter: blur(4px);
}
.cart-overlay.active { opacity: 1; visibility: visible; }

/* Glavni panel */
.side-cart {
    position: fixed; top: 0; right: -450px; /* Sakriveno */
    width: 400px; height: 100vh;
    background: #0e2a47; /* Navy */
    color: #fff;
    z-index: 2001;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    display: flex; flex-direction: column;
    border-left: 1px solid #e6be6e;
}
.side-cart.active { right: 0; }

/* Header */
.side-cart-header {
    padding: 25px; border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(0,0,0,0.2);
}
.side-cart-header h3 {
    margin: 0; font-family: 'Cinzel', serif; color: #e6be6e;
}
.close-btn {
    background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
    line-height: 1; transition: 0.3s;
}
.close-btn:hover { color: #e6be6e; transform: rotate(90deg); }

/* Lista artikala */
.side-cart-items {
    flex: 1; overflow-y: auto; padding: 25px;
}

/* Jedan artikal */
.mini-item {
    display: flex; align-items: center; margin-bottom: 20px; padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mini-item img {
    width: 60px; height: 90px; object-fit: cover; border-radius: 3px;
    margin-right: 15px; border: 1px solid rgba(255,255,255,0.1);
}
.mini-info h4 {
    margin: 0 0 5px 0; font-size: 0.95rem; font-family: 'Montserrat', sans-serif;
}
.mini-price { font-size: 0.9rem; color: #ccc; }
.mini-remove {
    margin-left: auto; background: none; border: none; color: #ff6b6b; cursor: pointer;
    font-size: 1.2rem; transition: 0.3s;
}
.mini-remove:hover { transform: scale(1.2); color: red; }

/* Footer (Total i Dugme) */
.side-cart-footer {
    padding: 30px; background: #081d33; border-top: 1px solid rgba(255,255,255,0.1);
}
.mini-total {
    display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: bold; margin-bottom: 20px;
}
.mini-total span:last-child { color: #e6be6e; }

.btn-checkout-mini {
    display: block; width: 100%; padding: 15px; text-align: center;
    background: #e6be6e; color: #0e2a47; font-weight: bold; text-transform: uppercase;
    text-decoration: none; transition: 0.3s;
}
.btn-checkout-mini:hover { background: #fff; }

/* Responsive */
@media (max-width: 500px) {
    .side-cart { width: 100%; right: -100%; }
}