/**
 * Theme Name:     Astra Child
 * Author:         Brainstorm Force
 * Template:       astra
 * Text Domain:	   astra-child
 * Description:    The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
 */

 /* Child Theme Additional Styles */

/* Ensure footer is fixed at bottom */
.ast-page-builder-template .site-content {
    padding-bottom: 100px !important;
}

/* Override Astra footer for builder page */
.page-template-bifold-door-builder .site-footer {
    display: none !important;
}

/* Custom button styles */
.design-your-door-btn {
    background: #2e7d32 !important;
    color: #fff !important;
    padding: 15px 30px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.design-your-door-btn:hover {
    background: #1b5B20 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

/* Builder specific overrides */
.door-builder-form input:focus,
.door-builder-form select:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(203, 191, 169, 0.3) !important;
}

/* Animation for step transitions */
.wizard-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.wizard-step.active {
    opacity: 1;
    transform: translateY(0);
}

/* Progress bar (optional) */
.progress-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    margin: 30px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #cbbfa9;
    border-radius: 3px;
    width: 20%;
    transition: width 0.5s ease;
}

/* Tooltip styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


.step-title {
    margin-bottom: 40px;
    max-width: 1000px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .builder-hero h1 {
        font-size: 22px !important;
    }
    
    .price-summary-box {
        position: relative !important;
        margin-top: 30px !important;
        width: 100% !important;
    }
    
    .builder-footer-fixed {
        padding: 15px 20px !important;
    }
    
    .footer-total {
        font-size: 20px !important;
    }
}

/* Print styles */
@media print {
    .builder-footer-fixed,
    .builder-nav,
    .price-summary-box {
        display: none !important;
    }
}

/* Hide variation dropdown on single product page */
.single-product form.variations_form {
    display: none !important;
}

/* Hide WooCommerce product tabs */
.single-product .woocommerce-tabs {
    display: none !important;
}