.cart-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2000; justify-content: flex-end; backdrop-filter: blur(5px); }
.cart-modal.active { display: flex; }
.cart-sidebar { width: 100%; max-width: 450px; height: 100%; background: var(--white); padding: 2rem; overflow-y: auto; transform: translateX(100%); transition: transform 0.4s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.1); }
.cart-modal.active .cart-sidebar { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 2px solid var(--pink-light); }
.cart-header h2 { color: var(--purple-dark); font-size: 1.5rem; }
.close-cart { background: none; border: none; font-size: 1.5rem; color: var(--purple-text); cursor: pointer; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.close-cart:hover { background: var(--pink-light); color: var(--purple-dark); }
.cart-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.cart-item { display: flex; gap: 1rem; padding: 1rem; background: var(--pink-bg); border-radius: 16px; align-items: center; }
.cart-item-img { width: 70px; height: 70px; background: linear-gradient(135deg, var(--pink-light), var(--purple-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--purple-dark); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { color: var(--purple-dark); font-size: 1rem; margin-bottom: 0.3rem; }
.cart-item-info p { color: var(--purple-btn); font-weight: 700; font-size: 0.9rem; }
.remove-item { background: none; border: none; color: #e74c3c; cursor: pointer; font-size: 1.2rem; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.remove-item:hover { background: #ffeaea; }
.cart-total { background: linear-gradient(135deg, var(--purple-dark), var(--purple-btn)); color: var(--white); padding: 1.5rem; border-radius: 16px; text-align: center; margin-bottom: 1.5rem; }
.cart-total h3 { font-size: 1.2rem; margin-bottom: 0.5rem; opacity: 0.9; }
.cart-total .total-price { font-size: 2rem; font-weight: 800; }
.checkout-btn { width: 100%; background: linear-gradient(135deg, var(--purple-btn), var(--purple-dark)); color: var(--white); border: none; padding: 1.2rem; border-radius: 50px; font-family: inherit; font-weight: 700; font-size: 1.1rem; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(186, 85, 211, 0.3); }
.checkout-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(186, 85, 211, 0.4); }
.empty-cart { text-align: center; padding: 3rem 1rem; color: var(--purple-text); opacity: 0.6; }
.empty-cart i { font-size: 4rem; margin-bottom: 1rem; display: block; }