.engraving_image_item {
    margin-bottom: 15px;
    text-align: left; /* Выравнивание по левому краю в админке */
}

.engraving_image_item img {
    display: block;
    width: 150px; /* Уменьшаем размер изображений в админке */
    height: auto;
    padding: 0;
    margin: 0; /* Убираем центрирование изображений в админке */
}

.engraving_image_wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin: 0 auto; /* Центрируем контейнер на сайте */
    width: 100%;
}

.engraving_base_image {
    display: block;
    width: 100%;
    height: auto;
}

.engraving_canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    z-index: 10;
    cursor: none;
    background-size: cover;
    background-position: center;
}

.custom-cursor {
    position: absolute;
    width: 60px; /* Увеличиваем размер курсора в 3 раза */
    height: 60px; /* Увеличиваем размер курсора в 3 раза */
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 20;
    display: none;
}

/* Показываем кастомный курсор только на устройствах с указателем */
@media (pointer: fine) {
    .custom-cursor {
        display: block;
    }
}

.engraving_caption {
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.engraving_gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.engraving_gallery_item {
    flex: 0 0 calc(20% - 10px); /* 5 изображений в ряд с промежутками */
    text-align: center;
    overflow: hidden;
    position: relative;
}

.engraving_gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Обрезаем изображение, чтобы оно было квадратным */
}

.engraving_navigation {
    text-align: center;
    margin-top: 20px;
    width: 100%; /* Расширяем контейнер на всю ширину */
}

.load_more_container {
    display: flex;
    justify-content: center; /* Центрируем кнопку */
    width: 100%;
    margin-top: 20px; /* Добавляем отступ сверху */
}

.load_more_button, .next_image_button {
    background-color: #0034c4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    border-radius: 4px;
}

.load_more_button:hover, .next_image_button:hover {
    background-color: #002a9d;
}

/* Стили для квадратных изображений на мобильных устройствах */
@media (max-width: 768px) {
    .engraving_gallery_item {
        flex: 0 0 calc(50% - 10px); /* 2 изображения в ряд на мобильных устройствах */
    }
}
