body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #d9f1ff, #ffffff);
}

.products-nav {
    background: linear-gradient(135deg, #083b66, #0f5fa8);
    padding: 16px 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

#products {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

#products h2 {
    text-align: center;
    color: #083b66;
    font-size: 40px;
    margin-bottom: 30px;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f9fcff;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(15,95,168,0.1);
    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.product-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

.product-card h3 {
    margin: 0;
    color: #083b66;
}

.product-card p {
    margin: 4px 0;
    color: #333;
}

.remove-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 14px;
    background: #d9534f;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s;
    font-size: 14px;
}

.remove-btn:hover {
    background: #c9302c;
}

h3 {
    text-align: right;
    margin-top: 25px;
    font-size: 26px;
    color: #083b66;
    padding-top: 10px;
    border-top: 2px solid rgba(15,95,168,0.2);
}

p {
    text-align: center;
    font-size: 18px;
    color: #555;
}

.logo a {
    color: #ffffff;
    text-decoration: none;
}

.logo h1 {
    font-size: 32px;
    margin: 0;
}

.checkout-wrapper {
    text-align: right;
    margin-top: 20px;
}

.checkout-btn {
    display: inline-block;
    padding: 12px 22px;
    background: #0f5fa8;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s;
    font-weight: bold;
}

.checkout-btn:hover {
    background: #083b66;
    transform: translateY(-2px);
}