.roi-cart-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.roi-cart-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.roi-cart-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #333;
    font-size: 14px;
}

.roi-notice-icon {
    color: #ff6b35;
    font-weight: bold;
}

.roi-delivery-notice {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.roi-cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    padding: 30px;
}

.roi-cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roi-cart-item {
    display: grid;
    grid-template-columns: auto 120px 1fr;
    gap: 15px;
    position: relative;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
}

.roi-item-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b35;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
}

.roi-item-image {
    position: relative;
}

.roi-item-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.roi-item-details {
    position: relative;
}

.roi-remove-item {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.roi-remove-item:hover {
    color: #ff6b35;
}

.roi-item-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.roi-item-title a {
    color: #333;
    text-decoration: none;
}

.roi-item-title a:hover {
    color: #7c3aed;
}

.roi-item-meta {
    margin-bottom: 15px;
}

.roi-meta-item {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 14px;
}

.roi-meta-label {
    color: #666;
    min-width: 60px;
}

.roi-meta-value {
    color: #333;
}

.roi-item-price {
    margin-bottom: 15px;
}

.roi-current-price {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b35;
    margin-right: 10px;
}

.roi-original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.roi-quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.roi-qty-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roi-qty-btn:hover {
    background: #e9ecef;
}

.roi-qty-input {
    width: 60px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.roi-delete-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    text-decoration: underline;
}

.roi-delete-btn:hover {
    color: #ff6b35;
}

.roi-cart-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    height: fit-content;
}

.roi-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.roi-total-row {
    font-weight: 600;
    font-size: 16px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    margin-bottom: 25px;
}

.roi-promo-section {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.roi-promo-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.roi-promo-btn {
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.roi-promo-btn:hover {
    background: #f8f9fa;
}

.roi-checkout-btn {
    width: 100%;
    padding: 16px;
    background: #7c3aed;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 25px;
}

.roi-checkout-btn:hover {
    background: #6d28d9;
}

.roi-payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 0;
}

.roi-payment-methods img {
    height: 24px;
    width: auto;
}

.roi-features {
    margin-bottom: 20px;
}

.roi-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
}

.roi-feature-icon {
    font-size: 16px;
}

.roi-promo-disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .roi-cart-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .roi-cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .roi-item-image img {
        width: 80px;
        height: 80px;
    }

    .roi-quantity-controls {
        flex-wrap: wrap;
    }

    .roi-cart-header {
        padding: 15px;
    }
}