

.shop-footer {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    height: 100%;
}
.shop-footer a.title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 58px; /* 2 satır için yeterli yükseklik */
}

.caravan-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 6px 0px;
}

.spec-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    line-height: 20px;
}

.spec-label {
    color: #6c757d;
    font-weight: 500;
    font-size: 12px;

}


.spec-value {
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    font-size: 12px;
}