/*
Theme Name: Wolmart Child
Theme URI: https://wolmart.org/
Author: D-THEMES
Author URI: https://wolmart.org/about-me/
Description: Wolmart Responsive WordPress + eCommerce Theme.
Version: 1.0
Template: wolmart
License: Commercial
License URI: http://themeforest.net/licenses/regular_extended
Tags: woocommerce, corporate, ecommerce, responsive, blue, black, green, white, light, dark, red, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, fixed-layout, responsive-layout, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
*/

/*************** ADD YOUR CUSTOM CSS HERE  ***************/
.atas-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.atas-col{
    width:100%;
}

.atas-full{
    grid-column:1 / -1;
}

.atas-col input,
.atas-col select,
.atas-full textarea{
    width:100%;
    padding:12px 14px;
    border:2px solid #ddd;
    border-radius:25px;
    font-size:15px;
    transition:border-color 0.3s ease;
    background:#fff;
    font-family:inherit;
    color:#000;
    margin-top:0;
}

.atas-col input:hover,
.atas-col input:focus,
.atas-col select:hover,
.atas-col select:focus,
.atas-full textarea:hover,
.atas-full textarea:focus{
    border-color:#B4892B;
    outline:none;
    box-shadow:none;
}

.atas-col input::placeholder,
.atas-col select::placeholder,
.atas-full textarea::placeholder{
    color: #999;
    opacity:1;
}

.atas-full input[type="submit"],
.atas-full button.wpcf7-submit{
    width:100%;
    padding:14px;
    background:#B4892B;
    color:#fff;
    font-size:16px;
    font-weight:600;
    border:none;
    border-radius:25px;
    cursor:pointer;
    text-align:center;
    transition:background 0.3s ease, color 0.3s ease;
}

.atas-full input[type="submit"]:hover,
.atas-full button.wpcf7-submit:hover{
    background:#000;
    color:#B4892B;
}

@media(max-width:768px){
    .atas-grid{
        grid-template-columns:1fr;
    }
}
.wpcf7-submit {
    width: 100%;
    padding: 14px;
    background: #B4892B;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;    
    display: flex;         
    justify-content: center;
    align-items: center;   
    transition: background 0.3s ease, color 0.3s ease;
}

.wpcf7-submit:hover {
    background: #000;
    color: #B4892B;
}