/* ===== Товар Кухни — Silver Home style, Geona colors ===== */

/* --- Hero Gallery --- */
.kh-hero {
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
    width: 100%;
}
.kh-hero__slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
}
.kh-hero__slider .khHeroSlider {
    height: 100%;
}
.kh-hero__slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.kh-hero__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kh-hero__slider .swiper-slide-active {
    z-index: 1;
}
.kh-hero__slider .swiper-button-next,
.kh-hero__slider .swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    --swiper-navigation-size: 18px;
    transition: background 0.3s;
}
.kh-hero__slider .swiper-button-next:hover,
.kh-hero__slider .swiper-button-prev:hover {
    background: rgba(179,119,53,0.8);
}
.kh-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.6) 100%);
}
.kh-hero__crumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    pointer-events: auto;
}
.kh-hero__crumbs .breadcrumb,
.kh-hero__crumbs .breadcrumb a,
.kh-hero__crumbs .breadcrumb li {
    color: rgba(255,255,255,0.7) !important;
    font-size: 13px;
}
.kh-hero__crumbs .breadcrumb a:hover {
    color: #fff !important;
}
.kh-hero__info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
    pointer-events: auto;
}
.kh-hero__title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.kh-hero__btn {
    display: inline-block;
    padding: 14px 40px;
    background: #b37735;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: background 0.3s;
}
.kh-hero__btn:hover {
    background: #c4883f;
    color: #fff;
}

/* Thumbnails */
.kh-thumbs {
    padding: 25px 0;
    background: #fff;
}
.kh-thumbs .khThumbsSlider .swiper-slide {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}
.kh-thumbs .khThumbsSlider .swiper-slide:hover,
.kh-thumbs .khThumbsSlider .swiper-slide-thumb-active {
    border-color: #b37735;
}

/* --- Specs Section (two columns) --- */
.specs-section {
    padding: 80px 0 60px;
}
.specs-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.specs-left {
    flex: 1;
    min-width: 0;
}
.specs-right {
    width: 380px;
    flex-shrink: 0;
}
.specs-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3c3531;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.specs-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
    font-style: italic;
}
.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.specs-list li {
    padding: 14px 0;
    border-bottom: 1px dotted #ccc;
    font-size: 15px;
}
.specs-list li:last-child {
    border-bottom: none;
}
.specs-list .optionProductItem {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.specs-list .desc_door_1 {
    color: #999;
    font-weight: 400;
    white-space: nowrap;
}
.specs-list .desc_door_2 {
    text-align: right;
    color: #3c3531;
    font-weight: 500;
}

/* USP block (right column) */
.specs-usp {
    background: #faf8f5;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
}
.specs-usp__item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}
.specs-usp__item:last-child {
    margin-bottom: 0;
}
.specs-usp__check {
    width: 24px;
    height: 24px;
    background: #b37735;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.specs-usp__item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #3c3531;
}

/* CTA buttons in specs */
.specs-cta {
    display: flex;
    gap: 10px;
    align-items: stretch;
}
.specs-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    background: #b37735;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 12px;
    text-transform: uppercase;
    transition: background 0.3s;
    text-align: center;
    line-height: 1.3;
}
.specs-cta__btn:hover {
    background: #9a6429;
    color: #fff;
}
.specs-cta__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3c3531;
    color: #fff;
    border-radius: 12px;
    transition: background 0.3s;
    flex-shrink: 0;
}
.specs-cta__icon:hover {
    background: #5a4a3f;
    color: #fff;
}

/* --- About Model Section --- */
.model-about {
    padding: 60px 0;
    background: #fff;
}
.model-about__row {
    display: flex;
    gap: 50px;
    align-items: center;
}
.model-about__text {
    flex: 1;
}
.model-about__text h2 {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3c3531;
    margin-bottom: 20px;
    line-height: 1.3;
}
.model-about__text p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}
.model-about__img {
    width: 45%;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
}
.model-about__img img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Benefits Section --- */
.geona-benefits {
    padding: 70px 0;
    background: #faf8f5;
}
.geona-benefits__title {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3c3531;
    margin-bottom: 50px;
    text-align: center;
}
.geona-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.geona-benefits__card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.geona-benefits__card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
.geona-benefits__card-num {
    font-size: 40px;
    font-weight: 800;
    color: #b37735;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 15px;
}
.geona-benefits__card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #3c3531;
    margin-bottom: 10px;
}
.geona-benefits__card p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* --- CTA Bar --- */
.geona-cta-bar {
    padding: 40px 0;
    background: #3c3531;
}
.geona-cta-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.geona-cta-bar__features {
    display: flex;
    gap: 40px;
}
.geona-cta-bar__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.geona-cta-bar__feature img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}
.geona-cta-bar__feature span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}
.geona-cta-bar__btn {
    display: inline-block;
    padding: 16px 35px;
    background: #b37735;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px;
    text-transform: uppercase;
    transition: background 0.3s;
    white-space: nowrap;
}
.geona-cta-bar__btn:hover {
    background: #c4883f;
    color: #fff;
}

/* --- Video in tab --- */
.product-video {
    max-width: 800px;
    margin: 0 auto 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.product-video__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.product-video__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Fancybox RuTube fix --- */
.fancybox__content {
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
}
.fancybox__iframe {
    background: #000;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .specs-row {
        flex-direction: column;
        gap: 30px;
    }
    .specs-right {
        width: 100%;
    }
    .model-about__row {
        flex-direction: column;
    }
    .model-about__img {
        width: 100%;
    }
    .geona-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .geona-cta-bar__inner {
        flex-direction: column;
        text-align: center;
    }
    .geona-cta-bar__features {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .specs-title {
        font-size: 22px;
    }
    .geona-benefits__grid {
        grid-template-columns: 1fr;
    }
    .specs-cta {
        flex-direction: column;
    }
    .specs-cta__icon {
        width: 100%;
        height: 48px;
    }
}
