/* ==========================================================================
   Elementor & Elementor Pro Compatibility Overrides
   ========================================================================== */

/* Elementor Canvas & Full Width Sections */
.elementor-section-full_width {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Map Theme Brand Colors to Elementor Controls */
.elementor-element {
    --e-global-color-primary: #0B63E5;
    --e-global-color-secondary: #FF5500;
    --e-global-color-text: #172033;
    --e-global-color-accent: #FF3B00;
}

/* Ensure WooCommerce Elementor Pro Widgets Match Theme Layout */
.elementor-widget-woocommerce-products .products-grid {
    gap: 24px;
}

/* Full Width Page Template */
body.page-template-template-full-width #content {
    padding: 0;
}



.ihsanshop-newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.ihsanshop-newsletter-input {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 16px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background: #ffffff;
    color: #333333;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ihsanshop-newsletter-input::placeholder {
    color: #999999;
}

.ihsanshop-newsletter-input:focus {
    border-color: #0B63E5;
    box-shadow: 0 0 0 3px rgba(11, 99, 229, 0.10);
}

.ihsanshop-newsletter-button {
    flex: 0 0 auto;
    height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 8px;
    background: #0B63E5;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.ihsanshop-newsletter-button:hover {
    background: #FF5A1F;
    color: #FFFFFF;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .ihsanshop-newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .ihsanshop-newsletter-input,
    .ihsanshop-newsletter-button {
        width: 100%;
        flex: none;
    }

    .ihsanshop-newsletter-input,
    .ihsanshop-newsletter-button {
        height: 46px;
    }
}