/* Badge Styling */
.cr-badge {
    background: transparent !important;
    padding: 20px 5px 40px;
}

/* Footer Top Section - Extra Information */
.footer-top-container {
    display: flex;
    justify-content: center;
    background: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.footer-top {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.footer-feature img {
    width: 24px;
    height: 24px;
}

/* Ensure text is properly formatted */
.footer-feature span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Footer Layout */
footer.main-footer {
    background-color: #cfcfcf;
    color: #333;
    padding: 60px 20px;
    text-align: left;
}

/* Footer Container - Fixes Alignment Issue */
.main-footer-container {
    max-width: 1290px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* FIX: Ensures all columns align at the top */
    justify-content: space-between;
    gap: 20px;
}

/* Footer Columns */
.main-footer-column {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    color: #333;
}

/* Footer Headings */
.main-footer-column h2,
.main-footer-column h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

/* Footer Text & Links */
.main-footer-column p,
.main-footer-column small {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.main-footer-column a {
    display: block;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.main-footer-column a:hover {
    color: #005880;
    text-decoration: underline;
}

/* Footer Shipping & Payment Section */
.footer-info-container {
    max-width: 1290px;
    margin: 20px auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.shipping-info,
.payment-info {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

/* Shipping & Payment Icons */
.shipping-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.shipping-icons img {
    max-height: 30px;
    width: auto;
    filter: brightness(0.9);
}

/* Newsletter */
.ml-embedded {
    max-width: 350px;
}

/* Buttons */
.custom-button {
    display: inline-block;
    padding: 10px 20px;
    color: #FFF !important;
    background-color: #7456f1;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    max-width: fit-content;
}

.custom-button:hover {
    background-color: #005880;
}

/* Image Styling */
img.supporten {
    width: 300px;
    height: 300px;
    border-radius: 50% !important;
    object-fit: cover;
    padding: 20px;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .main-footer-container,
    .footer-info-container,
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .shipping-icons {
        flex-direction: column;
        gap: 10px;
    }
}

/* Other Adjustments */
.main-footer-column small {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.no-link {
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* MailerLite Adjustments */
.ml-form-embedWrapper {
    background-color: transparent !important;
}

.ml-form-embedBody {
    padding: 0px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-feature {
        justify-content: center;
    }
}

/* Shortcode Section Above Footer */
.footer-shortcode-container {
    display: flex;
    justify-content: center;
    background: #f8f8f8; /* Background similar to footer */
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.footer-shortcode-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}
