/**
 * AMA Customizer Frontend Styles
 */

/* Custom WooCommerce product modifications */
.ama-customizer-product-container {
    margin-bottom: 20px;
}

.ama-customizer-product-info {
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

.ama-customizer-product-info h3 {
    margin-top: 0;
    font-size: 18px;
}

/* Cart modifications */
.ama-customizer-cart-notice {
    background: #f0f8ff;
    border: 1px solid #b0d4e8;
    border-radius: 4px;
    padding: 10px 15px;
    margin-bottom: 20px;
}

/* Custom buttons */
.ama-customizer-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ama-customizer-button:hover,
.ama-customizer-button:focus {
    background: #0052a3;
    color: #fff;
}

html {
    margin: 0 !important;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

header {
    height: 212px;
}

footer {
    display: none;
}

#ama_customizer {
    width: 100%;
    height: calc(100dvh - 86px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#customizer_iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media screen and (max-width: 3839px) {
    header {
        height: 110px;
    }

    #ama_customizer {
        height: calc(100dvh - 110px);
    }
}

@media screen and (max-width: 1919px) {
    header {
        height: 87px;
    }

    #ama_customizer {
        height: calc(100dvh - 87px);
    }
}

@media screen and (max-width: 1023px) {
    header {
        height: 85px;
    }

    #ama_customizer {
        height: calc(100dvh - 85px);
    }
}