/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-close:hover {
    color: var(--patinep-yellow);
}

/* Button Refinements */
/* "Ver Detalhes" como link discreto — dá evidência à foto e ao CTA "Consultar Preço" */
.btn-details {
    display: block;
    width: 100%;
    padding: 6px;
    background: transparent;
    color: var(--patinep-yellow);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border: none;
    margin-bottom: 6px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-details:hover {
    text-decoration: underline;
    opacity: 0.85;
}

/* Adjust btn-buy to match spacing */
.btn-buy {
    border-radius: 4px;
}