.special-offer-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.special-offer-card {
    position: relative;
    background: #000;
    border-radius: 15px;
    width: 540px;
    height: 720px;
    font-family: 'Manrope', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    color: white;
}

.offer-image {
    position: relative;
}

.offer-image img {
    width: 100%;
    display: block;
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
}

.offer-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
}

.offer-header p {
    font-size: 14px;
    font-weight: 400;
    margin: 5px 0 10px;
}

.offer-details {
    display: flex;
    justify-content: space-around;
    font-size: 14px;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail img {
    width: 18px;
    height: 18px;
}

/* 🖥️ Desktop verzija - prikazuje samo pune nazive */
@media (min-width: 769px) {
    .detail-text.desktop {
        display: inline-block !important;
    }
    .detail-text.mobile {
        display: none !important;
    }
}

/* 📱 Mobilna verzija - prikazuje samo skraćenice */
@media (max-width: 768px) {
    .special-offer-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .special-offer-card {
        width: 358px;
        height: 550px;
    }
    .offer-header h2 { font-size: 24px; }
    .offer-header p { font-size: 13px; }
    .offer-details { justify-content: space-between; padding: 5px; }

    .detail-text.desktop { 
        display: none !important; 
    }

    .detail-text.mobile { 
        display: inline-block !important; 
        font-size: 14px; 
        color: white !important;
    }
}

.offer-info {
    padding: 20px;
    background: #000;
}

.offer-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 10px 0 5px;
}

.car-type {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 10px;
}

.price-info {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 800;
    align-items: center;
}

.final-price {
    font-size: 16px;
    color: #fff;
}

.get-offer {
    display: block;
    text-align: right;
    font-weight: 800;
    color: white;
    text-decoration: none;
    margin-top: 10px;
}
