/* 
   Igualo Nicaragua - Ultra Minimalist (No Cards)
   Concept: Pure Content on Dark Background
*/

.pro-detail-page {
    background-color: #0b0f1a;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    padding-bottom: 60px;
}

/* --- Container Control --- */
.igualo-main-container {
    max-width: 1100px; /* Increased for split layout */
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Split Layout --- */
.detail-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-top: 60px;
    align-items: start;
}

.detail-right-col {
    position: sticky;
    top: 100px;
}

/* --- Gallery Area (Pure Image) --- */
.igualo-media-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    aspect-ratio: 4 / 3;
}

.igualo-media-carousel {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.gallery-dots-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.dot-nav {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: 0.3s;
}

.dot-nav.is-active {
    background: var(--primary);
    transform: scale(1.3);
}

/* --- Info Section (No Background) --- */
.igualo-info-section {
    padding: 10px 0;
    margin-bottom: 35px;
}

.category-label {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.listing-title-main {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.listing-price-main {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.listing-price-main b { color: var(--primary); font-weight: 900; margin-right: 5px; }

.listing-meta-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.status-badge {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}

.location-box a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s;
    background: rgba(255,255,255,0.03);
    padding: 6px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.location-box a i {
    width: 14px;
    color: var(--primary);
}

.location-box a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.1);
}

/* --- Action Buttons --- */
.igualo-actions-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-igualo-action {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.btn-msg { background: var(--primary); color: #000; }
.btn-msg:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3); }

.btn-of { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-of:hover { background: rgba(34, 197, 94, 0.05); transform: translateY(-3px); }

.btn-fv-row {
    margin-bottom: 40px;
}

.btn-fv-clean {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    width: 100%;
    padding: 15px;
    border-radius: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-fv-clean:hover { background: rgba(255,255,255,0.1); }

/* --- Seller & Details (No Cards) --- */
.info-block-clean {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 10px;
}

.seller-avatar-pro {
    width: 54px;
    height: 54px;
    background: var(--primary);
    color: #000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
}

.seller-name-pro { font-weight: 800; font-size: 1.15rem; color: #fff; margin: 0; }
.seller-stars-pro { color: #fbbf24; font-size: 0.8rem; margin: 0; }

.description-text-pro {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 300;
}

/* --- Mobile Adaptability --- */
@media (max-width: 991.98px) {
    .detail-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .detail-right-col {
        position: static;
    }

    .igualo-main-container { max-width: 700px; }
}

@media (max-width: 767.98px) {
    .igualo-main-container { padding: 0 15px; }
    .igualo-actions-group { grid-template-columns: 1fr; gap: 12px; }
    .listing-title-main { font-size: 2.2rem; }
    .listing-price-main { font-size: 2.1rem; }
    .detail-split-layout { gap: 20px; }
}
