:root {
    --auth-blur: 40px;
    --auth-opacity: 0;
    --auth-pointer: none;
}

html,
body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1 {
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

body {
    background-color: #FFFFFF;
    padding: 10px;
}
#cont {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-summary-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f2f5;
    text-align: right;
}

.summary-item {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #5f6368;
}

.total-row {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a73e8;
    margin-top: 10px;
}

.free-shipping {
    color: #2ecc71;
    font-weight: 600;
}
#redirect {
    background: linear-gradient(135deg, #2ecc71, #27ae60) !important;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 60px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

#redirect:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    filter: brightness(1.1);
}
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    #redirect {
        width: 100%;
        align-self: center;
    }

    h1 {
        font-size: 1.5rem;
    }
}