/* Global Overrides for Temu Style */
body {
    background-color: #f5f5f5 !important;
    font-family: 'Roboto', sans-serif !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #333 !important;
}

/* Force Mobile App Layout */
/* Force Full Width Layout */
#page {
    max-width: 100% !important;
    margin: 0 !important;
    background-color: #fff !important;
    min-height: 100vh !important;
    box-shadow: none !important;
    overflow-x: hidden !important;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/* Hide WordPress/Elementor Bloat if necessary */
.bhf-hidden {
    display: none !important;
}

/* Header Styling */
#masthead {
    background-color: #fff !important;
    border-bottom: 2px solid #f5f5f5 !important;
    padding: 10px !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Typography - Make headings pop like Temu */
h1,
h2,
h3,
h4,
h5,
h6,
.elementor-heading-title {
    color: #000 !important;
    font-weight: 700 !important;
    font-family: 'Roboto', sans-serif !important;
}

/* Specifically style the main "Shop Like a Billionaire" or similar headers */
h1.elementor-heading-title,
h2.elementor-heading-title {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
}

h2 {
    font-size: 18px !important;
    margin-top: 20px !important;
}

/* Paragraphs */
p,
.elementor-text-editor {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #555 !important;
}

/* Buttons - Temu Orange */
a.elementor-button,
.btn-primary,
button {
    background-color: #FF7700 !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 12px 24px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    border: none !important;
    text-decoration: none !important;
    display: inline-block !important;
    box-shadow: 0 4px 6px rgba(255, 119, 0, 0.3) !important;
    transition: transform 0.2s;
}

a.elementor-button:active {
    transform: scale(0.98);
}

/* Elementor Section Cleanup */
/* Elementor Section Cleanup */
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-row {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    /* Ensure no auto margins */
    margin-right: 0 !important;
    padding: 0 !important;
    /* Remove section padding */
    left: 0 !important;
    /* Fix potential positioning */
}

.elementor-section-boxed>.elementor-container {
    max-width: 100% !important;
}

/* Ensure images and text have some breathing room inside columns if needed, but outer structure is full width */
.elementor-column-wrap,
.elementor-widget-wrap {
    padding: 10px !important;
}

/* Images */
img {
    max-width: 100% !important;
    width: auto !important;
    /* Prevent stretching */
    height: auto !important;
    border-radius: 8px !important;
    display: block !important;
    margin: 10px auto !important;
}

/* Icons styling specifically for those SVG boxes */
.elementor-icon-box-wrapper {
    text-align: center !important;
    padding: 15px !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    background: #fafafa !important;
    margin-bottom: 10px !important;
}

.elementor-icon svg {
    fill: #FF7700 !important;
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 10px !important;
}

.elementor-icon-box-title,
.elementor-icon-box-title a {
    font-size: 16px !important;
    color: #333 !important;
    margin-bottom: 5px !important;
    text-decoration: none !important;
}

/* "Free Gifts" or highlight text logic if present in content */
.highlight,
strong {
    color: #FF7700 !important;
}

/* Footer area */
footer,
.footer {
    background-color: #222 !important;
    color: #ccc !important;
    padding: 20px !important;
    font-size: 12px !important;
    text-align: center !important;
    margin-top: 30px !important;
}

footer a,
.footer a {
    color: #fff !important;
    margin: 0 8px !important;
}

/* Sticky Footer for Phone Call */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    box-sizing: border-box;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
}

.sticky-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    /* Or whatever max-width fits your design */
}

.sticky-footer-text {
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    margin-right: 15px;
    text-align: left;
}

.sticky-call-btn {
    background-color: #FF7700;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    /* Slightly rounded as per common UI, or 30px for pill shape */
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.sticky-call-btn:hover {
    background-color: #e06900;
}

@media (max-width: 600px) {
    .sticky-footer {
        padding: 10px 15px;
    }

    .sticky-footer-text {
        font-size: 12px;
    }

    .sticky-call-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}