:root {
    --new-product-list-primary: #dd0000;
    --new-product-list-secondary: #dd0000;
    --new-product-list-accent: #dd0000;

    --new-product-list-gradient:
        linear-gradient(135deg, #dd0000, #dd0000);

    --new-product-list-whatsapp: #08a943;

    --new-product-list-text: #221616;
    --new-product-list-muted: #756565;

    --new-product-list-border: #eadede;
    --new-product-list-light: #fff7f7;
    --new-product-list-white: #ffffff;

    --new-product-list-shadow:
        0 20px 60px rgba(141, 0, 0, 0.12);
}

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            color: var(--new-product-list-text);
            font-family: "Inter", sans-serif;
            background: #ffffff;
        }

        img {
            max-width: 100%;
        }

        .new-product-list-section {
            position: relative;
            overflow: hidden;
            padding: 60px 0;
            
        }

        .new-product-list-section::before {
            position: absolute;
            top: -140px;
            right: -140px;
            width: 380px;
            height: 380px;
            content: "";
            border: 70px solid rgba(141, 0, 0, 0.035);
            border-radius: 50%;
        }

        .new-product-list-container {
            position: relative;
            z-index: 2;
        }

        .new-product-list-main-card {
            overflow: hidden;
            padding: 26px;
            border: 1px solid rgba(213, 223, 235, 0.9);
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.96);
            box-shadow: var(--new-product-list-shadow);
        }

        /* Gallery */

        .new-product-list-gallery {
            display: flex;
            gap: 16px;
            height: auto;
        }

        .new-product-list-thumbnail-list {
            width: 86px;
            display: flex;
            flex: 0 0 86px;
            flex-direction: column;
            gap: 12px;
        }

        .new-product-list-thumbnail {
            position: relative;
            width: 86px;
            height: 86px;
            overflow: hidden;
            padding: 7px;
            border: 1px solid var(--new-product-list-border);
            border-radius: 14px;
            background: var(--new-product-list-white);
            cursor: pointer;
            transition:
                border-color 0.3s ease,
                transform 0.3s ease,
                box-shadow 0.3s ease;
        }

        .new-product-list-thumbnail::before {
            position: absolute;
            top: 50%;
            left: 0;
            width: 3px;
            height: 0;
            content: "";
            border-radius: 0 5px 5px 0;
            background: var(--new-product-list-secondary);
            transform: translateY(-50%);
            transition: height 0.3s ease;
        }

        .new-product-list-thumbnail:hover,
        .new-product-list-thumbnail.active {
            border-color: rgba(221, 0, 0, 0.6);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(141, 0, 0, 0.13);
        }

        .new-product-list-thumbnail.active::before {
            height: 44px;
        }

        .new-product-list-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .new-product-list-thumbnail:hover img {
            transform: scale(1.05);
        }

        .new-product-list-main-image-box {
            position: relative;
            width: calc(100% - 102px);
            min-height: 480px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 1px solid var(--new-product-list-border);
            border-radius: 22px;
            background: linear-gradient(
                145deg,
                #ffffff 0%,
                #fffafa 100%
            );
            cursor: zoom-in;
        }

        .new-product-list-main-image-box::before {
            position: absolute;
            top: 18px;
            left: 18px;
            width: 46px;
            height: 46px;
            content: "";
            border-top: 2px solid rgba(221, 0, 0, 0.18);
            border-left: 2px solid rgba(221, 0, 0, 0.18);
            border-radius: 12px 0 0 0;
            pointer-events: none;
        }

        .new-product-list-main-image-box::after {
            position: absolute;
            right: 18px;
            bottom: 18px;
            width: 46px;
            height: 46px;
            content: "";
            border-right: 2px solid rgba(221, 0, 0, 0.18);
            border-bottom: 2px solid rgba(221, 0, 0, 0.18);
            border-radius: 0 0 12px 0;
            pointer-events: none;
        }

        .new-product-list-main-image {
            width: 100%;
            height: 460px;
            padding: 22px;
            object-fit: contain;
            user-select: none;
            transition:
                opacity 0.25s ease,
                transform 0.16s linear;
            transform-origin: center center;
        }

        .new-product-list-main-image-box.zoom-active
        .new-product-list-main-image {
            transform: scale(2.15);
        }

        .new-product-list-image-loading {
            opacity: 0.2;
        }

        .new-product-list-image-counter {
            position: absolute;
            top: 18px;
            right: 18px;
            z-index: 4;
            min-width: 52px;
            padding: 8px 11px;
            color: #756565;
            font-size: 12px;
            font-weight: 700;
            text-align: center;
            border: 1px solid rgba(211, 221, 233, 0.9);
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
        }

        .new-product-list-zoom-label {
            position: absolute;
            right: 18px;
            bottom: 18px;
            z-index: 4;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            color: #ffffff;
            font-size: 12px;
            font-weight: 700;
            border-radius: 30px;
            background: #b30000;
            box-shadow: 0 8px 20px rgba(141, 0, 0, 0.20);
            pointer-events: none;
            backdrop-filter: blur(8px);
        }

        .new-product-list-zoom-label i {
            font-size: 13px;
        }

        /* Content */

        .new-product-list-content {
            height: 100%;
            padding: 12px 4px 12px 20px;
        }

        .new-product-list-category-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .new-product-list-category-line {
            width: 36px;
            height: 2px;
            border-radius: 5px;
            background: var(--new-product-list-accent);
        }

        .new-product-list-category {
            margin: 0;
            color: var(--new-product-list-secondary);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .new-product-list-title {
            margin: 0 0 11px;
            color: #404040;
            font-size: clamp(28px, 2.4vw, 34px);
            line-height: 1.12;
            font-weight: 700;
            letter-spacing: -1.2px;
        }

        .new-product-list-generic-name {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: var(--new-product-list-muted);
            font-size: 17px;
            font-weight: 500;
        }

        .new-product-list-generic-name i {
            color: var(--new-product-list-secondary);
            font-size: 8px;
        }

        .new-product-list-highlight-note {
            position: relative;
            margin-bottom: 24px;
            padding: 15px 18px 15px 50px;
            color: #756565;
            font-size: 13px;
            line-height: 1.7;
            border: 1px solid #eadede;
            border-radius: 14px;
            background: #fff7f7;
        }

        .new-product-list-highlight-note i {
            position: absolute;
            top: 17px;
            left: 18px;
            color: var(--new-product-list-secondary);
            font-size: 18px;
        }

        /* Specifications */

        .new-product-list-specifications {
            overflow: hidden;
            margin-bottom: 24px;
            border: 1px solid var(--new-product-list-border);
            border-radius: 18px;
            background: #ffffff;
        }

        .new-product-list-specification-row {
            display: grid;
            grid-template-columns: 155px 1fr;
            align-items: center;
            min-height: 59px;
            border-bottom: 1px solid var(--new-product-list-border);
        }

        .new-product-list-specification-row:last-child {
            border-bottom: 0;
        }

        .new-product-list-specification-label {
            align-self: stretch;
            display: flex;
            align-items: center;
            gap: 9px;
            padding: 14px 16px;
            color: #756565;
            font-size: 13px;
            font-weight: 700;
            background: #fffafa;
        }

        .new-product-list-specification-label i {
            width: 18px;
            color: var(--new-product-list-secondary);
            font-size: 13px;
            text-align: center;
        }

        .new-product-list-specification-value {
            padding: 14px 17px;
            color: #221616;
            font-size: 14px;
            line-height: 1.65;
            font-weight: 600;
        }

        /* Buttons */

        .new-product-list-actions {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 12px;
            margin-bottom: 21px;
        }

        .new-product-list-action-btn {
            min-height: 55px;
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 11px;
            padding: 13px 18px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 800;
            border: 2px solid transparent;
            border-radius: 13px;
            transition:
                color 0.3s ease,
                background 0.3s ease,
                border-color 0.3s ease,
                transform 0.3s ease,
                box-shadow 0.3s ease;
        }

        .new-product-list-action-btn::before {
            position: absolute;
            top: 0;
            left: -100%;
            width: 70%;
            height: 100%;
            content: "";
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.22),
                transparent
            );
            transform: skewX(-18deg);
            transition: left 0.6s ease;
        }

        .new-product-list-action-btn:hover::before {
            left: 130%;
        }

        .new-product-list-action-btn i {
            font-size: 19px;
        }

        .new-product-list-whatsapp-btn {
            color: #ffffff;
            border-color: var(--new-product-list-whatsapp);
            background: var(--new-product-list-whatsapp);
            box-shadow: 0 12px 25px rgba(8, 169, 67, 0.2);
        }

        .new-product-list-whatsapp-btn:hover {
            color: #ffffff;
            border-color: #078d39;
            background: #078d39;
            transform: translateY(-3px);
            box-shadow: 0 16px 30px rgba(8, 169, 67, 0.27);
        }

        .new-product-list-call-btn {
            color: var(--new-product-list-primary);
            border-color: var(--new-product-list-primary);
            background: #ffffff;
        }

        .new-product-list-call-btn:hover {
            color: #ffffff;
            background: var(--new-product-list-primary);
            transform: translateY(-3px);
            box-shadow: 0 14px 28px rgba(141, 0, 0, 0.22);
        }

        /* Trust Badges */

        .new-product-list-trust-section {
            padding-top: 19px;
            border-top: 1px solid #f1e7e7;
        }

        .new-product-list-trust-title {
            margin-bottom: 12px;
            color: #8f7a7a;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1.2px;
            text-transform: uppercase;
        }

        .new-product-list-trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
        }

        .new-product-list-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 11px;
            color: #756565;
            font-size: 11px;
            font-weight: 700;
            border: 1px solid #eadede;
            border-radius: 30px;
            background: #ffffff;
            transition:
                transform 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
                    line-height: normal;
        }

        .new-product-list-trust-badge:hover {
            border-color: #d8b7b7;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(141, 0, 0, 0.08);
        }

        .new-product-list-trust-icon {
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--new-product-list-secondary);
            border-radius: 50%;
            background: #fff0f0;
        }

        .new-product-list-trust-icon i {
            font-size: 10px;
        }

        /* Responsive */

        @media (max-width: 1199px) {
            .new-product-list-main-card {
                padding: 26px;
            }

            .new-product-list-main-image-box,
            .new-product-list-main-image {
                height: 500px;
                min-height: 500px;
            }

            .new-product-list-content {
                padding-left: 8px;
            }

            .new-product-list-specification-row {
                grid-template-columns: 135px 1fr;
            }
        }

        @media (max-width: 991px) {
            .new-product-list-section {
                padding: 55px 0;
            }

            .new-product-list-main-card {
                padding: 25px;
            }

            .new-product-list-content {
                padding: 35px 0 0;
            }

            .new-product-list-main-image-box,
            .new-product-list-main-image {
                height: 520px;
                min-height: 520px;
            }
        }

        @media (max-width: 767px) {
            .new-product-list-section {
                padding: 35px 0;
            }

            .new-product-list-main-card {
                padding: 17px;
                border-radius: 21px;
            }

            .new-product-list-gallery {
                flex-direction: column-reverse;
                gap: 12px;
            }

            .new-product-list-thumbnail-list {
                width: 100%;
                flex: auto;
                flex-direction: row;
                overflow-x: auto;
                padding: 2px 2px 7px;
                scrollbar-width: thin;
            }

            .new-product-list-thumbnail {
                min-width: 74px;
                width: 74px;
                height: 74px;
            }

            .new-product-list-thumbnail::before {
                top: auto;
                bottom: 0;
                left: 50%;
                width: 0;
                height: 3px;
                transform: translateX(-50%);
                transition: width 0.3s ease;
            }

            .new-product-list-thumbnail.active::before {
                width: 36px;
                height: 3px;
            }

            .new-product-list-main-image-box {
                width: 100%;
                height: 400px;
                min-height: 400px;
            }

            .new-product-list-main-image {
                height: 400px;
                min-height: 400px;
                padding: 22px;
            }

            .new-product-list-content {
                padding-top: 28px;
            }

            .new-product-list-title {
                font-size: 30px;
                letter-spacing: -0.6px;
            }

            .new-product-list-generic-name {
                font-size: 15px;
            }

            .new-product-list-actions {
                grid-template-columns: 1fr;
            }

            .new-product-list-action-btn {
                width: 100%;
            }

            .new-product-list-zoom-label {
                right: 12px;
                bottom: 12px;
                padding: 8px 11px;
                font-size: 10px;
            }

            .new-product-list-image-counter {
                top: 12px;
                right: 12px;
            }
            
         .banner-title {
    color: white !important;
    font-size: 23px;
}

.banner-sub-title{
    color: white !important;
        font-size: 14px;
                line-height: 1.5;
        color: white !important;
}
            
        }

        @media (max-width: 575px) {
            .new-product-list-main-image-box {
                height: 330px;
                min-height: 330px;
                border-radius: 17px;
            }

            .new-product-list-main-image {
                height: 330px;
                min-height: 330px;
                padding: 16px;
            }

            .new-product-list-specification-row {
                grid-template-columns: 1fr;
            }

            .new-product-list-specification-label {
                min-height: auto;
                padding: 11px 13px;
                border-bottom: 1px solid #f1e7e7;
            }

            .new-product-list-specification-value {
                padding: 12px 13px 15px;
            }

            .new-product-list-trust-badges {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }

            .new-product-list-trust-badge {
                justify-content: flex-start;
            }
        }

        @media (max-width: 390px) {
            .new-product-list-main-card {
                padding: 13px;
            }

            .new-product-list-main-image-box,
            .new-product-list-main-image {
                height: 290px;
                min-height: 290px;
            }

            .new-product-list-title {
                font-size: 27px;
            }

            .new-product-list-trust-badges {
                grid-template-columns: 1fr;
            }
        }
        
        
        /* =========================================
   FRANCHISE OPPORTUNITY SECTION
========================================= */

