.hero-flex-content {
    display: flex;
    padding: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-content-left {
    width: 50%;
}

.hero-content-right {
    margin-top: -5rem;
}

/* Base */
.container {
    width: 100%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* SM >= 576px */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

/* MD >= 768px */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

/* LG >= 992px */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

/* XL >= 1200px */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* XXL >= 1400px */
@media (min-width: 1400px) {
    .container {
        max-width: 1349px;
    }
}

/* Ultra-wide screens (optional) */
@media (min-width: 1800px) {
    .container {
        max-width: 1345px;
    }
}




/* RIGHT SIDE WRAPPER (2 columns) */
.hero-image-loop {
    width: 100%;
    max-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

/* Each column viewport */
.hero-loop-col {
    height: 600px;
    overflow: hidden;
    position: relative;
}

/* Track (vertical list) */
.hero-loop-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    will-change: transform;
    animation: loopUp 50s linear infinite;
    /* âœ… slower */
}

/* Right column direction (down) */
.hero-loop-track.reverse {
    animation: loopDown 50s linear infinite;
    /* âœ… slower */
}

/* Slide wrapper: FIXED SIZE like Jobber */
.hero-slide {
    position: relative;
    width: 243px;
    height: 289px;
    margin: 0;
    overflow: hidden;
    background: #111;
    border-radius: 0;
    /* you set 0 already */
}

/* center align slides in each column */
.hero-loop-col.left .hero-slide,
.hero-loop-col.right .hero-slide {
    margin-left: auto;
    margin-right: auto;
}

/* Image: absolute full cover */
.hero-slide img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text overlay like Jobber */
.hero-slide figcaption {
    position: absolute;
    bottom: .75rem;
    left: .625rem;
    padding-left: .625rem;
    border-left: 2px solid #fff;
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
    max-width: calc(100% - 1.25rem);
}

.hero-slide figcaption:empty {
    display: none;
}

/* Optional: gradient */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0) 55%);
    pointer-events: none;
}

/* Animations */
@keyframes loopUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes loopDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .hero-loop-track,
    .hero-loop-track.reverse {
        animation: none !important;
        transform: none !important;
    }
}

/* MOBILE: one horizontal row, right -> left */
@media (max-width: 767px) {

    .hero-content-right {
        margin-top: 16px;
    }
    .hero-content-left{
        width: 100%;
    }

    /* 2 columns layout disable */
    .hero-image-loop {
        display: block;
        /* grid off */
        max-width: 100%;
        width: 100%;
    }

    /* columns act as wrappers but no vertical viewport */
    .hero-loop-col {
        height: auto;
        overflow: visible;
    }

    /* Hide the second moving direction behavior */
    .hero-loop-track.reverse {
        animation: none !important;
    }

    /* Make first track horizontal */
    .hero-loop-col.left .hero-loop-track {
        flex-direction: row;
        /* âœ… horizontal */
        gap: 12px;
        width: max-content;
        animation: loopLeft 35s linear infinite;
        /* âœ… slow */
    }

    /* Make slides smaller for mobile */
    .hero-slide {
        width: 180px;
        /* adjust */
        height: 215px;
        /* keep ratio */
        flex: 0 0 auto;
    }

    /* IMPORTANT: Show right column images after left column images
     We'll append right column slides into left track using CSS only:
     Hide right column track container visual but keep its slides? (Not possible purely)
     So simplest: hide right column column and move its slides into left column in HTML.
  */

    /* If you DON'T want HTML change, then show both tracks one after another (two rows). */
    .hero-loop-col.right {
        display: none;
        /* âœ… one row only */
    }

    /* Horizontal loop animation */
    @keyframes loopLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }

        /* because duplicated */
    }
}










/* .video-thumnail-shopify video{
    width: 37rem;
} */
.video-wrapper {
    width: 100%;
    max-width: 1689px;
    /* 923 -> 1050 (or 1100) */
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* or contain (your choice) */
    display: block;
}



.pink-text {
    color: #ff385c;
    font-style: italic;
}

.shopify-hero-p {
    margin-top: 1rem;
    font-size: 15px;
}

.email-demo {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #313438;
    border-radius: 17px;
    /* full pill */
    overflow: hidden;
    height: 63px;
    max-width: 420px;

    padding: 0.5rem;
    margin-top: 1.5rem;
}

.email-demo__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 16px;
    font-size: 14px;
    background: white;
    height: 100%;
}

.email-demo__button {
    border: none;
    background-color: #000000;
    /* your color */
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 0 24px;
    height: 100%;
    cursor: pointer;
    border-radius: .8rem;
}

.store-download-container {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
}

.play-store-img {
    width: 190px;
    /* adjust as needed */
}

.app-store-img {
    width: 115px;
    /* adjust as needed */
}


.trusted-reviews {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 1rem;
}

.trusted-title {
    font-size: 13px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 6px;
}

.review-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-row--capterra {
    margin-top: 1.2rem;
}

.review-logo {
    height: 20px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 14px !important;
    height: 13px !important;
}

.star.full::before,
.star.half::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}

.star.full::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="14" height="13" viewBox="0 0 26 24" xmlns="http://www.w3.org/2000/svg"><path fill="%23313438" d="M13.1875 19.5711L5.46208 23.5L6.9375 15.1785L0.6875 9.28522L9.32479 8.07113L13.1875 0.5L17.0502 8.07113L25.6875 9.28522L19.4375 15.1785L20.9129 23.5L13.1875 19.5711Z"/></svg>');
}

.star.half::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="14" height="13" viewBox="0 0 26 24" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="half"><stop offset="50%" stop-color="%23313438"/><stop offset="50%" stop-color="transparent"/></linearGradient></defs><path fill="url(%23half)" d="M13.1875 19.5711L5.46208 23.5L6.9375 15.1785L0.6875 9.28522L9.32479 8.07113L13.1875 0.5L17.0502 8.07113L25.6875 9.28522L19.4375 15.1785L20.9129 23.5L13.1875 19.5711Z"/></svg>');
}

.review-score {
    font-size: 13px;
    color: #888;
}

/* trusted-brands-slider */
.trusted-brands-slider {
    /* background-color: #fff; */
    padding: 0rem;
    /* margin-top: 2.5rem; */
}

