

/* Start:/local/templates/template/components/bitrix/catalog/catalog/style.css?17036028821877*/
.section-subsections {
    /* width: 100vw;
    overflow: hidden; */
    margin-bottom: 40px;
}
.subsections {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
}

.subsections .subsection-card .img {
    display: flex;
    width: 110px;
    height: 110px;
    align-items: center;
    justify-content: center;
}

.subsections .subsection-card .img img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.subsections .subsection-card .bottom {
    text-align: center;
    color: #5A3916;
    font-style: normal;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    padding: 5px;
}

.subsections .subsection-card {
    border-radius: 16px;
    overflow: hidden;
    /* background-color: #FFFBF3; */
    display: flex;
    flex-direction: column;
    max-width: 110px;
}

.subsections .subsection-card:hover img {
    transform: scale(1.05);
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.subsection-card.active { 
    background-color: #CF9941;
    border: 1px solid #CF9941;
    
}

.subsection-card.active .img {
    border-radius: 16px;
    overflow: hidden;
}

.subsection-card.active .bottom {
    color: #FFFFFF;
    font-weight: 600;
}
   

/* @media (min-width: 480px) {
	.landing-layout-flex.sidebar-right .landing-sidebar {
		order: 1;
	}
} */
.catalog-tag-swiper .swiper-slide {
    max-width: fit-content;
}
/* End */


/* Start:/local/templates/template/components/bitrix/breadcrumb/hidden-desktop/style.css?1686206385585*/
.bx-breadcrumb {
	margin: 10px 0;
}
.bx-breadcrumb i {
	color: #b5bdc2;
	line-height: 13px;
	font-size: 12px;
	vertical-align: middle;
	margin-right: 5px;
}
.bx-breadcrumb .bx-breadcrumb-item {
	float: left;
	margin-bottom: 10px;
	white-space: nowrap;
	line-height: 13px;
	vertical-align: middle;
	margin-right: 10px;
}
.bx-breadcrumb .bx-breadcrumb-item span {
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 13px;
	white-space: normal;
}
.bx-breadcrumb .bx-breadcrumb-item a {border-bottom: none;}
.bx-breadcrumb .bx-breadcrumb-item a:hover {}

/* End */


/* Start:/local/templates/template/components/bitrix/catalog/catalog/bitrix/catalog.element/.default/style.css?17823752447601*/
.catalog-item-desc .price-container {
    margin-bottom: 32px;
    gap: 12px;
    justify-content: flex-start;
    line-height: 32px; 
}

.catalog-item-desc .catalog-card__new-price{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3px;
}

.catalog-item-desc .catalog-card__new-price span {
    color: #EA5D2B;
    font-size: 32px;
    font-weight: 600;
    line-height: 23px; 
    text-transform: uppercase;
    font-family: "Source Sans 3";
    font-style: normal;
}
.catalog-item-desc .catalog-card__old-price {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 3px;
    position: relative;
}
.catalog-item-desc .catalog-card__old-price span {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: #967745;
    white-space: pre;
    position: relative;
    display: inline-block;
  }
.catalog-item-desc .catalog-card__old-price::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    color: #967745;
    width: 100%;
    height: 0;
    border-bottom: 2px solid #967745;
    transform: rotate(-23.96deg);
  }

  @media (max-width: 450px) {
    .catalog-item-desc .price-container {
        justify-content: center;
    }
  }

.catalog-card__price.custombg {
    margin-bottom: 18px;
    font-size: 16px;
    color: #78bb23;
}

