/* =========================================================
   GLOBAL RESET & BASE STYLES
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


/* ===== HTML ===== */

html {
    height: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

@media (max-width: 991px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }
}


/* ===== BODY ===== */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

@media (max-width: 991px) {
    body {
        line-height: 1.42;
    }
}

@media (max-width: 767px) {
    body {
        line-height: 1.35;
        background: #f3f5f8;
    }
}


/* ===== PAGE WRAPPER ===== */

.full-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* ===== MOBILE LIST AREA ===== */

.mobiles-list-area {
    background-color: #ffffff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 5px 15px;
    flex: 1;
    min-width: 0;
}

@media (max-width: 991px) {
    .mobiles-list-area {
        padding: 10px 15px;
        border-radius: 4px;
    }
}

@media (max-width: 767px) {
    .mobiles-list-area {
        margin-top: 50px;
        margin-bottom: 50px;
        padding: 10px 0 20px;
        border-radius: 0px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    }
}


/* ===== LINKS ===== */

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

@media (max-width: 991px) {
    a {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    a {
        font-size: 13px;
    }
}


/* ===== IMAGES & SVG ===== */

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}


/* ===== LISTS ===== */

ul,
ol {
    list-style: none;
}

@media (max-width: 991px) {

    ul,
    ol {
        padding-left: 0;
        margin-left: 0;
    }
}

@media (max-width: 767px) {

    ul,
    ol {
        padding-left: 0;
        margin-left: 0;
    }
}


/* ===== FORM CONTROLS ===== */

button,
input,
textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

@media (max-width: 991px) {

    button,
    input,
    textarea {
        font-size: 15px;
    }
}

@media (max-width: 767px) {

    button,
    input,
    textarea {
        font-size: 14px;
    }
}

/* =========================================================
                    HEADER SECTION
   ========================================================= */


/* ===== MAIN HEADER ===== */

.main-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 1200px;
    height: 75px;
    margin: 0 auto;
    padding: 0 50px;
    z-index: 999;
    background: #0c579c;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .main-header {
        max-width: 1000px;
        height: 65px;
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .main-header {
        max-width: 100%;
        height: 56px;
        padding: 0 15px 0 17px;
    }
}


/* ===== HEADER LAYOUT ===== */

.header-flex-group {
    width: 100%;
    max-width: 1150px;
    min-width: 350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .header-flex-group {
        max-width: 900px;
        min-width: 250px;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .header-flex-group {
        max-width: 100%;
        min-width: 150px;
        padding: 0;
    }
}


/* ===== LOGO ===== */

.logo-container {
    display: flex;
    align-items: center;
    min-width: 120px;
}

.logo-container .logo {
    width: 310px;
    height: 60px;
    display: block;
    background: url(webmobile-logo.webp) no-repeat center / contain;
    filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.3));
    transition:
        transform 0.44s cubic-bezier(0.22, 0.68, 0.48, 1),
        filter 0.44s cubic-bezier(0.22, 0.68, 0.48, 1);
}

.logo-container .logo:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.5));
}

@media (max-width: 991px) {
    .logo-container .logo {
        width: 270px;
        height: 50px;
    }
}

@media (max-width: 767px) {
    .logo-container .logo {
        width: 210px;
        height: 40px;
    }
}


/* ===== DESKTOP SEARCH ===== */

.search-bar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #f3f3f3;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

.search-bar-container:hover {
    box-shadow: 0 1px 15px rgba(49, 49, 49, 0.7);
}

.search-bar-container input {
    width: 360px;
    height: 30px;
    padding: 12px 45px 12px 15px;
    font-size: 12px;
    outline: none;
}