.new-product-list-franchise-section {
    position: relative;
    overflow: hidden;
    padding: 35px 0 75px;
    font-family: "Inter", sans-serif;
  
}

/* Disclaimer */

.new-product-list-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 25px;
    padding: 17px 20px;
    color: #713d06;
    border: 1px solid #f4d47b;
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            #fffaf0 0%,
            #fff7df 100%
        );
    box-shadow: 0 8px 24px rgba(130, 89, 15, 0.06);
}

.new-product-list-disclaimer-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b66b00;
    font-size: 15px;
    border-radius: 10px;
    background: #ffe9ad;
}

.new-product-list-disclaimer-content strong {
    display: block;
    margin-bottom: 3px;
    color: #7b4100;
    font-size: 14px;
    font-weight: 700;
}

.new-product-list-disclaimer-content p {
    margin: 0;
    color: #7d510f;
    font-size: 13px;
    line-height: 1.65;
}

.new-product-list-franchise-simple {
    width: 100%;
    padding: 22px 19px;
    border: 2px solid #bccbda;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        #f3f7fc 0%,
        #e5edf6 100%
    );
    box-shadow: 0 8px 18px rgba(24, 49, 78, 0.12);
    font-family: "Inter", sans-serif;
}

.new-product-list-franchise-simple-label {
    display: block;
    margin-bottom: 7px;
    color: #17395f;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.new-product-list-franchise-simple-title {
    margin: 0 0 7px;
    color: #07182d;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.new-product-list-franchise-simple-text {
    margin: 0 0 13px;
    color: #526277;
    font-size: 14px;
    line-height: 1.6;
}

