/* css/cart.css (장바구니 섹션 전용 스타일) */

.cart-summary-box {
    border: 1px solid var(--color-border);
    padding: 25px;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mart {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed var(--color-border);
}

.mart:last-child {
    border-bottom: none;
}

.product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
    flex-shrink: 0;
    border: 1px solid #FFEDCC;
}

.mart span {
    flex-grow: 1;
    font-size: 1.05em;
    color: var(--color-text-dark);
}

.price {
    font-weight: bold;
    color: var(--color-primary);
    font-size: 1.15em;
    flex-shrink: 0;
}

.total {
    text-align: right;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.4em;
    color: var(--color-primary);
}

/* 반응형 (장바구니 섹션) */
@media screen and (max-width: 768px) {
    .mart span, .price {
        font-size: 1em;
    }
    .total {
        font-size: 1.2em;
    }
}