.elementor-16320 .elementor-element.elementor-element-728e75b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-16320 .elementor-element.elementor-element-3d57cce{background-color:#000000;}/* Start custom CSS for html, class: .elementor-element-3d57cce *//* --- Global Footer Styles --- */
.custom-footer {
    /* Background gradient matches the screenshot exactly */
    background: linear-gradient(90deg, #d86d80 0%, #e68e7a 50%, #f4af76 100%);
    color: #ffffff;
    padding: 60px 20px 30px 20px;
    font-family: 'Sofia Pro', 'Montserrat', sans-serif;
    line-height: 1.5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

/* --- Typography --- */
.footer-heading {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a, 
.trade-license, 
.contact-info p {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.95;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* --- Social Icons Row --- */
.social-icons-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icons-row a {
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-icons-row a:hover {
    transform: translateY(-3px);
}

/* --- Bottom Payment & Copyright Section --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 40px;
    text-align: center;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.payment-methods {
    background: #ffffff; /* White background for payment logos as seen in mble.png */
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.payment-methods img {
    max-width: 100%;
    height: auto;
    display: block;
}

.copyright-section p {
    font-size: 12px;
    font-weight: 600;
    margin: 8px 0;
    letter-spacing: 0.3px;
    color: #ffffff;
}

/* --- Mobile Responsive & Accordion Logic --- */
@media (max-width: 767px) {
    .custom-footer {
        padding: 10px 15px 40px 15px;
    }

    .footer-column {
        flex: 0 0 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        margin-bottom: 0;
    }

    .footer-heading {
        padding: 20px 0;
        margin-bottom: 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
    }

    /* Arrow/Chevron icon for mobile accordion */
    .footer-heading::after {
        content: '\f107'; /* FontAwesome Angle Down */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        transition: transform 0.3s ease;
    }

    /* Rotate arrow when open */
    .footer-column.active .footer-heading::after {
        transform: rotate(180deg);
    }

    /* Mobile Content Transition */
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    }

    .footer-column.active .accordion-content {
        max-height: 1000px; /* High value to allow content to expand */
        padding-bottom: 20px;
        transition: max-height 0.4s ease-in;
    }

    .social-icons-row {
        justify-content: center;
        margin: 40px 0;
        gap: 35px;
    }

    .social-icons-row a {
        font-size: 24px;
    }
    
    .payment-methods {
        width: 100%;
        padding: 10px 5px;
    }
}/* End custom CSS */