.new-product-list-franchise-simple-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.new-product-list-franchise-simple-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #17263a;
    font-size: 14px;
    line-height: 1.5;
}

.new-product-list-franchise-simple-list li i {
    margin-top: 2px;
    color: #08a943;
    font-size: 14px;
}

.new-product-list-franchise-simple-whatsapp,
.new-product-list-franchise-simple-call {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.new-product-list-franchise-simple-whatsapp {
    margin-bottom: 7px;
    color: #ffffff;
    border: 1px solid #05a943;
    background: #05ad45;
}

.new-product-list-franchise-simple-whatsapp:hover {
    color: #ffffff;
    background: #078f3b;
    transform: translateY(-1px);
}

.new-product-list-franchise-simple-call {
    color: #112f56;
    border: 1px solid #254b76;
    background: #ffffff;
}

.new-product-list-franchise-simple-call:hover {
    color: #ffffff;
    border-color: #17395f;
    background: #17395f;
    transform: translateY(-1px);
}

.new-product-list-franchise-simple-whatsapp i,
.new-product-list-franchise-simple-call i {
    font-size: 15px;
}

.new-product-list-franchise-simple-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
    color: #17395f;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    text-decoration: none;
}

.new-product-list-franchise-simple-download:hover {
    color: #8d0000;
}

