/* @import url(https://fonts.googleapis.com/css?family=Geologica:100,200,300,regular,500,600,700,800,900);


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Geologica', sans-serif;
} */

.slider-container {
    position: relative;
    border-radius: 12px;
    /* max-width: 900px; */
    overflow: visible;
}

.swiper-container {
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    width: 100%;
    border-radius: 15px;
    /* соотношение 5:2 */
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slide img {
    border-radius: 15px;
    width: 100%;
}


/* Навигация Swiper */

.swiper-button-prev,
.swiper-button-next {
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 1);
}


/* Информационный блок */

.info {
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    gap: var(--info-gap);
}

.info .icons {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    padding: var(--info-padding);
    justify-content: space-between;
    border-radius: 0 20px 0 0;
    display: flex;
    gap: 40px;
}

.wrap-icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.icons .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--info-font-size);
    color: #2A4B3C;
}

.icons .item p {
    margin: 0;
    line-height: 1.2;
}

.icons .item p.value {
    font-weight: bold;
    font-size: var(--info-value-size);
    color: #FF7C06;
}

.icons .item p.label {
    font-size: var(--info-font-size);
    color: #2A4B3C;
}

.wrap-for-circle {
    position: relative;
}

.wrap-price {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    bottom: 0;
    right: 0;
}

.price {
    transform: translateY(50%);
    width: var(--price-size);
    height: var(--price-size);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    padding: var(--price-padding);
    border-radius: 50%;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.price-circle {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
    width: var(--price-size);
    height: var(--price-size);
}

.price .amount {
    color: #FF7C06;
    font-size: var(--price-font-size);
    font-weight: 400;
    line-height: 1;
    margin: 0;
    position: relative;
    z-index: 1;
}

.price .text {
    font-size: var(--price-text-size);
    color: #FF7C06;
    margin: 4px 0 0;
    position: relative;
    z-index: 1;
    line-height: 1 !important;
}

@media (min-width: 600px) {
    .info {
        gap: 24px;
    }
    .icons {
        gap: 16px;
    }
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: #2A4B3C;
    font-weight: bold;
}

 :root {
    --price-size: 240px;
    --price-font-size: 36px;
    --price-text-size: 18px;
    --price-padding: 18px;
    --info-gap: 16px;
    --info-padding: 30px;
    --info-font-size: 18px;
    --info-value-size: 36px;
}

@media (max-width: 1200px) {
     :root {
        --price-size: 200px;
        --price-font-size: 28px;
        --price-text-size: 16px;
        --price-padding: 16px;
        --info-gap: 14px;
        --info-padding: 24px;
        --info-font-size: 16px;
        --info-value-size: 32px;
    }
}

@media (max-width: 768px) {}

@media (max-width: 768px) {
    .wrap-price {
        top: 0;
        bottom: 0 !important;
        right: 0;
        transform: translateY(100%);
    }
    .slider-container {
        display: flex;
        flex-direction: column;
    }
    .wrap-for-circle {
        order: 2;
    }
    .price {
        transform: translateY(-50%);
    }
    .info {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        position: relative;
    }
    .icons {
        transform: translateY(0%);
        display: flex;
        flex-wrap: wrap;
        box-shadow: none;
        border-radius: none !important;
        width: 100%;
        gap: 25px !important;
        background: none;
        padding-bottom: 25px !important;
        justify-content: space-between !important;
    }
    .icons .item {}
    .swiper-slide img {
        border-radius: 15px 15px 0 0;
    }
     :root {
        --price-size: 100px;
        --price-font-size: 14px;
        --price-text-size: 12px;
        --price-padding: 10px;
        --info-gap: 12px;
        --info-padding: 0px;
        --info-font-size: 14px;
        --info-value-size: 28px;
    }
}


/* Лайтбокс стили */

.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: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-slide img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.swiper-slide img:hover {
    transform: scale(1.02);
}