/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


#order-tracking-form {
    max-width: 500px;
    margin: 30px auto;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
}

#order-tracking-form input[type="text"],
#order-tracking-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#order-tracking-form input[type="text"]:focus,
#order-tracking-form input[type="email"]:focus {
    border-color: #777;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

#order-tracking-result {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    font-size: 15px;
}





.free-shipping-badge-wrapper {
    max-width: 1000px;
    margin: 0 auto 30px auto;
    padding: 20px;
}

.free-shipping-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 40px;
    background: linear-gradient(135deg, #e0f7fa, #c8e6c9);
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transform: skewX(-3deg);
    transition: all 0.3s ease-in-out;
}

.free-shipping-badge:hover {
    transform: skewX(-3deg) scale(1.02);
    background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
}

.free-shipping-icon {
    font-size: 64px; /* Bigger van 🚚 */
    transform: rotate(-10deg);
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.15));
}

.free-shipping-text {
    font-size: 28px;
    font-weight: 700;
    color: #2e7d32;
    transform: rotate(-2deg);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .free-shipping-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .free-shipping-icon {
        font-size: 48px;
        transform: rotate(0);
    }

    .free-shipping-text {
        font-size: 22px;
        transform: rotate(0);
    }
}