.search-bar-container button {
    width: 45px;
    height: 30px;
    background: #083d6b;
    color: #ffffff;
    border-left: 2px solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-bar-container button:hover {
    background: #f0f7ff;
    color: #083d6b;
}

@media (max-width: 991px) {
    .search-bar-container input {
        width: 260px;
        height: 27px;
        padding: 10px 40px 10px 12px;
        font-size: 11px;
    }

    .search-bar-container button {
        width: 44px;
        height: 27px;
        font-size: 14px;
    }
}


/* ===== MOBILE SEARCH ===== */

.mobile-search-wrapper {
    display: none;
}

@media (max-width: 767px) {
    .search-bar-container input {
        display: none;
    }

    .search-bar-container {
        width: auto;
        padding: 0;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        background: transparent;
        border: none;
        box-shadow: none !important;
    }

    .search-bar-container button {
        height: 27px;
        width: 40px;
        background: #ffffff;
        color: #083d6b;
        border: none;
        font-size: 14px;
        cursor: pointer;
    }

    .mobile-search-wrapper {
        display: block;
        max-height: 0;
        padding: 0 10px;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        background: #ffffff;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
        transition:
            max-height 0.35s ease,
            opacity 0.30s ease,
            transform 0.30s ease,
            margin 0.35s ease,
            padding 0.30s ease;
    }

    .mobile-search-wrapper.active {
        max-height: 70px;
        padding: 6px 14px;
        margin-top: 0;
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-search-container {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-search-container input {
        flex: 1;
        height: 32px;
        padding: 0 12px;
        background: #ffffff;
        border: 1.3px solid #2386e6;
        border-radius: 4px;
        box-shadow: none;
        font-size: 12px;
        outline: none;
        transition: border-color 0.22s;
    }
    .mobile-search-container input:focus {
        border-color: #1756ad;
    }

    .mobile-search-container button {
        width: 42px;
        height: 32px;
        background: #083d6b;
        color: #ffffff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
}


/* ===== MOBILE MENU ICON ===== */

.mobile-icons {
    display: none;
    width: 38px;
    height: 30px;
    padding: 1.5px 6px;
    margin-right: 10px;
    color: #323f4b;
    font-size: 24px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}

.mobile-icons span {
    display: block;
    width: 30px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile-icons:hover,
.mobile-icons:focus {
    color: #1760ae;
    background: #f5f7fa;
    border-radius: 4px;
}

.mobile-icons:active {
    transform: scale(1.08);
    background: #eaf3fb;
}

@media (max-width: 991px) {
    .mobile-icons {
        display: flex;
        text-align: center;
        align-items: center;
    }

    .mobile-icons span {
        width: 30px;
        height: 2px;
        transition: background 0.2s;
    }

    .mobile-icons:hover span {
        background: #083d6b;
    }
}

@media (max-width: 767px) {
    .mobile-icons {
        width: 40px;
        height: 25px;
        border-radius: 2px;
        gap: 6px;
        margin-right: 10px;
    }

    .mobile-icons span {
        width: 30px;
        height: 2px;
        transition: background 0.2s;
    }

    .mobile-icons:hover span {
        background: #083d6b;
    }
}

/* =========================================================
                    NAVIGATION BAR
   ========================================================= */


/* ===== MAIN NAVIGATION ===== */

.main-nav {
    position: sticky;
    top: 0;
    z-index: 998;
    width: 100%;
    max-width: 1200px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #083d6b;
    box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.4);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

@media (max-width: 991px) {
    .main-nav {
        max-width: 1000px;
        height: 40px;
        padding-left: 6px;
        padding-right: 6px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

@media (max-width: 767px) {
    .main-nav {
        width: 100%;
        height: 42px;
        padding: 0 5.5px 0 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        font-family: "Inter", "Segoe UI", Arial, sans-serif;
    }
}


/* ===== NAVIGATION LIST ===== */

.nav-list {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
    list-style: none;
}

@media (max-width: 991px) {
    .nav-list {
        max-width: 900px;
    }
}

@media (max-width: 767px) {
    .nav-list {
        width: auto;
        max-width: 100%;
        padding: 0;
        justify-content: space-between;
    }

    .nav-list::-webkit-scrollbar {
        display: none;
    }
}


/* ===== NAVIGATION LINKS ===== */

.nav-list li a {
    height: 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        "Open Sans",
        "Helvetica Neue",
        sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.1s;
}

.nav-list li a:hover {
    background: #062f52;
}

@media (max-width: 991px) {
    .nav-list li a {
        height: 40px;
        padding: 0 18px;
        font-size: 12.5px;
    }
}

@media (max-width: 767px) {
    .nav-list li a {
        height: 42px;
        padding: 0 min(30px, 3vw) 0 max(10px, 2vw);
        font-size: 14px;
        font-weight: 500;
    }
}


/* ===== RESPONSIVE NAVIGATION ITEMS ===== */

@media (max-width: 991px) {
    #nav-contact-us {
        display: none;
    }
}

@media (max-width: 767px) {

    #nav-buying-guide,
    #nav-pta-guide,
    #nav-about-us,
    #nav-news-reviews,
    #nav-contact-us {
        display: none;
    }
}

/* =========================================================
                     FOOTER SECTION
   ========================================================= */


/* ===== MAIN FOOTER ===== */

.site-footer {
    width: 100%;
    max-width: 1170px;
    margin: 30px auto 0;
    padding: 20px 15px 10px;
    color: #000000;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
    border-top: 2px solid #083d68;
}

@media (max-width: 991px) {
    .site-footer {
        max-width: 900px;
        margin-top: 20px;
        padding: 18px 10px 8px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        max-width: 100%;
        margin: 0;
        padding: 0 0 12px;
        display: flex;
        flex-direction: column;
        background-color: #eaf3fb;
    }

    .footer-content {
        margin: 0;
        padding: 12px 10px;
        order: 1;
    }

    .footer-alert {
        margin-top: 0;
        margin-bottom: 4px;
        order: 2;
    }
}


/* ===== FOOTER LOGO ===== */

.footer-logo {
    font-family: "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 1px;
}

.footer-logo span {
    color: #0c579c;
    font-weight: 1000;
}

@media (max-width: 991px) {
    .footer-logo {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .footer-logo {
        margin: 10px 0 15px;
        font-family: "Quicksand", "Inter", "Urbanist", "Poppins", Arial, sans-serif;
        font-size: 28px;
        font-weight: 1000;
        letter-spacing: -0.1px;
    }
}


/* ===== FOOTER TAGLINE ===== */

.footer-tagline {
    color: #666666;
    font-size: 13.5px;
}

@media (max-width: 991px) {
    .footer-tagline {
        font-size: 12.5px;
    }
}

@media (max-width: 767px) {
    .footer-tagline {
        font-size: 14px;
    }
}


/* ===== FOOTER LINKS ===== */

.footer-links {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: #2563eb;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Oxygen,
        Ubuntu,
        Cantarell,
        "Open Sans",
        "Helvetica Neue",
        sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000099;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .footer-links {
        gap: 7px;
        margin: 7px 0;
    }

    .footer-links a {
        font-size: 12.5px;
    }
}

@media (max-width: 767px) {
    .footer-links {
        margin: 15px 0;
        align-items: center;
        gap: 8px;
        font-size: 15.5px;
        line-height: 1.3;
    }

    .footer-links a {
        font-size: 13.5px;
    }
}


/* ===== FOOTER ALERT ===== */

.footer-alert p {
    margin: 10px 0;
    color: #555555;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.footer-alert p a:hover {
    color: #2563eb;
}

.footer-alert p strong {
    color: #000000;
}

@media (max-width: 991px) {
    .footer-alert p {
        margin: 8px 0;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .footer-alert p {
        margin: 0;
        padding: 0 10px;
        line-height: 1.7;
    }

    .footer-alert-note {
        display: none !important;
    }
}


/* ===== FOOTER BOTTOM ===== */

.footer-bottom {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ebebeb;
}

.footer-bottom p {
    margin: 0;
    color: #666666;
    font-family: "Inter", "Calibri", "Arial", sans-serif;
    font-size: 14px;
    letter-spacing: 0.15px;
}

.footer-bottom strong {
    color: #000000;
    font-weight: 600;
}

@media (max-width: 991px) {
    .footer-bottom {
        margin-top: 7px;
        padding-top: 6px;
    }

    .footer-bottom p {
        font-size: 12.5px;
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        margin-top: 8px;
        margin-bottom: 2px;
        padding: 3px 0;
        border-bottom: 1px solid #ebebeb;
    }

    .footer-bottom p {
        margin-top: 2px;
        margin-bottom: 2px;
        font-size: 13.5px;
    }

    .footer-bottom p strong {
        font-size: 14.5px;
    }
}


/* ===== MOBILE QUICK LINKS ===== */

@media (max-width: 767px) {
    .footer-quick-links {
        width: 100%;
        height: 40px;
        padding-left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #0d4b82;
        font-family: "Inter", "Segoe UI", Arial, sans-serif;
        font-size: 12.5px;
    }

    .footer-quick-links a {
        height: 40px;
        margin: 0;
        display: flex;
        flex: 1 1 0%;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.3px;
        text-align: center;
        text-decoration: none;
        white-space: nowrap;
        transition: color 0.18s;
    }

    .footer-quick-links a:hover {
        text-decoration: #1e3a8a;
    }
}

@media (min-width: 768px) {
    .footer-quick-links {
        display: none !important;
    }
}

/* =========================================================
                  LEFT SIDEBAR LOGO
   ========================================================= */


/* ===== LOGO HEADER ===== */

.leftside-logo-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding-left: 15px;
    padding-right: 6px;
    display: none !important;
    align-items: center;
    justify-content: flex-start;
    background: #0c579c;
}

@media (max-width: 991px) {
    .leftside-logo-wrap {
        height: 65px;
        padding: 0 15px;
        display: flex !important;
    }
}

@media (max-width: 767px) {
    .leftside-logo-wrap {
        height: 56px;
        padding: 0 20px 0 30px;
    }
}


/* ===== LOGO LINK & IMAGE ===== */

.leftside-logo-link {
    margin-right: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: none;
    border: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
}

.leftside-logo-img {
    height: 44px;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.3));
    transition: 0.3s;
}

.leftside-logo-img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.5));
}

@media (max-width: 991px) {
    .leftside-logo-img {
        height: 35px;
    }
}

@media (max-width: 767px) {
    .leftside-logo-img {
        width: 220px;
        height: 30px;
    }
}


/* ===== CLOSE BUTTON ===== */

.leftside-logo-close-btn {
    position: relative;
    z-index: 1010;
    width: 25px;
    height: 25px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #08426e;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.leftside-logo-close-btn:hover {
    background: #e3effa;
    color: #08426e;
}

.leftside-logo-close-btn i {
    font-size: 14px;
    line-height: 1;
    pointer-events: none;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

/* =========================================================
                   LEFT SIDEBAR SECTION
   ========================================================= */


/* ===== SIDEBAR LAYOUT ===== */

.left-sidebar {
    width: 23%;
    min-width: 230px;
    max-width: 320px;
    height: min-content;
    overflow: hidden;
    background-color: #ffffff;
    color: #000000;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .left-sidebar {
        width: 30%;
        min-width: 180px;
        max-width: 250px;
        border-radius: 4px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.09);
    }
}