.new-product-list-franchise-simple-download i {
    font-size: 11px;
}

@media (max-width: 575px) {
    .new-product-list-franchise-simple {
        padding: 18px 15px;
        border-radius: 14px;
    }

    .new-product-list-franchise-simple-title {
        font-size: 16px;
    }
}

/* =====================================
   SIMPLE PRODUCT FAQ
===================================== */

.new-product-list-faq-section {
    padding: 50px 0;
    font-family: "Inter", sans-serif;
    background: #fffafa;
}

.new-product-list-faq-section .container {
    max-width: 950px;
}

.new-product-list-faq-header {
    margin-bottom: 28px;
}

.new-product-list-faq-header > span {
    display: block;
    margin-bottom: 8px;
    color: #dd0000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.new-product-list-faq-header h2 {
    margin: 0 0 10px;
    color: #221616;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
}

.new-product-list-faq-header p {
    max-width: 650px;
    margin: 0;
    color: #756565;
    font-size: 14px;
    line-height: 1.7;
}

.new-product-list-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.new-product-list-faq-item {
    overflow: hidden;
    border: 1px solid #eadede;
    border-radius: 12px;
    background: #ffffff;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.new-product-list-faq-item:hover {
    border-color: #d8b7b7;
}

.new-product-list-faq-item.active {
    border-color: #cc7f7f;
    box-shadow: 0 8px 24px rgba(141, 0, 0, 0.08);
}

