.tt-list {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.tt-title {
    font-size: 22px;
    font-weight: bold;
    margin: 20px 0;
}

.tt-item {
    display: grid;
    grid-template-columns: 100px 1fr 280px 150px;
    gap: 15px;
    padding: 5px 5px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-bottom: 16px;
    align-items: center;
}

.tt-thumb {
    position: relative;
}

.tt-thumb img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
}

.tt-brand {
    font-weight: 700;
    font-size: 22px;

}

.tt-brand a {
    text-decoration: none;
    color: #000;
}

.tt-stars {
    color: #ffc400;
    font-size: 18px;
    display: block;
}

.tt-sub {
    font-size: 15px;
    font-weight: bold;
    color: #333;
}

.tt-bullets,
.tt-bullets-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tt-bullets li,
.tt-bullets-mobile li {
    font-size: 15px;
    line-height: 1.45em;
    color: #c20000;
    margin-bottom: 0px !important;
    margin-left: 0 !important;
}

.tt-right {
    text-align: center;
}

.tt-promo {
    color: #008000;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tt-right-line {
    color: #777;
    font-size: 15px;
    line-height: 1.4em;
}

.tt-buttons-column {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tt-btn {
    padding: 10px 14px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    font-size: 14px;
    display: block;
}

.tt-col.tt-pos {
    position: absolute;
    font-weight: 700;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background: #d01140;
    color: #fff;
    border-radius: 0 0 23px;
    font-size: 14px;
}


.tt-play {
    background: #ffb800;
}

.tt-review {
    background: #555;
}

.tt-bullets-mobile {
    display: none !important;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 768px) {
    .tt-bullets-mobile {
        display: block !important;
    }

    .tt-bullets {
        display: none;
    }

    .tt-item {
        display: grid;
        grid-template-columns: 70px 1fr 95px;
        grid-template-areas:
            "thumb content buttons"
            "bullets bullets bullets";
        gap: 10px;
    }

    .tt-thumb {
        grid-area: thumb;
    }

    .tt-left {
        grid-area: content;
    }

    .tt-buttons-column {
        grid-area: buttons;
    }

    .tt-bullets-mobile {
        grid-area: bullets;
    }

    .tt-thumb {
        float: left;
        width: 70px;
        margin-right: 12px;
        position: relative;
    }

    .tt-thumb img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        border-radius: 10px;
    }

    .tt-col.tt-pos {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 20px;
        height: 20px;
        background: #d01140;
        color: white;
        font-size: 12px;
        font-weight: bold;
        text-align: center;
        line-height: 22px;
        border-radius: 0 0 18px;
    }

    .tt-left {
        overflow: hidden;
    }

    .tt-brand {
        font-size: 20px;
        font-weight: bold;
        margin-top: 5px;
        display: block;
    }

    .tt-stars {
        font-size: 16px;
        margin: 2px 0 6px 0;
        color: #ffc400;
    }

    .tt-sub {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 6px;
    }

    .tt-bullets {
        margin-top: 6px;
    }

    .tt-bullets li {
        font-size: 14px;
        line-height: 1.4em;
        color: #c20000;
        margin-bottom: 4px !important;
    }

    .tt-right {
        display: none;
    } */

    .tt-btn {
        flex: 1;
        padding: 10px 0;
        border-radius: 25px;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        color: #fff;
        text-decoration: none;
        display: block;
    }

    .tt-play {
        font-size: 12px;
        background: #ffb800;
    }

    .tt-review {
        font-size: 12px;
        background: #555;
    }
}