/*
Theme Name: TowerTech Child
Theme URI: http://thetowertech.com/
Author: The TowerTech
Description: This is a child theme for TowerTech
Version: 1.0.0
Author URI: http://thetowertech.com/
Template: towertech
Text Domain: towertech-child
*/
/*************** ADD YOUR CUSTOM CSS HERE  ***************/
/* Custom Checkout Page Styling */
.custom-checkout-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.custom-checkout-container h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.order-summary {
    margin-bottom: 30px;
}

.order-summary h3 {
    font-size: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.order-summary table {
    width: 100%;
    border-collapse: collapse;
}

.order-summary th, 
.order-summary td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.order-summary th {
    background-color: #f0f0f0;
    font-weight: 600;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: #555;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: #0073aa;
    outline: none;
}

.place-order-btn {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 20px;
}

.place-order-btn:hover {
    background-color: #005b8a;
}

#checkout-message {
    margin-top: 20px;
    font-size: 16px;
    text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
    .custom-checkout-container {
        padding: 20px;
    }

    .place-order-btn {
        font-size: 14px;
        padding: 10px;
    }

    .form-group input, 
    .form-group select {
        font-size: 14px;
        padding: 8px;
    }
}

