/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--secondary);
}

/* Updated Extras Grid */
.extras-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.extras-column h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.extra-item-refined {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px dashed #f1f5f9;
    padding-bottom: 5px;
}

.extra-item-refined strong {
    color: var(--primary);
}

@media (max-width: 768px) {
    .extras-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}