/* Make an Offer Page Styles */

.product-contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    background-color: #fff;
    border-radius: 8px;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 16px;
    padding: 14px 20px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    flex: 1;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 4px;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 16px;
    padding: 14px 20px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    flex: 1;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 16px;
    padding: 14px 20px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    flex: 1;
}

.base-input {
    border: 1px solid #666;
    margin-bottom: 0;
    border-radius: 3px;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 16px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 100px;
}

.offer-form {
    margin: 0;
    padding: 0;
}

.offer-limit-message {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin: 20px 0;
}

.offer-limit-message .countdown {
    font-size: 24px;
    font-weight: bold;
    color: #d63384;
    margin: 15px 0;
}

.offer-limit-message .countdown-label {
    font-size: 14px;
    color: #6c757d;
}

.offer-limit-message .reset-info {
    margin-top: 15px;
}

.friendly-reminder p {
    background-color: #f8f9fa;
    border-left: 1px solid #ccc;
    font-weight: 500;
    font-size: 14px;
    text-align: justify;
    border-radius: 5px;
    padding: 15px 20px;
}

.checkout-section {
    text-align: center;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
}