@media (max-width: 767px) {
    .left-sidebar {
        width: 100%;
        min-width: 0;
        max-width: none;
        height: 100vh;
        margin-bottom: 0;
        padding: 0;
        overflow-y: auto;
        border-radius: 0;
        box-shadow: none;
        -webkit-overflow-scrolling: touch;
    }
}


/* ===== SIDEBAR DRAWER ===== */

@media (max-width: 991px) {
    #left-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        right: auto;
        bottom: auto;
        z-index: 9999;

        width: 85vw;
        max-width: 360px;
        min-width: 0;
        height: 100vh;
        height: 100dvh;

        margin: 0;
        padding: 0;
        display: block;

        overflow-y: auto;
        overflow-x: hidden;

        border-radius: 0;
        box-shadow: 2px 0 18px rgba(20, 40, 120, 0.14);

        transform: translateX(-100%);
        transition:
            transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.32s ease;

        will-change: transform;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        scrollbar-width: none;
    }

    #left-sidebar.active {
        transform: translateX(0);
    }

    #left-sidebar::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 767px) {
    #left-sidebar {
        width: 83vw;
    }
}


/* ===== SIDEBAR OVERLAY ===== */

@media (max-width: 991px) {
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9998;

        background: rgba(20, 40, 120, 0.34);

        -webkit-backdrop-filter: blur(7px);
        backdrop-filter: blur(7px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            opacity 0.28s ease,
            visibility 0.28s ease,
            -webkit-backdrop-filter 0.28s ease,
            backdrop-filter 0.28s ease;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}


/* ===== FILTER GROUP ===== */

.filter-group {
    width: 100%;
    overflow: hidden;
    background: #f0f7ff;
}

@media (max-width: 991px) {
    .filter-group {
        background: #f5fafe;
    }
}

@media (max-width: 767px) {
    .filter-group {
        background: #f8fbfe;
    }
}


/* ===== FILTER HEADINGS ===== */

.filter-group h3 {
    margin: 0;
    padding: 9px 0;
    background: #0c579c;
    color: #ffffff;
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0.3px;
    text-align: center;
}

.filter-group h3 i {
    margin-right: 4px;
    font-size: 16px;
    opacity: 0.82;
}

@media (max-width: 991px) {
    .filter-group h3 {
        padding: 9.5px 0;
        background: #083d6b;
        font-size: 18px;
    }

    .filter-group h3 i {
        margin-right: 3px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .filter-group h3 {
        padding: 10.5px 0;
    }
}


/* ===== FILTER LIST ===== */

.filter-list {
    padding: 10px 5px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    list-style: none;
}

.range.filter-list {
    grid-template-columns: 1fr;
}

@media (max-width: 991px) {
    .filter-list {
        padding: 10px 6px;
    }
}

@media (max-width: 767px) {
    .filter-list {
        padding: 10px 5px;
    }
}


/* ===== FILTER LINKS ===== */

.filter-list li a {
    padding: 7px 0;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ffffff;
    color: #334155;

    border: 1px solid #e2e8f0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.025);

    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
    text-decoration: none;

    transition:
        background-color 0.11s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.11s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.11s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.filter-list li a:hover {
    background: #f0f7ff;
    border-color: #2563eb;
    box-shadow: 0 4px 9px rgba(37, 99, 235, 0.18);
}

.filter-list li a:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(37, 99, 235, 0.11);
}

@media (max-width: 991px) {
    .filter-list li a {
        padding: 8px 0;
        font-size: 12px;
    }

    .filter-list li a:hover {
        box-shadow: 0 3px 7px rgba(37, 99, 235, 0.13);
    }

    .filter-list li a:active {
        box-shadow: 0 1px 4px rgba(37, 99, 235, 0.09);
    }
}

@media (max-width: 767px) {
    .filter-list li a {
        font-size: 12.5px;
    }

    .filter-list li a:hover {
        box-shadow: 0 2px 5px rgba(37, 99, 235, 0.11);
    }

    .filter-list li a:active {
        box-shadow: 0 1px 3px rgba(37, 99, 235, 0.08);
    }
}

/* =========================================================
                    MAIN PAGE LAYOUT
   ========================================================= */


/* ===== MAIN CONTENT LAYOUT ===== */

.main-content-layout {
    width: 100%;
    max-width: 1050px;
    margin: 30px auto 0;
    padding: 10px 0;
    display: flex;
    flex: 1;
    gap: 15px;
    transition: all 0.2s ease;
}

@media (max-width: 991px) {
    .main-content-layout {
        max-width: 95%;
        margin-top: 18px;
        padding: 0;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .main-content-layout {
        max-width: 100%;
        margin-top: 0;
        padding: 0;
        flex-direction: column;
        gap: 7px;
    }
}


/* ===== HERO HEADING ===== */

.hero-h1 {
    margin-bottom: 20px;
    color: #1e3a8a;
    font-size: 30px;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .hero-h1 {
        margin-bottom: 14px;
        font-size: 23px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-h1 {
        margin-bottom: 9px;
        font-size: 16px;
        text-align: center;
    }
}

/* =========================================================
                    MOBILE & PHONE CARDS
   ========================================================= */


/* ===== MOBILE CARDS GRID ===== */

.mobile-grid {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    padding: 0 5px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    box-sizing: border-box;
    overflow-x: unset;
}

@media (max-width: 991px) {
    .mobile-grid {
        width: 100%;
        max-width: 100%;
        margin: 18px 0 15px;
        padding: 0 3px;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
        box-sizing: border-box;
        overflow-x: unset;
    }

    .mobile-grid>* {
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .mobile-grid {
        width: fit-content;
        max-width: 100%;
        margin: 12px auto;
        padding: 0 2px;
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        gap: 10px;
    }
}


/* ===== HOME MOBILE HORIZONTAL GRID ===== */

@media (max-width: 767px) {
    .home-mobile-grid {
        display: flex;
        gap: 7px;
        padding-bottom: 4px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .home-mobile-grid::-webkit-scrollbar {
        display: none;
    }

    .home-mobile-grid .mobile-grid {
        width: auto;
        min-width: max-content;
        margin: 50px 0 30px;
        padding: 0 10px;
        display: flex !important;
        flex-direction: row;
        gap: 7px;
    }

    .home-mobile-grid .mobile-card {
        min-width: 125px;
        max-width: 125px;
        flex: 0 0 auto;
    }
}


/* ===== MOBILE CARD ===== */

.mobile-card {
    position: relative;
    padding: 10px 8px 8px;
    overflow: hidden;
    background: #ffffff;
    border: 1.5px solid #e0e9fa;
    border-radius: 6px;
    text-align: center;
    transition:
        border-color 0.16s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-card:hover {
    border-color: #b7cef6;
    box-shadow:
        0 3px 10px 0 rgba(20, 110, 200, 0.08),
        0 0.5px 1.5px 0 rgba(40, 80, 170, 0.04);
}

@media (max-width: 991px) {
    .mobile-card {
        padding: 8px;
        border-width: 1.2px;
        border-radius: 5px;
    }
}

@media (max-width: 767px) {
    .mobile-card {
        min-width: 125px;
        max-width: 125px;
        padding: 10px 4px 4px;
        border: 1px solid #d3e3fa;
        border-radius: 2px;
    }
}


/* ===== MOBILE CARD IMAGE ===== */

.mobile-card img {
    width: 100%;
    height: 122px;
    display: block;
    object-fit: contain;
    image-rendering: auto;
    transition: box-shadow 0.13s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-card:hover img {
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: none;
    transform: none;
}

@media (max-width: 991px) {
    .mobile-card img {
        height: 110px;
    }
}

@media (max-width: 767px) {
    .mobile-card img {
        height: 120px;
    }
}


/* ===== MOBILE CARD TITLE ===== */

.mobile-card h4 {
    margin-top: 5px;
    margin-bottom: 3px;
    display: -webkit-box;
    overflow: hidden;
    color: #333749;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.4px;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media (max-width: 991px) {
    .mobile-card h4 {
        margin-top: 3px;
        margin-bottom: 2px;
        font-size: 11.5px;
    }
}

@media (max-width: 767px) {
    .mobile-card h4 {
        height: 47px;
        margin-top: 2px;
        margin-bottom: 6px;
        font-size: 12.5px;
    }
}


/* ===== MOBILE CARD PRICE ===== */

.mobile-card p {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    color: #000099;
    border-radius: 3px;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .mobile-card p {
        padding: 2px 0;
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .mobile-card p {
        padding: 2px 0;
        background-color: #f4f7fd;
        font-size: 14px;
    }
}


/* ===== PHONE CARDS GRID ===== */

.phone-grid-container {
    max-width: 1480px;
    margin: 0 auto 28px;
    padding: 14px 5px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    font-family: Arial, sans-serif;
}

@media (max-width: 991px) {
    .phone-grid-container {
        max-width: 900px;
        margin: 0 auto 20px;
        padding: 8px 3px;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .phone-grid-container {
        max-width: 99vw;
        margin: 0 auto 11px;
        padding: 4px 2px;
        grid-template-columns: 1fr;
        gap: 7px;
    }
}


/* ===== PHONE CARD ===== */

.phone-card {
    min-height: 235px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border: 1px solid #c8d6e5;
    border-radius: 7px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.045);
}

@media (max-width: 991px) {
    .phone-card {
        min-height: 170px;
        border-radius: 6px;
    }
}

@media (max-width: 767px) {
    .phone-card {
        min-height: 120px;
        padding: 6px 2px;
        border-radius: 5px;
    }
}


/* ===== PHONE CARD IMAGE ===== */

.card-image-box {
    width: 100%;
    max-width: 108px;
    margin-bottom: 8px;
    padding: 0;
    display: flex;
    justify-content: center;
}

.card-image-box img {
    width: 100%;
    height: 130px;
    margin-top: 10px;
    display: block;
    object-fit: contain;
}

@media (max-width: 991px) {
    .card-image-box {
        max-width: 78px;
        margin-bottom: 5px;
    }

    .card-image-box img {
        height: 70px;
        margin-top: 7px;
    }
}

@media (max-width: 767px) {
    .card-image-box {
        max-width: 55px;
        margin-bottom: 3px;
    }

    .card-image-box img {
        height: 44px;
        margin-top: 4px;
    }
}


/* ===== PHONE CARD DETAILS ===== */

.card-details-box {
    width: 100%;
    padding: 0 8px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 991px) {
    .card-details-box {
        padding: 0 4px 8px;
    }
}

@media (max-width: 767px) {
    .card-details-box {
        padding: 0 2.5px 6px;
    }
}


/* ===== PHONE TITLE ===== */

.phone-title {
    min-height: 28px;
    max-width: 92%;
    display: -webkit-box;
    overflow: hidden;
    color: #0d1b2a;
    font-size: 11.4px;
    font-weight: bold;
    line-height: 1.18;
    text-align: center;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 991px) {
    .phone-title {
        min-height: 22px;
        font-size: 10px;
    }
}

@media (max-width: 767px) {
    .phone-title {
        min-height: 16px;
        font-size: 8.7px;
    }
}


/* ===== PHONE PRICE ===== */

.phone-price {
    color: #0b3e8e;
    font-size: 11.8px;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 991px) {
    .phone-price {
        font-size: 10.2px;
    }
}

@media (max-width: 767px) {
    .phone-price {
        font-size: 8.5px;
    }
}


/* ===== CARD ACTIONS ===== */

.card-actions {
    width: 100%;
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

@media (max-width: 991px) {
    .card-actions {
        margin-top: 4px;
        gap: 3px;
    }
}

@media (max-width: 767px) {
    .card-actions {
        margin-top: 2px;
        gap: 2px;
    }
}


/* ===== MORE DETAILS BUTTON ===== */

.btn-more-details {
    width: 92%;
    min-width: 0;
    padding: 4px 10px;
    display: inline-flex;
    justify-content: center;
    background: #ffffff;
    color: #1e272e;
    border: 1px solid #718093;
    border-radius: 3px;
    font-size: 9.3px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.btn-more-details:hover {
    background-color: #e4e9f7;
}

@media (max-width: 991px) {
    .btn-more-details {
        width: 98%;
        padding: 3px 0;
        font-size: 8.3px;
    }
}

@media (max-width: 767px) {
    .btn-more-details {
        width: 100%;
        padding: 2px 0;
        font-size: 7.1px;
    }
}


/* ===== COMPARE BUTTON ===== */

.btn-compare {
    width: 92%;
    min-width: 0;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #0f4c81;
    color: #ffffff;
    border: 1px solid #718093;
    border-radius: 4px;
    font-size: 9.3px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.25s ease;
}

.btn-compare:hover {
    background-color: #0456c8;
}

@media (max-width: 991px) {
    .btn-compare {
        width: 98%;
        padding: 3px 0;
        font-size: 8.3px;
    }
}

@media (max-width: 767px) {
    .btn-compare {
        width: 100%;
        padding: 2px 0;
        font-size: 7.1px;
    }
}

/* =========================================================
                    BREADCRUMBS SECTION
   ========================================================= */


/* ===== BREADCRUMB CONTAINER ===== */

.clean-breadcrumbs {
    min-height: 18px;
    margin: 5px 0;
    padding: 1px 15px;
    background: #f2f8fd;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .clean-breadcrumbs {
        min-height: 16px;
        padding: 3px 10px;
        border-radius: 3px;
    }
}

@media (max-width: 767px) {
    .clean-breadcrumbs {
        min-height: 14px;
        margin: 2px 4px;
        padding: 0 5px;
        background-color: #ffffff;
        border-radius: 2px;
    }
}


/* ===== BREADCRUMB LIST ===== */

.breadcrumb-list {
    min-height: 22px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    font-size: 11.8px;
    font-weight: 500;
    align-self: center;
}

@media (max-width: 991px) {
    .breadcrumb-list {
        min-height: 16px;
        gap: 5px;
        font-size: 11px;
        align-self: center;
    }
}

@media (max-width: 767px) {
    .breadcrumb-list {
        min-height: 13px;
        gap: 3px;
        font-size: 10px;
        border: 1px solid #e4e8ef;
        border-radius: 2px;
        background-color: #f8fafc;
        padding: 2.5px 6px;
        align-self: center;
    }
}


/* ===== BREADCRUMB LINKS ===== */

.breadcrumb-link {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    color: #2563eb;
    font-size: inherit;
    line-height: 1;
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumb-link:hover,
.breadcrumb-link:focus {
    color: #000099;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .breadcrumb-link {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-link {
        font-size: 12px;
    }
}


/* ===== BREADCRUMB SEPARATOR ===== */

.breadcrumb-separator {
    padding: 0 2px;
    color: #94a3b8;
    font-size: 16px;
    line-height: 1;
    user-select: none;
}

@media (max-width: 991px) {
    .breadcrumb-separator {
        padding: 0 4px;
        font-size: 16px;
    }

}
@media (max-width: 767px) {
    .breadcrumb-separator {
        padding: 0 6px;
        font-size: 16px;
    }
}


/* ===== CURRENT BREADCRUMB ===== */

.breadcrumb-current {
    color: #000099;
}

@media (max-width: 991px) {
    .breadcrumb-current {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-current {
        font-size: 12px;
        line-height: 1.35;
        white-space: normal;
        overflow-wrap: normal;
    }
}

@media (max-width: 767px) {
    .breadcrumb-list {
        display: block;
        line-height: 1.5;
    }

    .breadcrumb-list > li {
        display: inline;
    }

    .breadcrumb-separator {
    display: inline;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
}

/* =========================================================
                    MOBILES CARD MAIN ITRO PAGE
   ========================================================= */


/* ===== BRAND HEADER ===== */

.brand-header-clean {
    padding: 60px 5px 20px;
    background: #ffffff;
    text-align: center;
}

@media (max-width: 991px) {
    .brand-header-clean {
        padding: 50px 3px 16px;
    }
}

@media (max-width: 767px) {
    .brand-header-clean {
        padding: 14px 2px 10px;
    }
}


/* ===== MAIN HEADING ===== */

.main-heading {
    margin-bottom: 10px;
    font-weight: 800;
}

@media (max-width: 991px) {
    .main-heading {
        margin-bottom: 8px;
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .main-heading {
        margin-bottom: 6px;
        font-size: 19px;
    }
}


/* ===== SEO HEADING ===== */

.main-seo-heading {
    color: #1428a0;
    font-family: "SamsungOne", "Poppins", Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .main-seo-heading {
        font-size: 28px;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 767px) {
    .main-seo-heading {
        margin-top: 25px;
        font-size: 25px;
        letter-spacing: 0.6px;
    }
}


/* ===== TITLE ACCENT ===== */

.title-accent {
    height: 3px;
    margin: 5px 0;
    background: #0c3050;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .title-accent {
        height: 2.5px;
        margin: 4px 0;
    }
}

@media (max-width: 767px) {
    .title-accent {
        height: 2.5px;
        margin: 3px 0;
    }
}


/* ===== INTRO TEXT ===== */

.intro-text {
    padding: 6px 14px;
    color: #555555;
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.intro-text strong {
    color: #333333;
}

@media (max-width: 991px) {
    .intro-text {
        padding: 5px 8px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .intro-text {
        padding: 8px 4px 6px;
        font-size: 14.5px;
        line-height: 1.3;
    }
    .intro-text strong {
        font-size: 14px;
        letter-spacing: 1.3;
    }
}


/* ===== SECTION LABEL ===== */

.brand-section-label {
    margin: 15px 5px 25px;
    padding: 4px 10px;
    display: block;
    background-color: #fafdff;
    color: #1760ae;
    border-top: 1.5px solid #e2e8f0;
    border-bottom: 1.5px solid #e2e8f0;
    border-left: 4px solid #1760ae;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.brand-section-label h2{
    font-size: 16px;
}

@media (max-width: 991px) {
    .brand-section-label {
        margin: 12px 3px 19px;
        padding: 4px 12px;
        border-radius: 3px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .brand-section-label {
        margin: 8px 8px 13px;
        padding: 4px 12px;
        border-radius: 2px;
        font-size: 16px;
    }
    

}


/* ===== SEO ARTICLE FOOTER ===== */

.brand-article-footer {
    margin: 50px 10px;
    padding: 30px;
    background: #fafafa;
    border-radius: 20px;
}

.brand-article-footer h2 {
    margin-bottom: 20px;
    color: #222222;
    font-size: 26px;
}

.brand-article-footer p {
    margin-bottom: 20px;
    color: #666666;
    font-size: 14.5px;
    line-height: 1.9;
}

@media (max-width: 991px) {
    .brand-article-footer {
        margin: 35px 4px;
        padding: 16px;
        border-radius: 13px;
    }

    .brand-article-footer h2 {
        margin-bottom: 14px;
        font-size: 20px;
    }

    .brand-article-footer p {
        margin-bottom: 12px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .brand-article-footer {
        margin: 18px 2px;
        padding: 8px;
        border-radius: 7px;
    }

    .brand-article-footer h2 {
        margin-bottom: 7px;
        font-size: 17px;
    }

    .brand-article-footer p {
        margin-bottom: 6px;
        font-size: 11.5px;
    }
}

/* =========================================================
                  PAGINATION BUTTONS
   ========================================================= */


/* ===== PAGINATION CONTAINER ===== */

.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    user-select: none;
}

@media (max-width: 991px) {
    .pagination-container {
        gap: 9px;
        margin: 14px 0;
    }
}

@media (max-width: 767px) {
    .pagination-container {
        gap: 5px;
        margin: 9px 0;
    }
}


/* ===== PAGINATION BUTTONS ===== */

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(.active):not(.disabled) {
    background-color: #f9f9f9;
    border-color: #a0a0a0;
}

.pagination-btn.active {
    background-color: #a4c9fe;
    color: #1e3a63;
    border-color: #a4c9fe;
    font-weight: 500;
}

@media (max-width: 991px) {
    .pagination-btn {
        min-width: 34px;
        height: 34px;
        padding: 0 4px;
        border-radius: 7px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .pagination-btn {
        min-width: 28px;
        height: 28px;
        padding: 0 2px;
        border-radius: 5px;
        font-size: 13px;
    }
}


/* ===== PAGINATION ARROWS ===== */

.pagination-arrow {
    height: 40px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: #333333;
    border: none;
    box-sizing: border-box;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

@media (max-width: 991px) {
    .pagination-arrow {
        height: 34px;
        padding: 0 7px;
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .pagination-arrow {
        height: 28px;
        padding: 0 4px;
        font-size: 14px;
    }
}


/* ===== DISABLED STATE ===== */

.pagination-arrow.disabled,
.pagination-btn.disabled {
    color: #cccccc;
    cursor: not-allowed;
    pointer-events: none;
}


/* ===== PAGINATION DOTS ===== */

.pagination-dots {
    padding: 0 4px;
    color: #333333;
    font-size: 16px;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .pagination-dots {
        padding: 0 3px;
        font-size: 14px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 767px) {
    .pagination-dots {
        padding: 0 2px;
        font-size: 12px;
        letter-spacing: 1px;
    }
}


/* ==========================================
   MOBILE INTRO - FINAL 5 LINE EXPAND
========================================== */

.intro-expand-toggle {
    display: none;
}

@media (max-width: 767px) {

    .intro-expand-wrap {
        width: 100%;
    }

    .intro-text-box {
        position: relative;
        overflow: hidden;

        transition:
            height 0.48s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .intro-expand-text {
        margin: 0;
        line-height: 1.40;
    }

    .intro-expand-toggle {
        display: flex;

        align-items: center;
        justify-content: center;

        gap: 6px;

        width: max-content;

        margin: 0px auto 0px;
        padding: 1px 7px;

        border: 0;
        background: transparent;

        color: #1760ae;

        font-family: inherit;
        font-size: 13px;
        font-weight: 600;

        cursor: pointer;
    }

    .intro-expand-toggle i {
        font-size: 12px;

        transition:
            transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .intro-expand-wrap.expanded .intro-expand-toggle i {
        transform: rotate(180deg);
    }
}

/* Tablet + Desktop */
@media (min-width: 768px) {

    .intro-text-box {
        height: auto !important;
        overflow: visible;
    }

    .intro-expand-toggle {
        display: none !important;
    }
}

/* =========================================================
                  ADVERTISEMENT SLOTS
   ========================================================= */


/* ===== AD SLOT ===== */

.ad-slot {
    width: 100%;
    max-width: 100%;
    margin: 24px 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e7edf5;
    border-radius: 6px;
    box-sizing: border-box;
    overflow: hidden;
    clear: both;
}


/* ===== AD LABEL ===== */

.ad-label {
    width: 100%;
    margin-bottom: 5px;
    display: block;
    color: #8a97a8;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.4px;
    text-align: center;
    text-transform: uppercase;
}


/* ===== AD CONTENT ===== */

.ad-content {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafcff;
    box-sizing: border-box;
}

.ad-content ins.adsbygoogle {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}


/* ===== RESPONSIVE ADS ===== */

@media (min-width: 992px) {
    .ad-slot {
        margin: 28px 0;
        padding: 8px 10px;
    }

    .ad-content {
        min-height: 110px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ad-slot {
        margin: 22px 0;
        padding: 7px;
        border-radius: 5px;
    }

    .ad-content {
        min-height: 100px;
    }

    .ad-label {
        font-size: 8.5px;
    }
}

@media (max-width: 767px) {
    .ad-slot {
        width: calc(100% - 12px);
        max-width: calc(100% - 12px);
        margin: 18px 6px;
        padding: 6px;
        border-radius: 4px;
    }

    .ad-content {
        width: 100%;
        min-height: 90px;
    }

    .ad-label {
        margin-bottom: 4px;
        font-size: 8px;
        letter-spacing: 0.3px;
    }
}


/* ===== AD VISIBILITY ===== */

.ad-slot {
    display: none !important;
}

.ad-slot.ad-active {
    display: flex !important;
}