.kemet-tourcards-wrapper {
    padding: 35px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kemet-tourcards-wrapper.kemet-lang-ar {
    direction: rtl;
    text-align: right;
}

.kemet-tourcards-wrapper.kemet-lang-en {
    direction: ltr;
    text-align: left;
}

/* ===== الحاوية الرئيسية للكروت ===== */
.kemet-tourcards-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 6vw 25px;
    display: flex;
    flex-wrap: nowrap;            /* صف واحد فقط */
    gap: 18px;
    justify-content: center;
    align-items: stretch;
    overflow-x: auto;             /* لو العرض ضاق يحصل سكرول أفقى */
    -webkit-overflow-scrolling: touch;
}

.kemet-tourcards-inner::-webkit-scrollbar {
    height: 6px;
}
.kemet-tourcards-inner::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.10);
}
.kemet-tourcards-inner::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.35);
    border-radius: 3px;
}

/* ===== الكارت ===== */
.kemet-tourcard {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
    flex: 0 0 210px;         /* عرض ثابت لكل كارت بحيث الخمسة يقربوا من بعض */
    max-width: 210px;
    display: flex;
    flex-direction: column;
}

.kemet-tourcard-image-wrap img {
    display: block;
    width: 100%;
    height: 150px;           /* تقليل ارتفاع الصورة */
    object-fit: cover;
}

.kemet-tourcard-body {
    padding: 12px 16px 14px; /* تقليل padding الداخلى */
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kemet-tourcard-ribbon {
    display: inline-flex;
    align-items: center;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    background: #0b9444;
    color: #ffffff;
    margin-bottom: 8px;
}

.kemet-tourcard-ribbon-icon {
    margin-inline-end: 6px;
}

.kemet-tourcard-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 5px;
}

.kemet-tourcard-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
}

.kemet-tourcard-price {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}

.kemet-tourcard-desc {
    margin: 0 0 10px;
    font-size: 13px;
    color: #555555;
    line-height: 1.5;
}

.kemet-tourcard-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 6px 8px;
    padding: 7px 10px;
    background: #f6f6f8;
    border-radius: 8px;
    margin-bottom: 10px;
}

.kemet-tourcard-feature {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    color: #444;
}

.kemet-tourcard-feature .dashicons {
    font-size: 14px;
    margin-inline-end: 4px;
    color: #0b9444;
}

.kemet-tourcard-footer {
    text-align: center;
    margin-top: auto;
}

.kemet-tourcard-btn {
    display: inline-block;
    margin-top: 2px;
    margin-bottom: 4px;
    padding: 7px 18px;
    border-radius: 4px;
    background: #0b9444;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.kemet-tourcard-btn:hover {
    background: #087236;
}

/* على الموبايل: الكارت ياخد حوالى 80% من العرض مع سكرول أفقى */
@media (max-width: 768px) {
    .kemet-tourcard {
        flex: 0 0 80%;
        max-width: 80%;
    }
}
