/* --- LAYOUT --- */
.cart-page-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

.cart-items-col { flex: 2; } /* Lijeva strana (šira) */
.cart-summary-col { flex: 1; } /* Desna strana (uža) */

.page-title {
    font-family: 'Cinzel', serif;
    color: #0e2a47;
    border-bottom: 2px solid #e6be6e;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* --- TABELA ARTIKALA --- */
.cart-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: 0.3s;
    border-left: 5px solid transparent;
}

.cart-item:hover {
    border-left: 5px solid #e6be6e;
    transform: translateX(5px);
}

.item-img {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 20px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.item-details { flex: 1; }

.item-title {
    font-family: 'Cinzel', serif;
    color: #0e2a47;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.item-price { color: #b08d55; font-weight: bold; }

/* KONTROLE KOLIČINE */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    background: #f4f4f4;
    border: 1px solid #ddd;
    width: 30px; height: 30px;
    cursor: pointer;
    font-weight: bold;
    color: #0e2a47;
    transition: 0.2s;
}

.qty-btn:hover { background: #e6be6e; border-color: #e6be6e; }

.qty-display { font-weight: bold; width: 30px; text-align: center; }

/* DUGME BRISANJE */
.remove-btn {
    background: none; border: none;
    color: #ff6b6b; cursor: pointer;
    font-size: 1.2rem; margin-left: 20px;
    transition: 0.3s;
}
.remove-btn:hover { color: red; transform: scale(1.2); }

/* --- DESNA STRANA (SUMMARY) --- */
.cart-summary-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #0e2a47;
    position: sticky;
    top: 100px; /* Da prati skrolanje */
}

.summary-row {
    display: flex; justify-content: space-between;
    margin-bottom: 15px; font-size: 0.95rem; color: #555;
}

.total-row {
    display: flex; justify-content: space-between;
    margin-top: 20px; padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 1.3rem; font-weight: bold; color: #0e2a47;
}

/* FORMA ZA NARUDŽBU */
.checkout-form { margin-top: 30px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 0.9rem; margin-bottom: 5px; color: #333; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px;
    border: 1px solid #ddd; border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}
.form-group input:focus { border-color: #e6be6e; outline: none; }

.btn-checkout {
    width: 100%; padding: 15px;
    background: #0e2a47; color: #e6be6e;
    border: none; font-weight: bold; text-transform: uppercase;
    cursor: pointer; transition: 0.3s; margin-top: 20px;
    letter-spacing: 1px;
}
.btn-checkout:hover { background: #e6be6e; color: #0e2a47; }

/* PRAZNA KORPA */
.empty-cart-msg {
    text-align: center; padding: 50px;
    font-size: 1.2rem; color: #777;
}

@media (max-width: 900px) {
    .cart-page-container { flex-direction: column; }
    .cart-summary-box { position: static; }
}