.hg-91b6fb4a-wrapper {
    max-width: 100%;
}

/* Gallery */
.hg-91b6fb4a-gallery {
    margin-bottom: 24px;
}

.hg-91b6fb4a-gallery-main {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 10px;
}

.hg-91b6fb4a-gallery-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.hg-91b6fb4a-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hg-91b6fb4a-thumb {
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.6;
}

.hg-91b6fb4a-thumb:hover,
.hg-91b6fb4a-thumb-active {
    opacity: 1;
    border-color: #25D366;
}

.hg-91b6fb4a-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Name */
.hg-91b6fb4a-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

/* Description */
.hg-91b6fb4a-description {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 24px 0;
    color: #555;
}

/* Details Grid */
.hg-91b6fb4a-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.hg-91b6fb4a-detail-item {
    background: #f8f9fa;
    padding: 14px 18px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hg-91b6fb4a-detail-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

.hg-91b6fb4a-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

/* WhatsApp Button */
.hg-91b6fb4a-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.15s ease;
    cursor: pointer;
}

.hg-91b6fb4a-whatsapp-btn:hover {
    background-color: #1DA851;
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}

.hg-91b6fb4a-whatsapp-btn svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .hg-91b6fb4a-gallery-main img {
        height: 280px;
    }

    .hg-91b6fb4a-details-grid {
        grid-template-columns: 1fr;
    }

    .hg-91b6fb4a-name {
        font-size: 22px;
    }

    .hg-91b6fb4a-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}
