

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    gap: 40px;
}

.product {
    background: linear-gradient(145deg, #514b7a, #5a5488);
    border: 3px solid black;
    border-radius: 50px;
    box-shadow: 5px 5px darkorange, 8px 8px 15px rgba(0, 0, 0, 0.3);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    transition: all 0.3s ease;
    text-align: center;
}

.product:hover {
    transform: translateY(-2px);
    box-shadow: 7px 7px darkorange, 10px 10px 20px rgba(0, 0, 0, 0.4);
}

.description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.click {
    font-size: 24px;
    font-weight: 600;
    color: #e6d7a3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.4;
}

.one {
    font-size: 28px;
    font-weight: 500;
    color: #f0f0f0;
    margin: 0;
}

.price {
    font-size: 20px;
    font-weight: 500;
    color: #cc8400;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form {
    background: rgba(0, 0, 0, 0.25);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(204, 132, 0, 0.3);
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.form label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #f0f0f0;
    line-height: 1.6;
    font-size: 16px;
}

.form input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #cc8400;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.form a {
    color: #87ceeb;
    text-decoration: underline;
    transition: color 0.3s ease;
    cursor: pointer;
}

.form a:hover {
    color: #cc8400;
}

.checkout {
    padding: 16px 40px;
    border-radius: 25px;
    border: 2px solid transparent;
    background: linear-gradient(145deg, #cc8400, #b8770a);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(204, 132, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 18px;
    min-width: 200px;
}

.checkout:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(204, 132, 0, 0.4);
    background: linear-gradient(145deg, #b8770a, #cc8400);
}

.checkout:active:not(:disabled) {
    transform: translateY(0px);
}

.checkout:disabled {
    background: linear-gradient(145deg, #666, #555);
    cursor: not-allowed;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    opacity: 0.6;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(145deg, #514b7a, #5a5488);
    border: 3px solid black;
    border-radius: 20px;
    box-shadow: 5px 5px darkorange, 8px 8px 15px rgba(0, 0, 0, 0.3);
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    color: #f0f0f0;
    line-height: 1.6;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #cc8400;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #e6d7a3;
    transform: scale(1.1);
}

.modal-content h2 {
    color: #e6d7a3;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-right: 40px;
}

.modal-content p {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #cc8400;
    margin: 0;
    white-space: pre-line;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .product {
        padding: 30px 20px;
        border-radius: 30px;
    }
    
    .click {
        font-size: 20px;
    }
    
    .one {
        font-size: 24px;
    }
    
    .price {
        font-size: 18px;
    }
    
    .form {
        padding: 25px 20px;
    }
    
    .form label {
        font-size: 14px;
        gap: 10px;
    }
    
    .checkout {
        padding: 14px 30px;
        font-size: 16px;
        min-width: 180px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 25px 20px;
        width: 95%;
        max-height: 75vh;
    }
    
    .modal-content h2 {
        font-size: 20px;
        padding-right: 35px;
    }
    
    .modal-close {
        top: 12px;
        right: 20px;
        font-size: 28px;
    }
}

/* Add subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(204, 132, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(106, 90, 205, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Show modal when active */
.modal.show {
    display: block;
}