.trusted-brands-slider h2 {
    font-size: 1.8rem;
}

.brands {
    overflow: visible;
    width: 100%;
    margin-top: 4rem;
}

.brands-track {
    display: flex;
    width: max-content;
    align-items: center;
}

.brand-logo {
    flex: 0 0 auto;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-height: 35px;
    width: auto;
    object-fit: contain;
    display: block;
}

.loyalty-section {
    background-color: #ffffff;
    color: #000000;
    padding: 103px 20px;
    text-align: center;
    margin-top: 6rem;
}

.loyalty-heading {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.loyalty-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 5rem;
}

.stat-box {
    max-width: 320px;
}

.stat-value {
    font-size: 48px;
    font-weight: bold;
    font-family: "Inter", sans-serif !important;
}

.stat-label {
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.2;
    margin-top: 2rem;
    font-family: "Inter", sans-serif !important;
}

/* Table Comparison */

.comparison-table {
    display: flex;
    margin: 40px auto;
    max-width: 1100px !important;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
}

.capabilities-column {
    background-color: #ffffff;
    color: #000;
    padding: 30px 20px;
    flex: 1;
    min-width: 200px;
    border-radius: 1rem;
}

.cap-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 30px;
    font-family: "Inter", sans-serif !important;
}

.cap-item {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 58px;
    margin-top: 3rem;
    font-family: "Inter", sans-serif !important;
}

.comparison-column {
    flex: 3;
    padding: 30px 40px;
}

.platform-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif !important;

}

.platform-name.bookareview {
    color: black;
}

.platform-name.loyaltylion {
    color: #444;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding: 20px 0;
    font-size: 15px;
    gap: 40px;
}

.platform-info {
    flex: 1;
    color: #333;
    line-height: 1.6;
    font-family: "Inter", sans-serif !important;

}

.table-logo-image {
    width: 2rem;
}

.bookareview-shopify-cta-wrapper {
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    padding: 60px 30px;
    border-radius: 20px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    margin-top: 6rem;
}

.bookareview-shopify-cta-heading {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;

}

.bookareview-shopify-cta-subtext {
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;

}

.bookareview-shopify-cta-button {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: .8rem;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;

}

.bookareview-shopify-cta-button:hover {
    background-color: #ff385c;
}

.bookareview-feedback-section {
    /* background-color: #ffffff; */
    color: #000000;
    padding: 80px 20px;

    text-align: center;
    margin-top: 5rem;
}

.bookareview-feedback-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.bookareview-feedback-subtitle {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    color: #000000;

}

.bookareview-feedback-heading {
    font-size: 36px !important;
    font-weight: bold;
    margin-bottom: 20px;

}

.bookareview-feedback-description {
    font-size: 15px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 50px;

}

.bookareview-feedback-card-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.bookareview-feedback-card {
    /* background-color: #ffffff; */
    border-radius: 16px;
    padding: 24px;
    flex: 1 1 300px;
    max-width: 360px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border: 1px solid transparent;
}

.bookareview-feedback-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    background-color: #ffffff;
}

.bookareview-feedback-card.active {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    background-color: #ffffff;
    /* border: 1px solid #000; */
}

.bookareview-feedback-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;

}

.bookareview-feedback-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #000;

}

.shopify-tailored-section {

    /* background: #fff; */
    padding: 60px 20px;
    text-align: center;
}

.shopify-tailored-header h2 {
    font-size: 3.2rem !important;
    font-weight: bold;
    margin-bottom: 60px;

}