.new-product-list-faq-question {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 20px;
    color: #221616;
    text-align: left;
    border: 0;
    outline: 0;
    background: transparent;
    cursor: pointer;
}

.new-product-list-faq-question span {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
}

.new-product-list-faq-question i {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dd0000;
    font-size: 13px;
    border-radius: 50%;
    background: #fff0f0;
}

.new-product-list-faq-item.active
.new-product-list-faq-question {
    color: #dd0000;
}

.new-product-list-faq-item.active
.new-product-list-faq-question i {
    color: #ffffff;
    background: #dd0000;
}

.new-product-list-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.new-product-list-faq-answer > div {
    padding: 0 20px 20px;
    color: #756565;
    font-size: 15px;
    line-height: 1.6;
}

.new-product-list-faq-item.active
.new-product-list-faq-answer {
    max-height: 220px;
}

@media (max-width: 767px) {
    .new-product-list-faq-section {
        padding: 45px 0;
    }

    .new-product-list-faq-header h2 {
        font-size: 28px;
    }

    .new-product-list-faq-question {
        min-height: 60px;
        padding: 15px 16px;
    }

    .new-product-list-faq-question span {
        font-size: 14px;
    }

    .new-product-list-faq-answer > div {
        padding: 0 16px 17px;
    }
}

/* FAQ Support Box */

.new-product-list-faq-support {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid #eadede;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(141, 0, 0, 0.06);
}

.new-product-list-faq-support-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dd0000;
    font-size: 17px;
    border-radius: 12px;
    background: #fff0f0;
}

.new-product-list-faq-support-content {
    flex: 1;
}

.new-product-list-faq-support-content strong {
    display: block;
    margin-bottom: 4px;
    color: #221616;
    font-size: 16px;
    font-weight: 700;
}

.new-product-list-faq-support-content span {
    display: block;
    color: #756565;
    font-size: 14px;
    line-height: 1.6;
}

.new-product-list-faq-support-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9px;
    background: #08a943;
    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.new-product-list-faq-support-btn:hover {
    color: #ffffff;
    background: #078d39;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(8, 169, 67, 0.22);
}

.new-product-list-faq-support-btn i {
    font-size: 16px;
}

