.sentaks-strip-wrap {
    width: 100%;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}
.sentaks-strip-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
}
.sentaks-strip-grid::-webkit-scrollbar {
    height: 6px;
}
.sentaks-strip-grid::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}
.sentaks-strip-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    min-width: 250px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    gap: 15px;
}
.sentaks-strip__image img {
    border-radius: 4px;
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.sentaks-strip__info {
    display: flex;
    flex-direction: column;
}
.sentaks-strip__title {
    font-size: 14px;
    margin: 0 0 5px 0;
}
.sentaks-strip__title a {
    color: #333;
    text-decoration: none;
}
.sentaks-strip__price {
    font-size: 13px;
    font-weight: bold;
    color: #e63946;
}