.shopify-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-button {
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.tab-button:hover {
    background-color: #eee;
}

.tab-button.active {
    background-color: #000000;
    font-weight: 600;
    color: white;

}

.shopify-tab-content {
    max-width: 1100px;
    margin: 0 auto;
}

.tab-panel {
    display: none;
    align-items: center;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-panel.active {
    display: flex;
}

.shopify-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

.shopify-text {
    max-width: 500px;
}

.shopify-text h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 90px;

}

.shopify-text p {
    margin-bottom: 25px;
    font-size: 15px;
    color: #333;

}



/* RESPONSIVE STYLES */

/* MOBILE SCREEN 270PX TO 320PX */

@media screen and (min-width: 270px) and (max-width: 320px) {
    .hero-flex-content {
        display: block;
        padding: 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    /* .video-thumnail-shopify video{
    width: 37rem;
} */

    .video-wrapper {
        width: 100%;
        max-width: 1689px;
        /* 923 -> 1050 (or 1100) */
        aspect-ratio: 16 / 9;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        margin-top: 2rem;
    }


    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* or contain (your choice) */
        display: block;
    }



    .shopify-app-heading-one {
        font-size: 2rem;
    }

    .shopify-app-subheading {

        font-size: 1rem;
    }

    .pink-text {
        color: #ff385c;
        font-style: italic;
    }

    .shopify-hero-p {
        margin-top: 2rem;
        font-size: 12px;
    }

    .email-demo {
        display: flex;
        align-items: center;
        background: white;
        border: 1px solid #313438;
        border-radius: 17px;
        /* full pill */
        overflow: hidden;
        height: 63px;
        max-width: 420px;

        padding: 0.5rem;
        margin-top: 1.5rem;
    }

    .email-demo__input {
        flex: 1;
        border: none;
        outline: none;
        padding: 0 16px;
        font-size: 14px;
        background: white;
        height: 100%;
    }

    .email-demo__button {
        border: none;
        background-color: #000000;
        /* your color */
        color: white;
        font-weight: 600;
        font-size: 14px;
        padding: 0 24px;
        height: 100%;
        cursor: pointer;
        border-radius: .8rem;

    }

    .store-download-container {
        display: flex;
        gap: 12px;
        justify-content: flex-start;
        align-items: center;
        margin-top: 1rem;
    }

    .play-store-img {
        width: 140px;
        /* adjust as needed */
    }

    .app-store-img {
        width: 115px;
        /* adjust as needed */
    }


    .trusted-reviews {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 1rem;

    }

    .trusted-title {
        font-size: 13px !important;
        font-weight: 600;
        color: #2c2c2c;
        margin-bottom: 6px;

        text-align: center;
    }

    .review-row {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-direction: column;
    }

    .review-row--capterra {
        margin-top: 1.2rem;
    }

    .review-logo {
        height: 20px;
    }

    .review-stars {
        display: flex;
        gap: 2px;
    }

    .star {
        width: 14px !important;
        height: 13px !important;
    }

    .star.full::before,
    .star.half::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .star.full::before {
        background-image: url('data:image/svg+xml;utf8,<svg width="14" height="13" viewBox="0 0 26 24" xmlns="http://www.w3.org/2000/svg"><path fill="%23313438" d="M13.1875 19.5711L5.46208 23.5L6.9375 15.1785L0.6875 9.28522L9.32479 8.07113L13.1875 0.5L17.0502 8.07113L25.6875 9.28522L19.4375 15.1785L20.9129 23.5L13.1875 19.5711Z"/></svg>');
    }

    .star.half::before {
        background-image: url('data:image/svg+xml;utf8,<svg width="14" height="13" viewBox="0 0 26 24" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="half"><stop offset="50%" stop-color="%23313438"/><stop offset="50%" stop-color="transparent"/></linearGradient></defs><path fill="url(%23half)" d="M13.1875 19.5711L5.46208 23.5L6.9375 15.1785L0.6875 9.28522L9.32479 8.07113L13.1875 0.5L17.0502 8.07113L25.6875 9.28522L19.4375 15.1785L20.9129 23.5L13.1875 19.5711Z"/></svg>');
    }

    .review-score {
        font-size: 13px;
        color: #888;
    }

    /* trusted-brands-slider */
    .trusted-brands-slider {
        /* background-color: #fff; */
        padding: 0rem;
        /* margin-top: 2.5rem; */
    }

    .trusted-brands-slider h2 {

        font-size: 1.8rem;
    }

    .brands {
        overflow: visible;
        width: 100%;
        margin-top: 4rem;
    }

    .brands-track {
        display: flex;
        width: max-content;
        align-items: center;
    }

    .brand-logo {
        flex: 0 0 auto;
        margin: 0 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand-logo img {
        max-height: 35px;
        width: auto;
        object-fit: contain;
        display: block;
    }

    .loyalty-section {
        background-color: #ffffff;
        color: #000000;
        padding: 103px 20px;
        text-align: center;
        margin-top: 0rem;
    }

    .loyalty-heading {
        font-size: 37px;
        font-weight: 600;
        margin-bottom: 50px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;

    }

    .loyalty-stats {
        display: flex;
        justify-content: center;
        gap: 80px;
        flex-wrap: wrap;
        margin-top: 5rem;
    }

    .stat-box {
        max-width: 320px;
    }

    .stat-value {
        font-size: 48px;
        font-weight: bold;

    }

    .stat-label {
        font-size: 12px;
        margin-top: 10px;
        line-height: 1.2;
        margin-top: 2rem;
    }

    .comparison-table {
        display: block;
        padding: 0 20px;
        position: relative;
    }

    /* Show capabilities heading at the top */
    .comparison-table::before {
        content: "CAPABILITIES";
        display: block;
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 20px;
        color: #000;
    }

    .capabilities-column {
        display: none;
    }

    .comparison-column {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .platform-header {
        display: none;
    }

    .comparison-row {
        display: flex;
        flex-direction: column;
        padding: 16px 0;
        border-top: 1px solid #e0e0e0;
        position: relative;
    }

    /* Inject capability heading before each row */
    .comparison-row::before {
        content: '';
        font-weight: bold;
        font-size: 16px;
        color: #222;
        margin-bottom: 10px;
        display: block;
    }

    .comparison-row:nth-child(2)::before {
        content: "Strategy & Support";
    }

    .comparison-row:nth-child(3)::before {
        content: "Review Collection & Requests";
    }

    .comparison-row:nth-child(4)::before {
        content: "Customization & Display Widgets";
    }

    .comparison-row:nth-child(5)::before {
        content: "Moderation & Verification";
    }

    .comparison-row:nth-child(6)::before {
        content: "Analytics & Reporting";
    }

    /* Platform info */
    .comparison-row .platform-info {
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.6;
        position: relative;
        padding-left: 110px;
    }

    /* BookAReview logo injected */
    .comparison-row .platform-info:first-child::before {
        content: "";
        background-image: url('../assets/img/table-bookareview.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        width: 90px;
        height: 20px;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Others label */
    .comparison-row .platform-info:last-child::before {
        content: "Others:";
        position: absolute;
        left: 0;
        top: 0;
        font-weight: 600;
        color: #777;
    }

    /* Hide table logo image (already used inline) */
    .table-logo-image {
        display: none;
    }


    .bookareview-shopify-cta-wrapper {
        background-color: #ffffff;
        color: #000000;
        text-align: center;
        padding: 60px 30px;
        border-radius: 20px;
        max-width: 287px;
        margin: 40px auto;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

        margin-top: 0rem;
    }

    .bookareview-shopify-cta-heading {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 16px;

    }

    .bookareview-shopify-cta-subtext {
        font-size: 11px;
        max-width: 650px;
        margin: 0 auto 30px;
        line-height: 1.6;

    }

    .bookareview-shopify-cta-button {
        background-color: #000000;
        color: #ffffff;
        padding: 12px 28px;
        border: none;
        border-radius: .8rem;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;

    }

    .bookareview-shopify-cta-button:hover {
        background-color: #ff385c;
    }

    .bookareview-feedback-section {
        /* background-color: #ffffff; */
        color: #000000;
        padding: 80px 20px;

        text-align: center;
        margin-top: 0rem;
    }

    .bookareview-feedback-wrapper {
        max-width: 1100px;
        margin: 0 auto;
    }

    .bookareview-feedback-subtitle {
        font-weight: 600;
        font-size: 0.8rem;
        margin-bottom: 12px;
        color: #000000;

    }

    .bookareview-feedback-heading {
        font-size: 1.2rem !important;
        font-weight: bold;
        margin-bottom: 20px;

    }

    .bookareview-feedback-description {
        font-size: 12px;
        line-height: 1.7;
        max-width: 750px;
        margin: 0 auto 50px;

    }

    .bookareview-feedback-card-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .bookareview-feedback-card {
        /* background-color: #ffffff; */
        border-radius: 16px;
        padding: 30px;
        flex: 1 1 300px;
        max-width: 360px;
        text-align: left;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        border: 1px solid transparent;
    }

    .bookareview-feedback-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
        background-color: #ffffff;
    }

    .bookareview-feedback-card.active {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
        background-color: #ffffff;
        /* border: 1px solid #000; */
    }

    .bookareview-feedback-card h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: #000;
    }

    .bookareview-feedback-card p {
        font-size: 12px;
        line-height: 1.6;
        color: #000;

    }

    .shopify-tailored-section {

        /* background: #fff; */
        padding: 0px 20px;
        text-align: center;
    }

    .shopify-tailored-header h2 {
        font-size: 1.2rem !important;
        font-weight: bold;
        margin-bottom: 60px;

    }

    .shopify-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 40px;
    }

    .tab-button {
        padding: 10px 20px;
        background-color: transparent;
        border: none;
        border-radius: 8px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .tab-button:hover {
        background-color: #eee;
    }

    .tab-button.active {
        background-color: #000000;
        font-weight: 600;
        color: white;

    }

    .shopify-tab-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    .tab-panel {
        display: none;
        align-items: center;
        gap: 40px;
        text-align: left;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-panel.active {
        display: flex;
    }

    .shopify-image {
        width: 100%;
        max-width: 500px;
        border-radius: 12px;
    }

    .shopify-text {
        max-width: 500px;
    }

    .shopify-text h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 32px;

    }

    .shopify-text p {
        margin-bottom: 25px;
        font-size: 12px;
        color: #333;
    }
}

/* MOBILE SCREEN 321PX TO 375PX */

@media screen and (min-width: 321px) and (max-width: 375px) {
    .hero-flex-content {
        display: block;
        padding: 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    /* .video-thumnail-shopify video{
    width: 37rem;
} */

    .video-wrapper {
        width: 100%;
        max-width: 1689px;
        /* 923 -> 1050 (or 1100) */
        aspect-ratio: 16 / 9;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        margin-top: 2rem;
    }


    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* or contain (your choice) */
        display: block;
    }

    h1,
    h2 {}

    p {}

    .shopify-app-heading-one {
        font-size: 2.2rem;
    }

    .shopify-app-subheading {}

    .pink-text {
        color: #ff385c;
        font-style: italic;
    }

    .shopify-hero-p {
        margin-top: 2rem;
        font-size: 0.8rem;
    }

    .email-demo {
        display: flex;
        align-items: center;
        background: white;
        border: 1px solid #313438;
        border-radius: 17px;
        /* full pill */
        overflow: hidden;
        height: 63px;
        max-width: 420px;

        padding: 0.5rem;
        margin-top: 1.5rem;
    }

    .email-demo__input {
        flex: 1;
        border: none;
        outline: none;
        padding: 0 16px;
        font-size: 14px;
        background: white;
        height: 100%;
    }

    .email-demo__button {
        border: none;
        background-color: #000000;
        /* your color */
        color: white;
        font-weight: 600;
        font-size: 14px;
        padding: 0 24px;
        height: 100%;
        cursor: pointer;
        border-radius: .8rem;

    }

    .store-download-container {
        display: flex;
        gap: 12px;
        justify-content: flex-start;
        align-items: center;
        margin-top: 1rem;
    }

    .play-store-img {
        width: 140px;
        /* adjust as needed */
    }

    .app-store-img {
        width: 115px;
        /* adjust as needed */
    }


    .trusted-reviews {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 1rem;

    }

    .trusted-title {
        font-size: 13px !important;
        font-weight: 600;
        color: #2c2c2c;
        margin-bottom: 6px;

        text-align: center;
    }

    .review-row {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-direction: column;
    }

    .review-row--capterra {
        margin-top: 1.2rem;
    }

    .review-logo {
        height: 32px;
    }

    .review-stars {
        display: flex;
        gap: 2px;
    }

    .star {
        width: 20px !important;
        height: 20px !important;
    }

    .star.full::before,
    .star.half::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .star.full::before {
        background-image: url('data:image/svg+xml;utf8,<svg width="14" height="13" viewBox="0 0 26 24" xmlns="http://www.w3.org/2000/svg"><path fill="%23313438" d="M13.1875 19.5711L5.46208 23.5L6.9375 15.1785L0.6875 9.28522L9.32479 8.07113L13.1875 0.5L17.0502 8.07113L25.6875 9.28522L19.4375 15.1785L20.9129 23.5L13.1875 19.5711Z"/></svg>');
    }

    .star.half::before {
        background-image: url('data:image/svg+xml;utf8,<svg width="14" height="13" viewBox="0 0 26 24" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="half"><stop offset="50%" stop-color="%23313438"/><stop offset="50%" stop-color="transparent"/></linearGradient></defs><path fill="url(%23half)" d="M13.1875 19.5711L5.46208 23.5L6.9375 15.1785L0.6875 9.28522L9.32479 8.07113L13.1875 0.5L17.0502 8.07113L25.6875 9.28522L19.4375 15.1785L20.9129 23.5L13.1875 19.5711Z"/></svg>');
    }

    .review-score {
        font-size: 17px;
        color: #888;
    }

    /* trusted-brands-slider */
    .trusted-brands-slider {
        /* background-color: #fff; */
        padding: 0rem;
        /* margin-top: 2.5rem; */
    }

    .trusted-brands-slider h2 {

        font-size: 1.8rem;
    }

    .brands {
        overflow: visible;
        width: 100%;
        margin-top: 4rem;
    }

    .brands-track {
        display: flex;
        width: max-content;
        align-items: center;
    }

    .brand-logo {
        flex: 0 0 auto;
        margin: 0 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand-logo img {
        max-height: 35px;
        width: auto;
        object-fit: contain;
        display: block;
    }

    .loyalty-section {
        background-color: #ffffff;
        color: #000000;
        padding: 103px 20px;
        text-align: center;
        margin-top: 0rem;
    }

    .loyalty-heading {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 50px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;

    }

    .loyalty-stats {
        display: flex;
        justify-content: center;
        gap: 80px;
        flex-wrap: wrap;
        margin-top: 5rem;
    }

    .stat-box {
        max-width: 320px;
    }

    .stat-value {
        font-size: 48px;
        font-weight: bold;

    }

    .stat-label {
        font-size: 15px;
        margin-top: 10px;
        line-height: 1.2;
        margin-top: 2rem;
    }

    .comparison-table {
        display: block;
        padding: 0 20px;
        position: relative;
    }

    /* Show capabilities heading at the top */
    .comparison-table::before {
        content: "CAPABILITIES";
        display: block;
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 20px;
        color: #000;
    }

    .capabilities-column {
        display: none;
    }

    .comparison-column {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .platform-header {
        display: none;
    }

    .comparison-row {
        display: flex;
        flex-direction: column;
        padding: 16px 0;
        border-top: 1px solid #e0e0e0;
        position: relative;
    }

    /* Inject capability heading before each row */
    .comparison-row::before {
        content: '';
        font-weight: bold;
        font-size: 16px;
        color: #222;
        margin-bottom: 10px;
        display: block;
    }

    .comparison-row:nth-child(2)::before {
        content: "Strategy & Support";
    }

    .comparison-row:nth-child(3)::before {
        content: "Review Collection & Requests";
    }

    .comparison-row:nth-child(4)::before {
        content: "Customization & Display Widgets";
    }

    .comparison-row:nth-child(5)::before {
        content: "Moderation & Verification";
    }

    .comparison-row:nth-child(6)::before {
        content: "Analytics & Reporting";
    }

    /* Platform info */
    .comparison-row .platform-info {
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.6;
        position: relative;
        padding-left: 110px;
    }

    /* BookAReview logo injected */
    .comparison-row .platform-info:first-child::before {
        content: "";
        background-image: url('../assets/img/table-bookareview.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        width: 90px;
        height: 20px;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Others label */
    .comparison-row .platform-info:last-child::before {
        content: "Others:";
        position: absolute;
        left: 0;
        top: 0;
        font-weight: 600;
        color: #777;
    }

    /* Hide table logo image (already used inline) */
    .table-logo-image {
        display: none;
    }


    .bookareview-shopify-cta-wrapper {
        background-color: #ffffff;
        color: #000000;
        text-align: center;
        padding: 60px 30px;
        border-radius: 20px;
        max-width: 334px;
        margin: 40px auto;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

        margin-top: 0rem;
    }

    .bookareview-shopify-cta-heading {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 16px;

    }

    .bookareview-shopify-cta-subtext {
        font-size: 11px;
        max-width: 650px;
        margin: 0 auto 30px;
        line-height: 1.6;

    }

    .bookareview-shopify-cta-button {
        background-color: #000000;
        color: #ffffff;
        padding: 12px 28px;
        border: none;
        border-radius: .8rem;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;

    }

    .bookareview-shopify-cta-button:hover {
        background-color: #ff385c;
    }

    .bookareview-feedback-section {
        /* background-color: #ffffff; */
        color: #000000;
        padding: 80px 20px;

        text-align: center;
        margin-top: 0rem;
    }

    .bookareview-feedback-wrapper {
        max-width: 1100px;
        margin: 0 auto;
    }

    .bookareview-feedback-subtitle {
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 12px;
        color: #000000;

    }

    .bookareview-feedback-heading {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 20px;

    }

    .bookareview-feedback-description {
        font-size: 11px;
        line-height: 1.7;
        max-width: 750px;
        margin: 0 auto 50px;

    }

    .bookareview-feedback-card-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .bookareview-feedback-card {
        /* background-color: #ffffff; */
        border-radius: 16px;
        padding: 30px;
        flex: 1 1 300px;
        max-width: 360px;
        text-align: left;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        border: 1px solid transparent;
    }

    .bookareview-feedback-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
        background-color: #ffffff;
    }

    .bookareview-feedback-card.active {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
        background-color: #ffffff;
        /* border: 1px solid #000; */
    }

    .bookareview-feedback-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #000;

    }

    .bookareview-feedback-card p {
        font-size: 11px;
        line-height: 1.6;
        color: #000;

    }

    .shopify-tailored-section {

        /* background: #fff; */
        padding: 0px 20px;
        text-align: center;
    }

    .shopify-tailored-header h2 {
        font-size: 46px;
        font-weight: bold;
        margin-bottom: 60px;

    }

    .shopify-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 40px;
    }

    .tab-button {
        padding: 10px 20px;
        background-color: transparent;
        border: none;
        border-radius: 8px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .tab-button:hover {
        background-color: #eee;
    }

    .tab-button.active {
        background-color: #000000;
        font-weight: 600;
        color: white;

    }

    .shopify-tab-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    .tab-panel {
        display: none;
        align-items: center;
        gap: 40px;
        text-align: left;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-panel.active {
        display: flex;
    }

    .shopify-image {
        width: 100%;
        max-width: 500px;
        border-radius: 12px;
    }

    .shopify-text {
        max-width: 500px;
    }

    .shopify-text h3 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 32px;

    }

    .shopify-text p {
        margin-bottom: 25px;
        font-size: 15px;
        color: #333;

    }
}

/* MOBILE SCREEN 376PX TO 425PX */

@media screen and (min-width: 376px) and (max-width: 425px) {
    .hero-flex-content {
        display: block;
        padding: 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    /* .video-thumnail-shopify video{
    width: 37rem;
} */

    .video-wrapper {
        width: 100%;
        max-width: 840px;
        /* You can adjust width */
        height: 277px;
        /* You can change this to control height */
        border-radius: 20px;
        /* Optional: round corners */
        overflow: hidden;
        /* Clipping the video */
        position: relative;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        /* Optional: soft shadow */
        margin-top: 2rem;
    }

    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensures video fills the box nicely */
        display: block;
    }

    h1,
    h2 {}

    p {}

    .shopify-app-heading-one {
        font-size: 2.2rem;
    }

    .shopify-app-subheading {}

    .pink-text {
        color: #ff385c;
        font-style: italic;
    }

    .shopify-hero-p {
        margin-top: 2rem;
        font-size: 0.8rem;
    }

    .email-demo {
        display: flex;
        align-items: center;
        background: white;
        border: 1px solid #313438;
        border-radius: 17px;
        /* full pill */
        overflow: hidden;
        height: 63px;
        max-width: 420px;

        padding: 0.5rem;
        margin-top: 1.5rem;
    }

    .email-demo__input {
        flex: 1;
        border: none;
        outline: none;
        padding: 0 16px;
        font-size: 14px;
        background: white;
        height: 100%;
    }

    .email-demo__button {
        border: none;
        background-color: #000000;
        /* your color */
        color: white;
        font-weight: 600;
        font-size: 14px;
        padding: 0 24px;
        height: 100%;
        cursor: pointer;
        border-radius: .8rem;

    }

    .store-download-container {
        display: flex;
        gap: 12px;
        justify-content: flex-start;
        align-items: center;
        margin-top: 1rem;
    }

    .play-store-img {
        width: 140px;
        /* adjust as needed */
    }

    .app-store-img {
        width: 115px;
        /* adjust as needed */
    }


    .trusted-reviews {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 1rem;

    }

    .trusted-title {
        font-size: 13px !important;
        font-weight: 600;
        color: #2c2c2c;
        margin-bottom: 6px;

        text-align: center;
    }

    .review-row {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .review-row--capterra {
        margin-top: 1.2rem;
    }

    .review-logo {
        height: 25px;
    }

    .review-stars {
        display: flex;
        gap: 2px;
    }

    .star {
        width: 14px !important;
        height: 13px !important;
    }

    .star.full::before,
    .star.half::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .star.full::before {
        background-image: url('data:image/svg+xml;utf8,<svg width="14" height="13" viewBox="0 0 26 24" xmlns="http://www.w3.org/2000/svg"><path fill="%23313438" d="M13.1875 19.5711L5.46208 23.5L6.9375 15.1785L0.6875 9.28522L9.32479 8.07113L13.1875 0.5L17.0502 8.07113L25.6875 9.28522L19.4375 15.1785L20.9129 23.5L13.1875 19.5711Z"/></svg>');
    }

    .star.half::before {
        background-image: url('data:image/svg+xml;utf8,<svg width="14" height="13" viewBox="0 0 26 24" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="half"><stop offset="50%" stop-color="%23313438"/><stop offset="50%" stop-color="transparent"/></linearGradient></defs><path fill="url(%23half)" d="M13.1875 19.5711L5.46208 23.5L6.9375 15.1785L0.6875 9.28522L9.32479 8.07113L13.1875 0.5L17.0502 8.07113L25.6875 9.28522L19.4375 15.1785L20.9129 23.5L13.1875 19.5711Z"/></svg>');
    }

    .review-score {
        font-size: 13px;
        color: #888;
    }

    /* trusted-brands-slider */
    .trusted-brands-slider {
        /* background-color: #fff; */
        padding: 0rem;
        /* margin-top: 2.5rem; */
    }

    .trusted-brands-slider h2 {

        font-size: 1.8rem;
    }

    .brands {
        overflow: visible;
        width: 100%;
        margin-top: 4rem;
    }

    .brands-track {
        display: flex;
        width: max-content;
        align-items: center;
    }

    .brand-logo {
        flex: 0 0 auto;
        margin: 0 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand-logo img {
        max-height: 35px;
        width: auto;
        object-fit: contain;
        display: block;
    }

    .loyalty-section {
        background-color: #ffffff;
        color: #000000;
        padding: 103px 20px;
        text-align: center;
        margin-top: 0rem;
    }

    .loyalty-heading {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 50px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;

    }

    .loyalty-stats {
        display: flex;
        justify-content: center;
        gap: 80px;
        flex-wrap: wrap;
        margin-top: 5rem;
    }

    .stat-box {
        max-width: 320px;
    }

    .stat-value {
        font-size: 48px;
        font-weight: bold;

    }

    .stat-label {
        font-size: 15px;
        margin-top: 10px;
        line-height: 1.2;
        margin-top: 2rem;
    }

    .comparison-table {
        display: block;
        padding: 0 20px;
        position: relative;
    }

    /* Show capabilities heading at the top */
    .comparison-table::before {
        content: "CAPABILITIES";
        display: block;
        font-weight: 700;
        font-size: 16px;
        margin-bottom: 20px;
        color: #000;
    }

    .capabilities-column {
        display: none;
    }

    .comparison-column {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .platform-header {
        display: none;
    }

    .comparison-row {
        display: flex;
        flex-direction: column;
        padding: 16px 0;
        border-top: 1px solid #e0e0e0;
        position: relative;
    }

    /* Inject capability heading before each row */
    .comparison-row::before {
        content: '';
        font-weight: bold;
        font-size: 16px;
        color: #222;
        margin-bottom: 10px;
        display: block;
    }

    .comparison-row:nth-child(2)::before {
        content: "Strategy & Support";
    }

    .comparison-row:nth-child(3)::before {
        content: "Review Collection & Requests";
    }

    .comparison-row:nth-child(4)::before {
        content: "Customization & Display Widgets";
    }

    .comparison-row:nth-child(5)::before {
        content: "Moderation & Verification";
    }

    .comparison-row:nth-child(6)::before {
        content: "Analytics & Reporting";
    }

    /* Platform info */
    .comparison-row .platform-info {
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.6;
        position: relative;
        padding-left: 110px;
    }

    /* BookAReview logo injected */
    .comparison-row .platform-info:first-child::before {
        content: "";
        background-image: url('../assets/img/table-bookareview.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: left center;
        width: 90px;
        height: 20px;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Others label */
    .comparison-row .platform-info:last-child::before {
        content: "Others:";
        position: absolute;
        left: 0;
        top: 0;
        font-weight: 600;
        color: #777;
    }

    /* Hide table logo image (already used inline) */
    .table-logo-image {
        display: none;
    }


    .bookareview-shopify-cta-wrapper {
        background-color: #ffffff;
        color: #000000;
        text-align: center;
        padding: 60px 30px;
        border-radius: 20px;
        max-width: 381px;
        margin: 40px auto;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

        margin-top: 0rem;
    }

    .bookareview-shopify-cta-heading {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 16px;

    }

    .bookareview-shopify-cta-subtext {
        font-size: 11px;
        max-width: 650px;
        margin: 0 auto 30px;
        line-height: 1.6;

    }

    .bookareview-shopify-cta-button {
        background-color: #000000;
        color: #ffffff;
        padding: 12px 28px;
        border: none;
        border-radius: .8rem;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;

    }

    .bookareview-shopify-cta-button:hover {
        background-color: #ff385c;
    }

    .bookareview-feedback-section {
        /* background-color: #ffffff; */
        color: #000000;
        padding: 80px 20px;

        text-align: center;
        margin-top: 0rem;
    }

    .bookareview-feedback-wrapper {
        max-width: 1100px;
        margin: 0 auto;
    }

    .bookareview-feedback-subtitle {
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 12px;
        color: #000000;

    }

    .bookareview-feedback-heading {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 20px;

    }

    .bookareview-feedback-description {
        font-size: 11px;
        line-height: 1.7;
        max-width: 750px;
        margin: 0 auto 50px;

    }

    .bookareview-feedback-card-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .bookareview-feedback-card {
        /* background-color: #ffffff; */
        border-radius: 16px;
        padding: 30px;
        flex: 1 1 300px;
        max-width: 360px;
        text-align: left;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        border: 1px solid transparent;
    }

    .bookareview-feedback-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
        background-color: #ffffff;
    }

    .bookareview-feedback-card.active {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
        background-color: #ffffff;
        /* border: 1px solid #000; */
    }

    .bookareview-feedback-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #000;

    }

    .bookareview-feedback-card p {
        font-size: 11px;
        line-height: 1.6;
        color: #000;

    }

    .shopify-tailored-section {

        /* background: #fff; */
        padding: 0px 20px;
        text-align: center;
    }

    .shopify-tailored-header h2 {
        font-size: 46px;
        font-weight: bold;
        margin-bottom: 60px;

    }

    .shopify-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 40px;
    }

    .tab-button {
        padding: 10px 20px;
        background-color: transparent;
        border: none;
        border-radius: 8px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .tab-button:hover {
        background-color: #eee;
    }

    .tab-button.active {
        background-color: #000000;
        font-weight: 600;
        color: white;

    }

    .shopify-tab-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    .tab-panel {
        display: none;
        align-items: center;
        gap: 40px;
        text-align: left;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-panel.active {
        display: flex;
    }

    .shopify-image {
        width: 100%;
        max-width: 500px;
        border-radius: 12px;
    }

    .shopify-text {
        max-width: 500px;
    }

    .shopify-text h3 {
        font-size: 30px;
        font-weight: 600;
        margin-bottom: 32px;

    }

    .shopify-text p {
        margin-bottom: 25px;
        font-size: 15px;
        color: #333;

    }
}

@media screen and (min-width: 426px) and (max-width: 768px) {
    .hero-flex-content {
        display: flex;
        padding: 42px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    /* .video-thumnail-shopify video{
    width: 37rem;
} */

    .video-wrapper {
        width: 23rem;
        max-width: 923px;
        /* You can adjust width */
        height: 410px;
        /* You can change this to control height */
        border-radius: 20px;
        /* Optional: round corners */
        overflow: hidden;
        /* Clipping the video */
        position: relative;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        /* Optional: soft shadow */
    }

    .video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensures video fills the box nicely */
        display: block;
    }

    h1,
    h2 {}

    p {}

    .shopify-app-heading-one {
        font-size: 2.2rem;
    }

    .shopify-app-subheading {

        font-size: 1rem;
    }

    .pink-text {
        color: #ff385c;
        font-style: italic;
    }

    .shopify-hero-p {
        margin-top: 1rem;
        font-size: 14px;
    }

    .email-demo {
        display: flex;
        align-items: center;
        background: white;
        border: 1px solid #313438;
        border-radius: 17px;
        /* full pill */
        overflow: hidden;
        height: 63px;
        max-width: 420px;

        padding: 0.5rem;
        margin-top: 1.5rem;
    }

    .email-demo__input {
        flex: 1;
        border: none;
        outline: none;
        padding: 0 16px;
        font-size: 14px;
        background: white;
        height: 100%;
    }

    .email-demo__button {
        border: none;
        background-color: #000000;
        /* your color */
        color: white;
        font-weight: 600;
        font-size: 14px;
        padding: 0 24px;
        height: 100%;
        cursor: pointer;
        border-radius: .8rem;

    }

    .store-download-container {
        display: flex;
        gap: 12px;
        justify-content: flex-start;
        align-items: center;
        margin-top: 1rem;
    }

    .play-store-img {
        width: 144px;
        /* adjust as needed */
    }

    .app-store-img {
        width: 115px;
        /* adjust as needed */
    }


    .trusted-reviews {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 1rem;

    }

    .trusted-title {
        font-size: 13px;
        font-weight: 600;
        color: #2c2c2c;
        margin-bottom: 6px;

    }

    .review-row {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .review-row--capterra {
        margin-top: 1.2rem;
    }

    .review-logo {
        height: 20px;
    }

    .review-stars {
        display: flex;
        gap: 2px;
    }

    .star {
        width: 14px !important;
        height: 13px !important;
    }

    .star.full::before,
    .star.half::before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .star.full::before {
        background-image: url('data:image/svg+xml;utf8,<svg width="14" height="13" viewBox="0 0 26 24" xmlns="http://www.w3.org/2000/svg"><path fill="%23313438" d="M13.1875 19.5711L5.46208 23.5L6.9375 15.1785L0.6875 9.28522L9.32479 8.07113L13.1875 0.5L17.0502 8.07113L25.6875 9.28522L19.4375 15.1785L20.9129 23.5L13.1875 19.5711Z"/></svg>');
    }

    .star.half::before {
        background-image: url('data:image/svg+xml;utf8,<svg width="14" height="13" viewBox="0 0 26 24" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="half"><stop offset="50%" stop-color="%23313438"/><stop offset="50%" stop-color="transparent"/></linearGradient></defs><path fill="url(%23half)" d="M13.1875 19.5711L5.46208 23.5L6.9375 15.1785L0.6875 9.28522L9.32479 8.07113L13.1875 0.5L17.0502 8.07113L25.6875 9.28522L19.4375 15.1785L20.9129 23.5L13.1875 19.5711Z"/></svg>');
    }

    .review-score {
        font-size: 13px;
        color: #888;
    }

    /* trusted-brands-slider */
    .trusted-brands-slider {
        /* background-color: #fff; */
        padding: 0rem;
        /* margin-top: 2.5rem; */
    }

    .trusted-brands-slider h2 {

        font-size: 1.8rem;
    }

    .brands {
        overflow: visible;
        width: 100%;
        margin-top: 4rem;
    }

    .brands-track {
        display: flex;
        width: max-content;
        align-items: center;
    }

    .brand-logo {
        flex: 0 0 auto;
        margin: 0 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .brand-logo img {
        max-height: 35px;
        width: auto;
        object-fit: contain;
        display: block;
    }

    .loyalty-section {
        background-color: #ffffff;
        color: #000000;
        padding: 103px 20px;
        text-align: center;
        margin-top: 6rem;
    }

    .loyalty-heading {
        font-size: 50px;
        font-weight: 600;
        margin-bottom: 50px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;

    }

    .loyalty-stats {
        display: flex;
        justify-content: center;
        gap: 80px;
        flex-wrap: wrap;
        margin-top: 5rem;
    }

    .stat-box {
        max-width: 320px;
    }

    .stat-value {
        font-size: 48px;
        font-weight: bold;

    }

    .stat-label {
        font-size: 15px;
        margin-top: 10px;
        line-height: 1.2;
        margin-top: 2rem;
    }

    /* Table Comparison */

    .comparison-table {
        display: flex;

        /* background-color: #ffffff; */
        /* border: 1px solid #e0e0e0; */
        margin: 40px auto;
        max-width: 693px !important;
        border-radius: 10px;
        overflow: hidden;
        /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
    }

    .capabilities-column {
        background-color: #ffffff;
        color: #000;
        padding: 30px 20px;
        flex: 1;
        min-width: 200px;
        border-radius: 1rem;
    }

    .cap-title {
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 30px;

    }

    .cap-item {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 58px;
        margin-top: 3rem;

    }

    .comparison-column {
        flex: 3;
        padding: 30px 40px;
    }

    .platform-header {
        display: flex;
        justify-content: space-between;
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 20px;

    }

    .platform-name.bookareview {
        color: black;
    }

    .platform-name.loyaltylion {
        color: #444;
    }

    .comparison-row {
        display: flex;
        justify-content: space-between;
        border-top: 1px solid #ddd;
        padding: 20px 0;
        font-size: 14px;
        gap: 40px;
    }

    .platform-info {
        flex: 1;
        color: #333;
        line-height: 1.6;

    }

    .table-logo-image {
        width: 2rem;
    }

    .bookareview-shopify-cta-wrapper {
        background-color: #ffffff;
        color: #000000;
        text-align: center;
        padding: 60px 30px;
        border-radius: 20px;
        max-width: 690px;
        margin: 40px auto;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

        margin-top: 6rem;
    }

    .bookareview-shopify-cta-heading {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 16px;

    }

    .bookareview-shopify-cta-subtext {
        font-size: 16px;
        max-width: 650px;
        margin: 0 auto 30px;
        line-height: 1.6;

    }

    .bookareview-shopify-cta-button {
        background-color: #000000;
        color: #ffffff;
        padding: 12px 28px;
        border: none;
        border-radius: .8rem;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;

    }

    .bookareview-shopify-cta-button:hover {
        background-color: #ff385c;
    }

    .bookareview-feedback-section {
        /* background-color: #ffffff; */
        color: #000000;
        padding: 80px 35px;

        text-align: center;
        margin-top: 0rem;
    }

    .bookareview-feedback-wrapper {
        max-width: 1100px;
        margin: 0 auto;
    }

    .bookareview-feedback-subtitle {
        font-weight: 600;
        font-size: 18px;
        margin-bottom: 12px;
        color: #000000;

    }

    .bookareview-feedback-heading {
        font-size: 36px !important;
        font-weight: bold;
        margin-bottom: 20px;

    }

    .bookareview-feedback-description {
        font-size: 18px;
        line-height: 1.7;
        max-width: 750px;
        margin: 0 auto 50px;

    }

    .bookareview-feedback-card-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .bookareview-feedback-card {
        /* background-color: #ffffff; */
        border-radius: 16px;
        padding: 24px;
        flex: 1 1 300px;
        max-width: 360px;
        text-align: left;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        border: 1px solid transparent;
    }

    .bookareview-feedback-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
        background-color: #ffffff;
    }

    .bookareview-feedback-card.active {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
        background-color: #ffffff;
        /* border: 1px solid #000; */
    }

    .bookareview-feedback-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #000;

    }

    .bookareview-feedback-card p {
        font-size: 18px;
        line-height: 1.6;
        color: #000;

    }

    .shopify-tailored-section {

        /* background: #fff; */
        padding: 60px 20px;
        text-align: center;
    }

    .shopify-tailored-header h2 {
        font-size: 3.2rem !important;
        font-weight: bold;
        margin-bottom: 60px;

    }

    .shopify-tabs {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 40px;
    }

    .tab-button {
        padding: 10px 20px;
        background-color: transparent;
        border: none;
        border-radius: 8px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .tab-button:hover {
        background-color: #eee;
    }

    .tab-button.active {
        background-color: #000000;
        font-weight: 600;
        color: white;
    }

    .shopify-tab-content {
        max-width: 1100px;
        margin: 0 auto;
    }

    .tab-panel {
        display: none;
        align-items: center;
        gap: 40px;
        text-align: left;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-panel.active {
        display: flex;
    }

    .shopify-image {
        width: 100%;
        max-width: 500px;
        border-radius: 12px;
    }

    .shopify-text {
        max-width: 500px;
    }

    .shopify-text h3 {
        font-size: 26px;
        font-weight: 600;
        margin-bottom: 90px;

    }

    .shopify-text p {
        margin-bottom: 25px;
        font-size: 1.1rem;
        color: #333;
    }
}


/* new */