.content {
    text-align: center;
    padding-bottom: 80px;
}

.breadcrumbs {
    text-align: left;
    font-size: 16px;
    padding-top: 30px;
    padding-bottom: 30px;
}

h1 {
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
}

.mug-container {
    padding-bottom: 80px;
}

p {
    text-indent: 0;
}

.h2-button,
.h2-button-static {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
    margin-bottom: 40px;
    padding: 13px 20px;
    outline: 0;
    border: 1px solid black;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.h2-button-static{
    cursor: default;
}

.h2-button:after,
.h2-button-static:after {
    content: "";
    background-color: #ffe54c;
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
    transition: 0.2s;
}

.h2-button:hover:after,
.h2-button-static:after
{
    top: 0;
    left: 0;
}

.h2-button a:hover,
.h2-button a:focus,
.h2-button a:active {
    text-decoration: none; /* Убираем подчеркивание при наведении, фокусе и нажатии */
}

.mug-container {
    display: flex;
    flex-wrap: wrap; /* Позволяет переносить элементы на новую строку */
    justify-content: center; /* Центрирует содержимое */
    gap: 30px; /* Отступы между кружками */
}

.mug-item {
    flex: 1 1 18%; /* Устанавливает ширину каждого элемента примерно 18% для 5 элементов в строке с отступами */
    max-width: 200px; /* Ограничивает максимальную ширину кружек */
    text-align: center; /* Центрирует содержимое внутри элемента кружки */
    display: flex;
    flex-direction: column; /* Размещает изображение и цену вертикально */
}

.mug-item img {
    width: 100%; /* Картинка занимает всю ширину контейнера */
    height: auto;
    cursor: pointer;
    margin-top: auto
}

.mug-price {
    width: 90px;
    border: 1px solid #dbdbdb;
    border-radius: .375em;
    color: #363636;
    font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.2rem;
    padding: calc(.5em - 1px) 1em;
    user-select: none;
    text-indent: 0;
    transform: translateX(-16px);
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.video-container {
    text-align: center;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: auto;
}

.section-text p {
    text-align: left;
    font-size: 18px;
    text-indent: 20px;
    line-height: 1.5;
    font-weight: 300;
}

.text p {
    font-size: 130%;
    line-height: 1.5;
    font-weight: 300;
}

.text li {
    text-align: left;
    font-size: 130%;
    line-height: 1.2;
    font-weight: 300;
    margin: 1em 0 0 2em;
    padding: 0 0 1em 0;
    max-width: 700px;
    position: relative;
    list-style: none;
}

.text li::before {
    content: "✔";
    position: absolute;
    top: 0;
    left: -20px;
    color: rgb(218, 68, 83);
}


.image-gallery {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.image-gallery img {
    width: 100%;
    height: auto;
}

/*видео начало*/
.video {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}
.video video {
    width: 100%;
    height: auto;
    max-height: 394px;
}
@media (max-width: 768px) {
    .video {
        padding: 0 15px;
    }
    .video video {
        max-height: 300px;
    }
}
@media (max-width: 480px) {
    .video video {
        max-height: 200px;
    }
}
/*видео конец*/


@media (max-width: 768px) {

    .breadcrumbs {
        font-size: 12px;
    }

    .h2-button {
        padding: 13px 50px 13px;
    }
    .mug-item {
        flex: 0 1 30%;
    }

    .mug-container {
        gap: 10px;
    }

    .mug-price {
        width: 60px;
        font-size: 1rem;
        padding: calc(.5em - 1px) 0;
        transform: translateX(-6px);
    }

    .video-container iframe {
        width: 100%;
        height: auto;
    }

    /*живосайт*/
    ._orientationLeft__zFgwY.wrap__ju4jq {
        z-index: 45;
    }

    .image-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}


