@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f6f7fb;
    color: black;
    line-height: 1.6;
}

.subtitle
{
    font-weight: normal;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.content-container{
    max-width: 70%;
    margin: 0 auto;
}   
.breadcrumbs {
      font-size: 0.8rem;
      color: var(--vm-text-soft);
      margin-bottom: 1rem;
    }

    .breadcrumbs a {
      color: var(--vm-text-soft);
    }

    .breadcrumbs span {
      margin: 0 0.25rem;
    }

.error-content{
    margin-top: 225px;
    display: flex;
    text-align: center;
    justify-content: center;
}

.container-basic-info {
    overflow: hidden;
    margin: 0 auto;
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 6rem;
    border-radius: 24px;
}

.carousel-container {
    height: 100%;
    width: 40%;
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.carousel-nav:hover {
    background: rgba(0,0,0,0.7);
}

.carousel-nav.prev {
    left: 1rem;
}

.carousel-nav.next {
    right: 1rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: lightgray;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination-dot.active {
    background: #E40000;
}

.minimal-information {
    padding: 1.5rem;
    flex: 1;
    align-content: center;
}

.title-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.title {
    font-size: 1.5rem;
    font-weight: 500;
    flex: 1;
}

.price {
    font-size: 1.3rem;
    font-weight: 500;
    color: #E40000;
    white-space: nowrap;
}

.divider {
    height: 1px;
    background: #e0e0e0;
    margin: 1.5rem 0;
}

.basic-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.basic-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.basic-info-icon {
    color: #eb3223;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

#map{
    height: 400px;
    width: 100%;
}

.basic-info-content {
    flex: 1;
}

.basic-info-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.basic-info-value {
    font-size: 0.9rem;
    font-weight: 500;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    transition: background-color 0.3s;
    border-radius: 8px;
    margin: 1rem 0;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #e0e0e0;
}

.user-name {
    font-weight: 500;
    font-size: 1rem;
}

.description {
    max-height: 400px;
    overflow-y: auto;
    margin: 1rem 0;
    line-height: 1.6;
}

.location-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
}

.location-info {
    color: #666;
    margin-bottom: 1rem;
}

.map-container {
    width: 100%;
    height: 350px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
}

.action-section {
    margin-top: 2rem;
}

.message-btn {
    background: linear-gradient(135deg, #E40000, #ff5900);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.message-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(228, 0, 0, 0.3);
}

.report-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 8px;
}

.report-item:hover {
    background-color: #f5f5f5;
}

.report-icon {
    color: #ff9800;
    font-size: 1.1rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.cta-container{
    margin-top: 150px;
    margin: 0 auto;
    width: 40%;
}

.map{
    height: 100%;
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 768px) {

    .carousel-container {
        width: 100%;
    }

    .content-container{
        max-width: 90%;
    }

    .title-price {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .title {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .basic-info-grid {
        grid-template-columns: 1fr;
    }

    .cta-container{
        width: 90%;
        margin-top: 200px;
    }
}

.favorite-active {
    color: #ffd700 !important;
}