/**
 * Al Talayi Tire Catalog - Lightbox Styles
 */

.altc-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.altc-lightbox-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.altc-lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.altc-lightbox-close:hover,
.altc-lightbox-close:focus {
    color: #000;
    text-decoration: none;
}

.altc-lightbox img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.altc-lightbox-gallery {
    text-align: center;
}

.altc-lightbox-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.altc-lightbox-prev,
.altc-lightbox-next {
    background: #007cba;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.altc-lightbox-prev:hover,
.altc-lightbox-next:hover {
    background: #005a87;
}

.altc-lightbox-counter {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .altc-lightbox-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }
    
    .altc-lightbox-close {
        font-size: 24px;
        top: 10px;
        right: 15px;
    }
}