.cart-header {
    margin-top: 65px;
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.cart-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.item-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 10px;
    margin-left: 20px;
    border: 2px solid #eee;
}

.item-details {
    flex: 1;
}

.item-title {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.item-platform {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 12px;
}

.item-price {
    font-size: 18px;
    color: #27ae60;
    font-weight: bold;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #3498db;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.quantity-btn:hover {
    background: #2980b9;
}

.quantity-input {
    width: 50px;
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s;
}

.remove-btn:hover {
    color: #c0392b;
}

.cart-summary {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 25px;
    height: fit-content;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.summary-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.total-row {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #219a52;
}

.platform-tag {
    background: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
}
.mobile-checkout {
    background: white;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
}