/* --- Header Banners --- */
.temu-promo-banner-b5dcc98a {
    width: 100%;
    font-family: system-ui, -apple-system, sans-serif;
    z-index: 999;
}
.temu-banner-row-b5dcc98a.top-row {
    background-color: #FFF9E6;
    color: #8A6D3B;
    display: flex;
    justify-content: space-around;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 600;
    border-bottom: 1px solid #F0E4C3;
}
.temu-banner-row-b5dcc98a.top-row i {
    color: #2ecc71;
    margin-left: 4px;
}
.temu-banner-row-b5dcc98a.green-row {
    background-color: #097969;
    color: #FFFFFF;
    text-align: center;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 500;
}

/* --- Responsive 2-Column Product Grid --- */
@media (max-width: 768px) {
    ul.products, .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 10px !important;
        background: #FFFFFF !important;
    }
    ul.products li.product, .products-grid .product-card {
        background: #FFFFFF !important;
        border: 1px solid #F0F0F0 !important;
        border-radius: 8px !important;
        padding: 10px !important;
        margin: 0 !important;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 2px 8px rgba(0,0,0,0.02) !important;
    }
}

/* Add custom badges */
.temu-badge-b5dcc98a {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF4742;
    color: #FFFFFF;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 10;
}

/* --- Floating/Sticky Bottom Navigation Bar --- */
.temu-bottom-nav-b5dcc98a {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #FFFFFF;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    border-top: 1px solid #EEEEEE;
}
body.admin-bar .temu-bottom-nav-b5dcc98a {
    bottom: 0; /* Align perfectly on top of or under depending on admin presence */
}
.temu-bottom-nav-b5dcc98a .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666666 !important;
    font-size: 11px;
    text-decoration: none !important;
    flex: 1;
}
.temu-bottom-nav-b5dcc98a .nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
}
.temu-bottom-nav-b5dcc98a .nav-item:hover,
.temu-bottom-nav-b5dcc98a .nav-item.active {
    color: #FF4742 !important;
}
.temu-bottom-nav-b5dcc98a .icon-wrap {
    position: relative;
}
.temu-bottom-nav-b5dcc98a .badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #FF4742;
    color: white;
    font-size: 9px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 5px;
    line-height: 1;
}

@media (max-width: 768px) {
    .temu-bottom-nav-b5dcc98a {
        display: flex;
    }
    body {
        padding-bottom: 60px !important; /* Prevent content cutting off */
    }
}
