/* LOGO SCROLLER */
.mbp-logo-scroller {
    background-color: #ffffff;
    padding: 0px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.mbp-logo-scroller .mbp-container {
    overflow: hidden;
}

.mbp-scroller-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: mbpScroll 40s linear infinite;
}

.mbp-logo-scroller:hover .mbp-scroller-track {
    animation-play-state: paused;
}

.mbp-scroller-logo-item {
    padding: 15px 40px;
}

.mbp-scroller-logo-item img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

@keyframes mbpScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* FAQ SECTION STYLES */
.mbp-faq-section {
    background-color: #ffffff;
}

.mbp-faq-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: #000;
    margin-bottom: 20px;
}

.mbp-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.mbp-faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mbp-faq-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mbp-faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
}

.mbp-faq-question span {
    padding-right: 20px;
}

.mbp-faq-question i {
    font-size: 14px;
    color: #888;
    transition: transform 0.3s ease;
}

.mbp-faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: #fafafa;
}

.mbp-faq-answer p {
    padding: 20px 0;
    font-size: 14.5px;
    color: #000;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Active State */
.mbp-faq-item.active {
    border-color: var(--primary-orange);
}

.mbp-faq-item.active .mbp-faq-question {
    color: var(--primary-orange);
}

.mbp-faq-item.active .mbp-faq-question i {
    transform: rotate(45deg);
    color: var(--primary-orange);
}

.mbp-faq-item.active .mbp-faq-answer {
    max-height: 500px;
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

@media (max-width: 992px) {
    .mbp-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA SECTION STYLES */
.mbp-cta-section {
    padding: 15px 0;
    background-color: #fff;
}

.mbp-cta-card {
    background-color: #fdfaf5;
    border-radius: 12px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mbp-cta-img {
    position: absolute;
    z-index: 1;
}

.mbp-cta-img img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.mbp-cta-img-left {
    top: -13px;
    left: -11px;
}

.mbp-cta-img-right {
    bottom: 15px;
    right: 10px;
}

.mbp-cta-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.mbp-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.mbp-cta-desc {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.7;
    margin-bottom: 30px;
}

.mbp-cta-button {
    display: inline-block;
    background-color: var(--primary-orange);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(240, 94, 39, 0.25);
}

.mbp-cta-button:hover {
    background-color: #e05420;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(240, 94, 39, 0.35);
}

@media (max-width: 768px) {
    .mbp-cta-card {
        padding: 0px 20px 40px;
        flex-direction: column;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .mbp-cta-img {
        position: relative;
        /* Break out of absolute positioning for mobile */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        margin-top: -20px;
        margin-bottom: 25px;
        order: 1;
        /* Ensure image is first */
    }

    .mbp-cta-img-left {
        display: block;
        opacity: 1;
    }

    .mbp-cta-img-right {
        display: none;
    }

    .mbp-cta-img img {
        max-width: 220px;
        /* Slightly larger for impact */
    }

    .mbp-cta-content {
        order: 2;
        /* Content after image */
        width: 100%;
        padding: 0;
    }

    .mbp-cta-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .mbp-cta-desc {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .mbp-cta-button {
        width: 100%;
        padding: 15px 20px;
        font-size: 15px;
    }
}

/* BLOG SECTION STYLES */
.mbp-blog-section {
    padding: 10px 0 35px 0;
    background-color: #fff;
}

.mbp-blog-header {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mbp-blog-main-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.mbp-blog-subtitle {
    max-width: 650px;
    margin: 12px 0 0;
    color: #000;
    font-size: 15px;
    line-height: 1.7;
}

.mbp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mbp-blog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

a.mbp-blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.mbp-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-orange);
}

.mbp-blog-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.mbp-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mbp-blog-card:hover .mbp-blog-img img {
    transform: scale(1.05);
}

.mbp-blog-content {
    padding: 25px;
}

.mbp-blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 500;
}

.mbp-blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.mbp-blog-card:hover .mbp-blog-title {
    color: var(--primary-orange);
}

.mbp-blog-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

.mbp-blog-pagination {
    display: none;
    /* Hidden by default */
}

.mbp-blog-all-btn {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(240, 94, 39, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.mbp-blog-all-btn:hover {
    background-color: #e05420;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(240, 94, 39, 0.3);
}

@media (max-width: 992px) {
    .mbp-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .mbp-blog-header {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .mbp-blog-subtitle {
        font-size: 14px;
    }

    .mbp-blog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 0 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .mbp-blog-grid::-webkit-scrollbar {
        display: none;
    }

    .mbp-blog-card {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    .mbp-blog-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 20px 0 10px;
        order: 2;
    }

    .dot {
        width: 10px;
        height: 10px;
        background-color: #ddd;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .dot.active {
        width: 35px;
        background-color: var(--primary-orange);
        border-radius: 10px;
    }

    .mbp-blog-all-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Remove old CSS dot simulation */
    .mbp-blog-section .mbp-container::after {
        display: none !important;
    }
}

/* ================================================
   WHY CHOOSE US SECTION - GLOBAL SHARED STYLES
   Used in: Product page, Home page, All Category page
   ================================================ */
.mbp-why-choose-unique-section {
    padding: 5px 0;
    background: #fff;
    text-align: center;
}

.mbp-why-choose-unique-header {
    text-align: center;
    margin-bottom: 30px;
}

.mbp-why-choose-unique-subtitle {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mbp-why-choose-unique-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #000;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.3;
}

.mbp-why-choose-unique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.mbp-why-choose-unique-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    height: 100%;
}

.mbp-why-choose-unique-icon {
    width: 65px;
    height: 65px;
    background: #fdf5f2;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.mbp-why-choose-unique-icon img {
    width: auto;
    height: 35px;
    max-width: 40px;
    display: block;
}

.mbp-why-choose-unique-item-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    margin-top: 0;
    text-align: center;
}

.mbp-why-choose-unique-item-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    text-align: justify;
    margin-top: 0;
}

@media (max-width: 992px) {
    .mbp-why-choose-unique-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .mbp-why-choose-unique-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mbp-why-choose-unique-title {
        font-size: 1.5rem;
    }

    .mbp-why-choose-unique-item {
        padding: 0;
    }
}

/* ================================================
   WALL OF LOVE (TESTIMONIALS) - GLOBAL STYLES
   ================================================ */
.mbp-wol-section {
    padding: 0px 0;
    background: #fff;
    overflow: hidden;
}

/* Trust Bar */
.mbp-wol-trust-bar {
    border-bottom: 1px solid #eee;
    padding-bottom: 50px;
    margin-bottom: 80px;
}

.mbp-wol-trust-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.mbp-wol-trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mbp-wol-trust-name {
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.mbp-wol-trust-stars {
    color: #ffb400;
    display: flex;
    gap: 4px;
}

.mbp-wol-trust-score {
    font-weight: 700;
    color: #000;
}

.mbp-wol-trust-divider {
    width: 1px;
    height: 40px;
    background: #eee;
}

.mbp-wol-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mbp-wol-stat-num {
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-orange);
}

.mbp-wol-stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* WOL Main Body */
.mbp-wol-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.mbp-wol-tag {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 20px;
}

.mbp-wol-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    margin-bottom: 25px;
}

.mbp-wol-subtitle {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 450px;
}

/* Featured Review */
.mbp-wol-featured {
    background: #fdfaf5;
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 40px rgba(240, 94, 39, 0.1);
}

.mbp-wol-featured-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(240, 94, 39, 0.1);
    font-family: serif;
    line-height: 1;
}

.mbp-wol-feat-stars {
    color: #ffb400;
    margin-bottom: 20px;
}

.mbp-wol-feat-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #000;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.mbp-wol-feat-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mbp-wol-feat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mbp-wol-feat-client h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.mbp-wol-feat-client span {
    font-size: 13px;
    color: #666;
}

/* Ticker Column */
.mbp-wol-ticker-wrap {
    display: flex;
    gap: 30px;
    height: 700px;
    overflow: hidden;
    position: relative;
}

.mbp-wol-ticker-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mbp-wol-mini-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.mbp-wol-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.mbp-wol-mini-card.mbp-wol-mini-highlight {
    border-color: rgba(240, 94, 39, 0.3);
}

.mbp-wol-mini-stars {
    color: #ffb400;
    font-size: 12px;
    margin-bottom: 12px;
}

.mbp-wol-mini-card p {
    font-size: 14.5px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
}

.mbp-wol-mini-client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mbp-wol-mini-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.mbp-wol-mini-client div {
    display: flex;
    flex-direction: column;
}

.mbp-wol-mini-client b {
    font-size: 14px;
    color: #000;
}

.mbp-wol-mini-client span {
    font-size: 11px;
    color: #888;
}

/* Animations */
.mbp-wol-ticker-up {
    animation: tickerUp 40s linear infinite;
}

.mbp-wol-ticker-down {
    animation: tickerDown 40s linear infinite;
}

@keyframes tickerUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes tickerDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .mbp-wol-body {
        gap: 40px;
    }

    .mbp-wol-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .mbp-wol-body {
        grid-template-columns: 1fr;
    }

    .mbp-wol-left {
        max-width: 600px;
        margin: 0 auto 60px;
        text-align: center;
    }

    .mbp-wol-subtitle {
        margin: 0 auto 40px;
    }

    .mbp-wol-trust-inner {
        justify-content: center;
    }

    .mbp-wol-ticker-wrap {
        height: 500px;
    }
}

@media (max-width: 600px) {
    .mbp-wol-trust-divider {
        display: none;
    }

    .mbp-wol-trust-inner {
        gap: 20px;
    }

    .mbp-wol-title {
        font-size: 2rem;
    }
}

/* SCROLL TO TOP BUTTON */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #f05e27;
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(240, 94, 39, 0.3);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

#scrollToTopBtn:hover {
    background-color: #d44d1d;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(240, 94, 39, 0.4);
}

@media (max-width: 768px) {
    #scrollToTopBtn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}