@media (max-width: 767px) {
    .new-product-list-faq-support {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 16px;
    }

    .new-product-list-faq-support-content {
        width: calc(100% - 62px);
    }

    .new-product-list-faq-support-btn {
        width: 100%;
        margin-top: 3px;
    }
}

@media (max-width: 480px) {
    .new-product-list-faq-support-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .new-product-list-faq-support-content {
        width: calc(100% - 57px);
    }
}


/* =========================================
   SIMPLE RELATED PRODUCTS SLIDER
========================================= */

.new-product-list-related-section {
    padding: 50px 0;
    overflow: hidden;
    font-family: "Inter", sans-serif;
    background: #fffafa;
}

.new-product-list-related-heading {
    margin-bottom: 25px;
}

.new-product-list-related-heading span {
    display: block;
    margin-bottom: 6px;
    color: #dd0000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.new-product-list-related-heading h2 {
    margin: 0;
    color: #221616;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}

/* Slider Wrapper */

.new-product-list-related-slider-wrap {
    position: relative;
    padding: 0 58px;
}

.new-product-list-related-slider {
    padding: 5px 5px 25px;
}

/* Product Card */

.new-product-list-related-card {
    height: 100%;
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    border: 1px solid #dce4ed;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(141, 0, 0, 0.06);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.new-product-list-related-card:hover {
    color: inherit;
    border-color: #d8b7b7;
    transform: translateY(-5px);
    box-shadow: 0 17px 35px rgba(141, 0, 0, 0.13);
}

.new-product-list-related-image {
    height: 195px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 22px;
    border-bottom: 1px solid #f1e7e7;
    background: #ffffff;
}

.new-product-list-related-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.new-product-list-related-card:hover
.new-product-list-related-image img {
    transform: scale(1.05);
}

/* Product Content */

.new-product-list-related-content {
    padding: 12px;
}

.new-product-list-related-category {
    display: block;
    margin-bottom: 7px;
    color: #dd0000;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.new-product-list-related-content h3 {
    margin: 0 0 5px;
    color: #221616;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
}

.new-product-list-related-card:hover
.new-product-list-related-content h3 {
    color: #dd0000;
}

.new-product-list-related-content p {
    display: -webkit-box;
    min-height: 44px;
    overflow: hidden;
    margin: 0;
    color: #756565;
    font-size: 13px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* Left and Right Buttons */

.new-product-list-related-prev,
.new-product-list-related-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dd0000;
    font-size: 13px;
    border: 1px solid #eadede;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 7px 20px rgba(141, 0, 0, 0.12);
    transform: translateY(-50%);
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.new-product-list-related-prev {
    left: 0;
}

.new-product-list-related-next {
    right: 0;
}

.new-product-list-related-prev:hover,
.new-product-list-related-next:hover {
    color: #ffffff;
    border-color: #dd0000;
    background: var(--new-product-list-gradient);
    box-shadow: 0 10px 25px rgba(141, 0, 0, 0.28);
}

.new-product-list-related-prev.swiper-button-disabled,
.new-product-list-related-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

/* Keep all slide cards equal height */

.new-product-list-related-slider .swiper-wrapper {
    align-items: stretch;
}

.new-product-list-related-slider .swiper-slide {
    height: auto;
}

/* Responsive */

@media (max-width: 991px) {
    .new-product-list-related-section {
        padding: 55px 0;
    }

    .new-product-list-related-image {
        height: 195px;
    }
}

@media (max-width: 767px) {
    .new-product-list-related-section {
        padding: 45px 0;
    }

    .new-product-list-related-heading h2 {
        font-size: 28px;
    }

    .new-product-list-related-slider-wrap {
        padding: 0 43px;
    }

    .new-product-list-related-prev,
    .new-product-list-related-next {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    .new-product-list-related-image {
        height: 190px;
    }
}

@media (max-width: 575px) {
    .new-product-list-related-slider-wrap {
        padding: 0 34px;
    }

    .new-product-list-related-prev,
    .new-product-list-related-next {
        width: 32px;
        height: 32px;
    }

    .new-product-list-related-image {
        height: 205px;
    }

    .new-product-list-related-content {
        padding: 12px;
    }
}