.cart-item {
display: flex;
align-items: center;
gap: 1rem;
background: #fff;
border-radius: 14px;
box-shadow: 0 2px 12px rgba(255,153,51,0.08), 0 1px 2px rgba(0,0,0,0.04);
margin-bottom: 1.2rem;
padding: 1rem 1rem 1rem 0.7rem;
position: relative;
transition: box-shadow 0.2s;
}
.cart-item:hover {
box-shadow: 0 4px 24px rgba(255,153,51,0.18), 0 2px 4px rgba(0,0,0,0.08);
}
.cart-item-image {
flex: 0 0 60px;
width: 60px;
height: 60px;
border-radius: 10px;
overflow: hidden;
background: #f8f9fa;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.cart-product-image {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 10px;
}
.cart-item-details {
flex: 1;
display: flex;
flex-direction: column;
gap: 0.3rem;
}
.cart-item-title {
font-size: 1.1rem;
font-weight: 600;
color: #222;
margin-bottom: 0.2rem;
}
.cart-item-price {
font-size: 0.95rem;
color: #FF6600;
font-weight: 500;
margin-bottom: 0.2rem;
}
.item-total {
color: #333;
font-size: 0.9rem;
font-weight: 400;
}
.quantity-controls {
display: flex;
align-items: center;
gap: 0.5rem;
margin-top: 0.2rem;
}
.quantity-btn {
background: #FF9933;
color: #fff;
border: none;
border-radius: 6px;
padding: 0.3rem 0.7rem;
font-size: 1rem;
cursor: pointer;
transition: background 0.2s;
}
.quantity-btn:hover {
background: #FF6600;
}
.quantity {
font-size: 1rem;
font-weight: 600;
color: #222;
min-width: 24px;
text-align: center;
}
.remove-item {
background: none;
border: none;
color: #d9534f;
font-size: 1.2rem;
margin-left: 0.5rem;
cursor: pointer;
transition: color 0.2s;
pointer-events: auto;
}
.remove-item i {
cursor: pointer;
pointer-events: auto;
}
.remove-item:hover,
.remove-item:hover i {
color: #b52a1a;
}
.cart-summary {
background: #fff7f0;
border-radius: 14px;
box-shadow: 0 2px 12px rgba(255,153,51,0.08);
padding: 1.2rem 1rem;
margin-top: 1.5rem;
}
.summary-line {
display: flex;
justify-content: space-between;
font-size: 1rem;
font-weight: 500;
margin-bottom: 0.7rem;
}
.summary-line.total {
font-size: 1.1rem;
color: #FF6600;
font-weight: 700;
}
.cart-actions {
display: flex;
gap: 1rem;
margin-top: 1.2rem;
justify-content: center;
}
.view-cart-btn, .checkout-btn {
padding: 0.7rem 1.5rem;
border-radius: 8px;
font-weight: 600;
font-size: 1rem;
border: none;
transition: background 0.2s, color 0.2s;
text-decoration: none;
display: inline-block;
}
.view-cart-btn {
background: #fff;
color: #FF6600;
border: 2px solid #FF6600;
}
.view-cart-btn:hover {
background: #FF6600;
color: #fff;
}
.checkout-btn {
background: linear-gradient(90deg, #FF9933 0%, #FF6600 100%);
color: #fff;
border: none;
box-shadow: 0 2px 8px rgba(255,153,51,0.12);
}
.checkout-btn:hover {
background: linear-gradient(90deg, #FF6600 0%, #FF9933 100%);
color: #fff;
}
.empty-cart {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
min-height: 320px;
background: #fff7f0;
border-radius: 14px;
box-shadow: 0 2px 12px rgba(255,153,51,0.08);
margin-top: 2rem;
}
.empty-cart i {
font-size: 3rem;
color: #FF6600;
margin-bottom: 1rem;
}
.empty-cart p {
font-size: 1.25rem;
color: #555;
font-weight: 500;
}
