/* Alapbeállítások */
body {
    margin: 0;
    font-family: "Spartan", sans-serif;
    background-color: #f6f7f9;
    min-height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header-content {
    flex: 1;
}

.header-bg {
    background: linear-gradient(to left, #006eb8, #00A2B8);
}

.main-container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
}

/* Kép konténer */
.ad-image-container {
    flex: 1;
    min-width: 300px;
}

.main-image__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(11, 42, 63, 0.07);
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    overflow-x: auto;
}

.thumbnail {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnail:hover {
    transform: scale(1.05);
}

/* Hirdetés részletei */
.ad-details {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(11, 42, 63, 0.07);
}

.ad-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
}

.ad-location {
    font-size: 12px;
    font-weight: 500;
    color: #4C525A;
    margin: 0 0 10px;
}

.ad-short-desc {
    font-size: 12px;
    font-weight: 500;
    color: #4C525A;
    margin: 0 0 10px;
}

.ad-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
}

.divider {
    border: 1px solid #E8EBF0;
    margin: 20px 0;
}

.ad-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 12px;
    font-weight: 700;
    color: #4C525A;
}

.spec-value {
    font-size: 12px;
    font-weight: 500;
    color: #4C525A;
}

.ad-extras h2 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
}

.extras-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.extras-list li {
    font-size: 12px;
    font-weight: 500;
    color: #4C525A;
    margin-bottom: 5px;
}

.ad-description h2 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
}

.ad-description p {
    font-size: 12px;
    font-weight: 500;
    color: #4C525A;
    line-height: 1.5;
}

.ad-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.contact-btn {
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    white-space: normal;
    text-align: center;
    min-height: 48px;
    flex: 1 1 auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.contact-btn:hover {
    transform: scale(1.05);
}

.phone-btn, .email-btn {
    background: #fff;
    color: #000;
    border: 1px solid #E8EBF0;
}

.interest-btn {
    background: linear-gradient(to bottom right, #006fb8, #00A2B8);
    color: #fff;
}

/* Hasonló hirdetések */
.similar-ads {
    max-width: 1200px;
    margin: 40px auto;
    width: 100%;
    margin-top: 40px;
}

.similar-ads h2 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
}

.similar-ads-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.similar-ad-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(11, 42, 63, 0.07);
    overflow: hidden;
}

.similar-ad__image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.similar-ad__content {
    padding: 15px;
}

.similar-ad__title {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px;
}

.similar-ad__location {
    font-size: 12px;
    font-weight: 500;
    color: #4C525A;
    margin: 0 0 5px;
}

.similar-ad__desc {
    font-size: 12px;
    font-weight: 500;
    color: #4C525A;
    margin: 0 0 10px;
}

.similar-ad__price {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

/* Reszponzivitás */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }

    .ad-image-container, .ad-details {
        width: 100%;
    }

    .main-image__img {
        height: 300px;
    }

    .ad-specs {
        grid-template-columns: 1fr;
    }

    .ad-contact {
        flex-direction: column;
        gap: 15px;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}