/* Cart page */
.cart-page {
    padding: 60px 0 110px;
}

/* Empty state */
.cart-empty {
    text-align: center;
    padding: 90px 20px;
}
.cart-empty i {
    font-size: 56px;
    color: #f9b842;
    margin-bottom: 22px;
}
.cart-empty h3 {
    font-family: "Cinzel", serif;
    font-size: 26px;
    color: #0e1927;
    margin-bottom: 12px;
}
.cart-empty p {
    color: #666;
    max-width: 420px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Items column */
.cart-items-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}
.cart-items-head h3 {
    font-family: "Cinzel", serif;
    font-size: 22px;
    color: #0e1927;
    margin: 0;
}
.cart-items-head span {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: #999;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #eee;
}
.cart-item-image {
    display: block;
    width: 110px;
    height: 110px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cart-item-cate {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #f9b842;
}
.cart-item-name {
    display: block;
    font-family: "Cinzel", serif;
    font-size: 17px;
    color: #0e1927;
    text-decoration: none;
    margin: 6px 0 10px;
    transition: color .2s ease;
}
.cart-item-name:hover {
    color: #f9b842;
}
.cart-item-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    font-family: "DM Sans", sans-serif;
}
.cart-item-price .price-now {
    font-size: 16px;
    font-weight: 700;
    color: #0e1927;
}
.cart-item-price .price-was {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}
.cart-item-price .price-off {
    font-size: 12px;
    font-weight: 600;
    color: #2f9e44;
}
.cart-item-price small {
    font-size: 12px;
    color: #999;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
}
.cart-item-line-total {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0e1927;
}
.cart-item-remove {
    border: none;
    background: none;
    color: #bbb;
    font-size: 15px;
    cursor: pointer;
    transition: color .2s ease;
}
.cart-item-remove:hover {
    color: #d64545;
}

.cart-continue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #0e1927;
    text-decoration: none;
}
.cart-continue-link i {
    color: #f9b842;
}
.cart-continue-link:hover {
    color: #f9b842;
}

/* Summary column */
.cart-summary {
    position: sticky;
    top: 110px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
}
.cart-summary h4 {
    font-family: "Cinzel", serif;
    font-size: 19px;
    color: #0e1927;
    margin: 0 0 18px;
}
.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #444;
}
.cart-summary-row .savings {
    color: #2f9e44;
    font-weight: 600;
}
.cart-summary-row.muted {
    color: #999;
    font-size: 13px;
}
.cart-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    margin: 8px 0 4px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0e1927;
}
.cart-checkout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.cart-secure-note {
    text-align: center;
    margin: 14px 0 0;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #999;
}
.cart-secure-note i {
    color: #f9b842;
    margin-right: 4px;
}

@media (max-width: 991px) {
    .cart-summary {
        position: static;
        margin-top: 40px;
    }
}
@media (max-width: 575px) {
    .cart-item {
        flex-wrap: wrap;
    }
    .cart-item-controls {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
}