.catalog-card__price.custombg span {
    background: #faf3e9;
    padding: 2px 4px;
    border-radius: 6px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.modal-content {
    position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.modal-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-caption {
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #cf9941;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 30px;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10001;
    border-radius: 5px;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background: #cf9941;
    color: white;
}

@media (max-width: 768px) {
    .modal-prev,
    .modal-next {
        font-size: 20px;
        padding: 10px 15px;
    }
                            
    .modal-close {
        font-size: 30px;
        top: 10px;
        right: 20px;
    }
}

.gallery-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.gallery-link img {
    display: block;
    width: 100%;
    transition: transform 0.3s ease;
}

.gallery-link:hover img {
    transform: scale(1.02);
}

.page-catalog-detail .catalog-item.hauto {
    height:auto;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    margin:30px 0;
}

.info-card {
    flex: 1;
    border-radius: 8px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1), 0 2px 5px -2px rgba(0, 0, 0, 0.02);
    padding:10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(0px);
    border: 1px solid rgba(255,255,255,0.5);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 38px -14px rgba(0, 0, 0, 0.2);
    border-color: rgba(255,255,255,0.8);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
    border-bottom: 2px solid #cf9941;
    padding-bottom: 0.85rem;
}

.icon-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #cf99411f;
    border-radius: 10px;
    font-size: 1.35rem;
    color: #3b4b62;
    transition: all 0.2s;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.02), 0 2px 4px rgba(0,0,0,0.02);
}

.block-title {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
    line-height: 1.2;
}

.feature-list {
    list-style: none;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.feature-list li {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1f2a44;
    padding: 5px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.2s, transform 0.1s;
    border: 1px solid #cf9941;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.feature-list li:hover {
    border-color: #dce5ef;
    transform: translateX(4px);
}

.feature-list li::before {
    content:"-";
    font-size: 0.85rem;
    color: #cf9941;
    font-weight: 400;
    opacity: 0.8;
}

@media (max-width: 780px) {
    .cards-container {
        gap: 1.5rem;
        flex-direction: column-reverse;
    }
    .catalog-card__price.custombg {
        text-align: center;
    }
    .info-card {
        min-width: 260px;
        max-width: 100%;
        flex: 1 1 280px;
    }
    .block-title {
        font-size: 1.25rem;
    }
}

.info-card:focus-within {
    outline: 2px solid #9bb8da;
    outline-offset: 3px;
}

.page-catalog-detail .catalog-item .text-content.other-sections-label {
    margin-bottom:10px;
}
.product-other-sections {
    margin-bottom:20px;
}
.other-sections-links {
    display: flex;
    gap:8px;
    flex-wrap:wrap;
}
.other-section-link {
    border: 1px solid #cf9941;
    background: none;
    font-weight: 600;
    color: #cf9941;
    padding: 6px;
    border-radius: 20px;
}
.product-other-sections {
    margin: 20px 0;
}

.other-sections-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.other-section-link {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #cf9941;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #cf9941;
}

.other-section-link:hover {
    background: #5A3916
    color: white;
    transform: translateY(-2px);
}

.other-section-link--hidden {
    display: none;
}

.sections-toggle-btn {
    background: #cf9941;
    color: white;
    border: none;
    padding: 6px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s;
    margin-top: 5px;
}

.sections-toggle-btn:hover {
    background: #303030;
}

@media (max-width: 600px) {
    .other-section-link {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}
/* End */


/* Start:/local/templates/template/components/bitrix/breadcrumb/hidden-mobile/style.css?1686206385585*/
.bx-breadcrumb {
	margin: 10px 0;
}
.bx-breadcrumb i {
	color: #b5bdc2;
	line-height: 13px;
	font-size: 12px;
	vertical-align: middle;
	margin-right: 5px;
}
.bx-breadcrumb .bx-breadcrumb-item {
	float: left;
	margin-bottom: 10px;
	white-space: nowrap;
	line-height: 13px;
	vertical-align: middle;
	margin-right: 10px;
}
.bx-breadcrumb .bx-breadcrumb-item span {
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 13px;
	white-space: normal;
}
.bx-breadcrumb .bx-breadcrumb-item a {border-bottom: none;}
.bx-breadcrumb .bx-breadcrumb-item a:hover {}

/* End */
/* /local/templates/template/components/bitrix/catalog/catalog/style.css?17036028821877 */
/* /local/templates/template/components/bitrix/breadcrumb/hidden-desktop/style.css?1686206385585 */
/* /local/templates/template/components/bitrix/catalog/catalog/bitrix/catalog.element/.default/style.css?17823752447601 */
/* /local/templates/template/components/bitrix/breadcrumb/hidden-mobile/style.css?1686206385585 */
