.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal__content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    border-radius: 8px;
    overflow: auto;
    padding: 34px;
}

.modal__content--product {
    background-color: #fff;
}

.modal__image {
    width: 100%;
    max-height: 530px;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: contain;
}

.modal__close {
    position: absolute;
    top: 6px;
    right: 11px;
    color: #FFF;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
}

.modal__close--product {
    color: #000;
}

.modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
    color: #333;
}

.modal__nav:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.modal__nav--prev {
    left: 20px;
}

.modal__nav--next {
    right: 20px;
}

.modal__specs {
    margin-top: 20px;
}

.modal__specs-title {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.modal__specs-list {
    list-style-type: none;
}

.modal__specs-item {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}