
:root {
    --ds-primary-color: #ffbc00;
    --ds-links-color:#ffbc00;
    --ds-secondary-text-color:#282828;
}
@font-face {
    font-family: 'Taktikasans';
    src: url('fonts/TaktikaSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Taktikasans';
    src: url('../fonts/TaktikaSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
body{
    background: url(https://san-store.com.ua/catalog/view/theme/oct_deals/images/bee/28.png);
    background-size: cover;
    background-position: center;
}
.modal-header .modal-title{
    color: rgb(40 40 40);
}
.ds-column-categories-item > span > a:hover{
    text-decoration: none !important;
}
.button.button-outline-primary{
    background: #ffbc00;
    color: rgb(40 40 40);
}
.button.button-outline svg {
    filter: invert(1);
}
.ds-dropdown-toggle span{
    color:#ffbc00;
}
.ds-switcher button {
    text-decoration: none !important;
}
.ds-switcher button.active {
    color: #2e2e2e;
    background: #ffbc00 !important;
    border: none !important;
}
.light-theme .ds-header {
    background: rgb(40 40 40);
    box-shadow: none;
}
.blue-link {
    text-decoration: none;
}
.ds-menu-maincategories .ds-menu-maincategories-item:last-child {
    background: #ffbc00;
}
.ds-menu-maincategories .ds-menu-maincategories-item:last-child  a{
    color:rgb(40 40 40);
}
.ds-menu-maincategories .ds-menu-maincategories-item:last-child  img{
    filter: invert(1);
}
@media (min-width: 1200px) {
    #logo {
        margin-top: 0;
        width: 500px;
    }
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6,.fsz-20{
    font-family: Taktikasans, sans-serif !important;
    color:#ffffff;
}
.ds-product-main-content h1{
    color:#282828 !important;
}
.content-block {
    color: #404040;
    padding-bottom: 10px !important;
}
.content-block h2{
    color:#282828;
}
.breadcrumb-item+.breadcrumb-item{
    color: #ffffff !important;
}
@media (min-width: 1200px) {
    .ds-menu-catalog-items {
        background: #282828;
        border: none;
        border-radius: 0px !important;
        color: #fff;
    }
}
.ds-menu-catalog-item a {
    padding: .35rem 0.2rem;
    color: #fff !important;
}

@media (min-width: 1200px) {
    .ds-menu-catalog.ds-menu-main-catalog .ds-menu-catalog li:hover {
        background: #282828 !important;
    }
}
.ds-menu-catalog-items li:hover{
    background: #282828 !important;
}

.ds-menu-catalog-item a+svg path, .ds-menu-catalog-item-title+svg path, .ds-menu-catalog-item>span+svg path {
    fill: #ffffff !important;
}
.ds-menu-catalog-items a{
    color: #fff ;
}
.button.button-outline-primary:hover,.button.button-outline-primary:focus {
    color: #282828 !important;
}
/*.content-block p:not(.light-text,.dark-text,.secondary-text,.green-text,.red-text,.required), li, ul {*/
/*    color: #ffffff !important;*/
/*}*/
a, button, div, form, input, p, span {
    font-family: 'Google Sans', sans-serif;
}
.ds-footer .blue-link {
    color: rgb(255 188 0);
}
.ds-footer .blue-link:hover{
    color:#fff;
}
.ds-footer .light-text {
    color: #fff;
}
.content-block p:not(.light-text,.dark-text,.secondary-text,.green-text,.red-text,.required),li, ul {
    color: #282828;
}

.light-theme .ds-footer-links li a, .light-theme ul.ds-footer-item li a {
    color: #fff;
    text-decoration: none;
}
.light-text{
    color: rgb(40 40 40);
}
.ds-footer {
    background: url(https://san-store.com.ua/catalog/view/theme/oct_deals/images/bee/28.png);
    background-size: cover;
    background-position: center;
}
.light-theme .ds-footer-item-title,.ds-footer-copyrights{
    color: rgb(255 255 255);
}
.light-theme .ds-footer-item-title svg{
    filter: invert(1);
}
.ds-footer-payments-item {
    background: #fff;
}


/* ===== АНИМАЦИИ ===== */

/* левая пчела */
@keyframes beeFloatLeft {
    0%   { transform: translateY(0px) rotate(0deg); }
    50%  { transform: translateY(-12px) rotate(-2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* правая (с зеркалом внутри) */
@keyframes beeFloatRight {
    0%   { transform: scaleX(-1) translateY(0px) rotate(0deg); }
    50%  { transform: scaleX(-1) translateY(-14px) rotate(2deg); }
    100% { transform: scaleX(-1) translateY(0px) rotate(0deg); }
}


/* ===== ПЧЁЛКИ ===== */

@media (min-width: 1400px) {

    body {
        position: relative;
    }

    /* левая пчела */
    body::before {
        content: "";
        position: fixed;
        top: 20%;
        left: 0;
        width: 120px;
        height: 120px;
        background: url('../images/bee/0.png') no-repeat center/contain;
        z-index: 1;
        pointer-events: none;

        animation: beeFloatLeft 6s ease-in-out infinite;
    }

    /* правая пчела (зеркальная) */
    body::after {
        content: "";
        position: fixed;
        bottom: 23%;
        right: 5px;
        width: 120px;
        height: 120px;
        background: url('../images/bee/0.png') no-repeat center/contain;
        z-index: 1;
        pointer-events: none;

        animation: beeFloatRight 7s ease-in-out infinite;
    }

    /* третья пчела (доп) */
    .bee-3 {
        position: fixed;
        top: 60%;
        left: 10%;
        width: 100px;
        height: 100px;
        background: url('../images/bee/7.png') no-repeat center/contain;
        z-index: 1;
        pointer-events: none;

        animation: beeFloatLeft 8s ease-in-out infinite;
    }
}
/*#1*/
/*category wall*/
.ds-category-wall-item {
    height: 100%;
}

.ds-category-wall-item .content-block {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 100%;
    min-height: 120px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(40, 40, 40, 0.08);
    border-radius: 22px;
    text-decoration: none;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    box-shadow: 0 8px 30px rgba(40, 40, 40, 0.06);
}

.ds-category-wall-item .content-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 188, 0, 0.08) 0%, rgba(255, 188, 0, 0) 55%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.ds-category-wall-item .content-block:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 188, 0, 0.4);
    box-shadow: 0 18px 40px rgba(40, 40, 40, 0.12);
}

.ds-category-wall-item .content-block:hover::before {
    opacity: 1;
}

.ds-category-wall-item img {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 18px;
    background: #f8f8f8;
    padding: 2px;
    transition: transform .25s ease, background .25s ease;
}

.ds-category-wall-item .content-block:hover img {
    transform: scale(1.06);
    background: #fff7db;
}

.ds-category-wall-title {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    margin: 0;
    padding: 0 !important;
    font-family: Taktikasans, sans-serif !important;
    font-size: 17px !important;
    line-height: 1.2;
    font-weight: 400 !important;
    color: #282828 !important;
    letter-spacing: -0.02em;
    transition: color .25s ease;
    text-align: left;
    text-transform: uppercase;
}

.ds-category-wall-item .content-block:hover .ds-category-wall-title {
    color: #000 !important;
}

.ds-category-wall-title::after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-left: 12px;
    border-radius: 50%;
    background: #ffbc00;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .25s ease, transform .25s ease;
    box-shadow: 0 4px 12px rgba(255, 188, 0, 0.35);
}

.ds-category-wall-item .content-block:hover .ds-category-wall-title::after {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 767px) {
    .ds-category-wall-item .content-block {
        gap: 14px;
        min-height: 98px;
        padding: 14px 16px;
        border-radius: 18px;
    }

    .ds-category-wall-item img {
        flex: 0 0 68px;
        width: 68px;
        height: 68px;
        padding: 8px;
        border-radius: 14px;
    }

    .ds-category-wall-title {
        font-size: 15px !important;
    }

    .ds-category-wall-title::after {
        width: 20px;
        height: 20px;
        margin-left: 8px;
    }
}
/*#2*/
/*Promoblock*/
.promoBlcok_first {
    background: url(https://san-store.com.ua/catalog/view/theme/oct_deals/images/bee/28.png);
    background-size: cover;
}
/*#3*/
/*Manufacturer*/

.ds-carousel-item {
    display: block;
    height: 100%;
    text-decoration: none;
    padding: 8px;
}

.ds-carousel-item .content-block {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    height: 100%;
    /*min-height: 190px;*/
    padding: 24px 18px 18px;
    background: #fff;
    border: 1px solid rgba(40, 40, 40, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease;
    /*box-shadow: 0 8px 30px rgba(40, 40, 40, 0.06);*/
}

.ds-carousel-item .content-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    border-radius: 0 0 12px 12px;
    background: #ffbc00;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.ds-carousel-item:hover .content-block {
    transform: translateY(-4px);
    border-color: rgba(255, 188, 0, 0.35);
    /*box-shadow: 0 18px 40px rgba(40, 40, 40, 0.12);*/
}

.ds-carousel-item:hover .content-block::before {
    transform: scaleX(1);
}

.ds-carousel-item img {
    width: 100% !important;
    max-width: 150px;
    height: 82px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    transition: transform .25s ease, filter .25s ease;
}

.ds-carousel-item:hover img {
    transform: scale(1.05);
}

.ds-carousel-title {
    display: block;
    margin: 0;
    font-family: Taktikasans, sans-serif !important;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700 !important;
    color: #282828 !important;
    text-align: center;
    transition: color .25s ease;
}

.ds-carousel-item:hover .ds-carousel-title {
    color: #000 !important;
}

@media (max-width: 767px) {
    .ds-carousel-item {
        padding: 5px;
    }

    .ds-carousel-item .content-block {
        min-height: 150px;
        padding: 18px 12px 14px;
        gap: 12px;
        border-radius: 18px;
        height: fit-content !important;
    }

    .ds-carousel-item img {
        max-width: 110px;
        height: 58px;
    }

    .ds-carousel-title {
        font-size: 14px;
    }
}
/*#4*/
/*firstblock*/
/* одинаковая высота слайдов */
.ds-slideshow-item-full-img {
    height: 560px;
}

.ds-slideshow-item-full-img .ds-slideshow-plus-item-fullimg,
.ds-slideshow-item-full-img .ds-slideshow-plus-item-fullimg a,
.ds-slideshow-item-full-img picture,
.ds-slideshow-item-full-img img {
    display: block;
    width: 100%;
    height: 100%;
}

/* чтобы картинка красиво вписывалась */
.ds-slideshow-item-full-img img {
    object-fit: cover;
    border-radius: 18px;
}

/*#5*/
/*Product card*/
/* карточка */
.ds-module-item .content-block {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 18px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(20, 20, 20, 0.05);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ds-module-item .content-block:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 188, 0, 0.45);
    box-shadow: 0 18px 40px rgba(20, 20, 20, 0.1);
}

/* верхний акцент */
.ds-module-item .content-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 54px;
    height: 4px;
    background: #FFBC00;
    border-radius: 0 0 8px 8px;
    transition: width .25s ease;
}

.ds-module-item .content-block:hover::before {
    width: 110px;
}

/* блок картинки */
.ds-module-img-box {
    position: relative;
    background: #fff;
    /*border: 1px solid #f1f1f1;*/
    border-radius: 20px;
    padding: 16px;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.ds-module-item:hover .ds-module-img-box {
    border-color: #ffe08a;
    /*box-shadow: 0 10px 24px rgba(255, 188, 0, 0.12);*/
}

.ds-module-img-box > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.ds-module-img-box img {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: contain;
    transition: transform .3s ease;
}

.ds-module-item:hover .ds-module-img-box img {
    transform: scale(1.04);
}

/* кнопки справа */
.ds-module-buttons {
    top: 10px;
    right: 10px;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 3;
}

.ds-module-item:hover .ds-module-buttons {
    opacity: 1;
    transform: translateY(0);
}

.ds-module-button {
    width: 40px;
    height: 40px;
    border: 1px solid #efefef;
    border-radius: 14px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 8px 18px rgba(20,20,20,0.08);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.ds-module-button:hover {
    background: #FFBC00;
    border-color: #FFBC00;
    transform: translateY(-2px);
}

.ds-module-button:hover svg path {
    fill: #141414 !important;
}

/* стикеры */
/*.ds-module-stickers {*/
/*    gap: 8px;*/
/*    margin-bottom: 12px;*/
/*}*/

/*.ds-module-sticker {*/
/*    padding: 6px 12px;*/
/*    border-radius: 999px;*/
/*    background: #FFBC00;*/
/*    color: #141414;*/
/*    font-size: 12px;*/
/*    font-weight: 700;*/
/*    line-height: 1;*/
/*}*/


/* Очікується */
.ds-module-sticker-stickers_ochikuietsia {
    background: rgba(255, 188, 0, 0.12);
    color: #b78100;
    border-color: rgba(255, 188, 0, 0.3);
}

/* Під замовлення */
.ds-module-sticker-stickers_pid-zamovlennia {
    background: rgba(255, 200, 45, 0.15);
    color: #a86f00;
    border-color: rgba(255, 200, 45, 0.35);
}

/* Закінчується */
.ds-module-sticker-stickers_ends {
    background: rgba(255, 80, 40, 0.12);
    color: #c23b1a;
    border-color: rgba(255, 80, 40, 0.3);
}

/* (если будет "в наличии") */
.ds-module-sticker-stickers_v-nayavnosti {
    background: rgba(91, 210, 12, 0.15);
    color: #2e8f00;
    border-color: rgba(91, 210, 12, 0.35);
}
/* Хіт продажів — самый сильный */
.ds-module-sticker-stickers_khit-prodazhiv {
    background: #FFBC00;
    color: #141414;
    border: none;
    box-shadow: 0 6px 18px rgba(255,188,0,0.35);
}

/* Бестселер — чуть мягче */
.ds-module-sticker-stickers_bestseller {
    background: rgba(255, 188, 0, 0.15);
    color: #b78100;
    border: 1px solid rgba(255, 188, 0, 0.35);
}

/* Хіт — нейтральный (не конкурирует) */
.ds-module-sticker-stickers_popular {
    background: #f4f4f4;
    color: #282828;
    border: 1px solid #e6e6e6;
}

/* Рекомендуємо — доверие (зелёный) */
.ds-module-sticker-stickers_featured {
    background: rgba(91, 210, 12, 0.15);
    color: #2e8f00;
    border: 1px solid rgba(91, 210, 12, 0.35);
}

/* заголовок */
.ds-module-caption {
    padding-top: 16px;
    gap: 8px;
}

.ds-module-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
    text-decoration: none;
    font-family: Taktikasans, sans-serif !important;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    color: #141414 !important;
    transition: color .2s ease;
}

.ds-module-item:hover .ds-module-title {
    color: #282828 !important;
}

.ds-module-code {
    font-size: 12px;
    color: rgba(40,40,40,0.55) !important;
}

/* наличие */
.ds-module-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #2f9500 !important;
}

.ds-module-stock::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5BD20C;
    flex-shrink: 0;
}

/* рейтинг */
.ds-module-rating {
    padding-top: 2px;
}

/* цена */
.ds-module-price {
    margin-top: auto;
    padding-top: 12px;
}

.ds-price-new {
    font-family: Taktikasans, sans-serif !important;
    font-size: 24px !important;
    line-height: 1;
    font-weight: 700 !important;
    color: #141414 !important;
    letter-spacing: -0.03em;
}

/* низ карточки */
.ds-module-cart {
    margin-top: 16px;
    align-items: stretch !important;
}

.ds-module-cart-btn {
    position: static !important;
    width: 100%;
    min-height: 48px;
    justify-content: center;
    gap: 10px;
    border: none !important;
    border-radius: 16px;
    background: #FFBC00 !important;
    color: #141414 !important;
    box-shadow: 0 10px 20px rgba(255, 188, 0, 0.2);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.ds-module-cart-btn:hover {
    background: #FFC82D !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(255, 188, 0, 0.28);
}

.ds-module-cart-btn .button-text {
    font-weight: 700;
}

.ds-module-cart-btn svg path {
    fill: #141414 !important;
}

/* количество */
.ds-module-quantity {
    background: #f7f7f7;
    border-radius: 16px;
    min-height: 48px;
    padding: 0 6px;
    border: 1px solid #ececec;
}

/* мобильная */
@media (max-width: 767px) {
    .ds-module-item .content-block {
        padding: 14px;
        border-radius: 18px;
    }

    .ds-module-img-box {
        padding: 12px;
        border-radius: 16px;
    }

    .ds-module-img-box > a {
        min-height: 170px;
    }

    .ds-module-img-box img {
        max-width: 170px;
        height: 170px;
    }

    .ds-module-title {
        font-size: 15px;
    }

    .ds-price-new {
        font-size: 20px !important;
    }

    .ds-module-button {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }
}

/*#6*/
/*Primary*/
.button.button-primary{
    color: rgb(40 40 40) !important;
}
.ds-price-block-min {
    background: #5cd20b !important;
}
.green-text {
    color: #5cd20b !important;
}

/*7*/
/*sidebar*/
.ds-column-categories-children.ds-categories-2 a{
    color: #282828 !important;
}

/* контейнер */
.ds-column-categories {
    gap: 14px;
}

/* заголовок */
.ds-column-categories-title {
    font-family: Taktikasans, sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 18px;
    border-radius: 18px;
    background: #141414;
    color: #fff !important;
}

/* список */
.ds-column-categories-list {
    gap: 6px;
}

/* item */
.ds-column-categories-item {
    border-radius: 14px;
    transition: all .2s ease;
    padding: 10px;
}
.ds-column-categories-children.ds-categories-2 li {
    padding: 0;
}
/* ссылка */
.ds-column-categories-item > span > a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #282828;
    text-decoration: none;
    transition: all .2s ease;
}

/* hover */
.ds-column-categories-item > span > a:hover {
    background: #fff8e1;
    color: #141414;
}

/* активная категория */
.ds-column-categories-item .current {
    background: #FFBC00;
    color: #141414 !important;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(255,188,0,0.25);
}

/* стрелка */
.ds-column-categories-toggle {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #f5f5f5;
    transition: .2s;
}

.ds-column-categories-toggle:hover {
    background: #FFBC00;
}

.ds-column-categories-toggle:hover svg path {
    fill: #141414;
}

/* вложенность */
.ds-column-categories-children {
    padding-left: 10px;
    margin-top: 6px;
}

/* второй уровень */
.ds-column-categories-children .ds-column-categories-item > span > a {
    padding: 10px 12px;
    font-size: 13px;
    color: #555;
}

/* активный второй уровень */
.ds-column-categories-children .current {
    background: rgba(255,188,0,0.15);
    color: #b78100 !important;
}

/* третий уровень */
.ds-categories-3 a {
    font-size: 12px;
    color: #777;
}

/* линия слева (иерархия) */
.ds-column-categories-children {
    border-left: 2px solid #f1f1f1;
}

/*8*/
/*Product*/
#content .ds-product-main-content.content-block {
    padding: 24px !important;
    border-radius: 28px !important;
    border: 1px solid #ececec !important;
    box-shadow: 0 10px 30px rgba(20,20,20,0.05) !important;
    background: #fff !important;
}

@media (max-width: 767px) {
    #content .ds-product-main-content.content-block {
        padding: 16px !important;
        border-radius: 20px !important;
    }
}


#product .ds-product-main-stock {
    padding: 10px 14px;
    background: rgba(91, 210, 12, 0.12);
    color: #2f9500 !important;
    border: 1px solid rgba(91, 210, 12, 0.22);
    border-radius: 999px !important;
}

#product .ds-product-main-price {
    margin-top: 8px;
    margin-bottom: 8px;
}
#product .ds-price-block-min .ds-price-new {
    color:#fff !important;
    font-family: 'Google Sans',sans-serif !important;
    font-size:.975rem !important;
    line-height: 22px;
}
#product .ds-price-new {
    font-family: Taktikasans, sans-serif !important;
    font-size: 38px !important;
    line-height: 1;
    font-weight: 700 !important;
    color: #141414 !important;
    letter-spacing: -0.03em;
}

@media (max-width: 767px) {
    #product .ds-price-new {
        font-size: 30px !important;
    }
}

#product .ds-product-main-actions.content-block {
    padding: 24px !important;
    border: 1px solid #ececec !important;
    border-radius: 24px !important;
    background: url(https://san-store.com.ua/catalog/view/theme/oct_deals/images/bee/28.png);
    box-shadow: 0 12px 28px rgba(20, 20, 20, 0.05) !important;
    background-size: contain;
}
#product .ds-module-quantity {
    min-height: 54px;
    border: 1px solid #ececec;
    background: #fff;
    border-radius: 16px !important;
    padding: 0 8px;
}

#product #input-quantity {
    border: none !important;
    box-shadow: none !important;
    text-align: center;
    font-weight: 600;
    background: transparent !important;
}

#product .ds-module-quantity-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f7f7f7;
    transition: .2s ease;
}

#product .ds-module-quantity-btn:hover {
    background: #FFBC00;
}

#product .ds-module-quantity-btn:hover svg path {
    fill: #141414 !important;
}

#product .ds-product-main-cart-button {
    min-height: 54px;
    border-radius: 16px !important;
    background: #FFBC00 !important;
    border: none !important;
    color: #141414 !important;
    box-shadow: 0 12px 24px rgba(255,188,0,0.2);
    transition: .25s ease;
}

#product .ds-product-main-cart-button:hover {
    background: #FFC82D !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(255,188,0,0.28);
}

#product .ds-product-main-cart-button svg path {
    fill: #141414 !important;
}

#product .ds-buy-one-click {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #efefef;
}

#product .one_click_input {
    min-height: 48px;
    border: 1px solid #e7e7e7 !important;
    border-radius: 14px 0 0 14px !important;
    box-shadow: none !important;
    padding-left: 14px;
}

#product .one_click_input:focus {
    border-color: #FFBC00 !important;
}

#product .ds-buy-one-click-btn {
    min-height: 48px;
    border-radius: 0 14px 14px 0 !important;
    border-color: #FFBC00 !important;
    background: #FFBC00 !important;
    color: #141414 !important;
}

#product .ds-buy-one-click-btn svg path {
    fill: #141414 !important;
}


.ds-product-compare.added, .ds-product-compare.added:hover, .ds-product-wishlist.added, .ds-product-wishlist.added:hover {
    background-color: #5cd20b;
}

/* блок поддержки */
.ds-product-advantages-item:last-child {
    background: url(https://san-store.com.ua/catalog/view/theme/oct_deals/images/bee/28.png);
    color: #fff;
    background-size: contain;
    border-radius: 20px;
}

.ds-product-advantages-item:last-child a {
    color: #FFBC00 !important;
}

.ds-product-advantages-item:last-child .light-text {
    color: #ccc !important;
}

/* иконка shield */
.ds-product-advantages-item:last-child img {
    filter: invert(1);
}

@media (min-width: 1200px) {
    #product .ds-product-main-actions {
        position: sticky;
        top: 20px;
        transition: box-shadow .2s ease;
    }

    #product .ds-product-main-actions.is-sticky {
        box-shadow: 0 12px 30px rgba(20,20,20,0.12);
    }
}
.ds-product-tab-content a {
    color: var(--ds-links-color);
    text-decoration: none;
}
.ds-product-description h3, .ds-product-description h4, .ds-product-description h2, .ds-product-description h1, .ds-product-description h5, .ds-product-description h6 {
    font-size: 16px !important;
    font-family: 'Open Sans' !important;
    color: #282828 !important;
}
.ds-product-tab-content-text * {
    font-size: 16px !important;
    font-family: 'Open Sans' !important;
    color: #282828 !important;
}
.ds-contacts a:empty {
    display: none !important;
}

/* общий блок */

/* карточка */
.ds-contacts-item.content-block {
    padding: 24px !important;
    border-radius: 24px !important;
    border: 1px solid #ececec !important;
    box-shadow: 0 10px 30px rgba(20,20,20,0.05);
}

/* заголовок */
.ds-contacts-item-title {
    font-family: Taktikasans, sans-serif !important;
    font-size: 28px;
    font-weight: 700;
}

/* подзаголовок */
.ds-contacts-item-text {
    font-size: 14px;
    color: #888;
}

/* картинка */
.ds-contacts-item-img img {
    border-radius: 18px;
    width: 100%;
    height: auto;
}

/* блоки внутри */
.ds-contacts-item-info > div {
    background: #fafafa;
    border-radius: 16px;
    padding: 14px 16px;
    flex: 1;
}

/* заголовки внутри */
.ds-contacts-item-info-title {
    font-size: 15px;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* списки */
.ds-contacts-item-info ul li {
    line-height: 1.4;
}

/* телефоны */
.ds-contacts-item-info-phones a {
    color: #141414;
    text-decoration: none;
    font-weight: 600;
}

.ds-contacts-item-info-phones a:hover {
    color: #FFBC00;
}

/* соцсети */
.ds-contacts-item-social {
    width: 40px;
    height: 40px;
    border-radius: 12px !important;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.ds-contacts-item-social:hover {
    background: #FFBC00;
    transform: translateY(-2px);
}

/* адрес */
.ds-contacts-item-info-title + .secondary-text a {
    color: #141414;
    text-decoration: none;
    font-weight: 500;
}

.ds-contacts-item-info-title + .secondary-text a:hover {
    color: #FFBC00;
}

/* карта */
iframe {
    border-radius: 18px;
}

/* правая колонка (форма) */
.ds-contacts-column.content-block {
    padding: 24px !important;
    border-radius: 24px !important;
    border: 1px solid #ececec !important;
    box-shadow: 0 12px 30px rgba(20,20,20,0.06);
}

/* sticky блок */
.ds-sticky-column {
    position: sticky;
    top: 100px;
}

/* форма */
.ds-contacts-column input,
.ds-contacts-column textarea {
    border-radius: 14px !important;
    border: 1px solid #e7e7e7 !important;
    box-shadow: none !important;
}

.ds-contacts-column input:focus,
.ds-contacts-column textarea:focus {
    border-color: #FFBC00 !important;
}

/* кнопка */
.ds-contacts-column .button-primary {
    width: 100%;
    height: 48px;
    border-radius: 14px !important;
    background: #FFBC00 !important;
    color: #141414 !important;
    border: none !important;
}

.ds-contacts-column .button-primary:hover {
    background: #FFC82D !important;
}
.ds-contacts a:not([href]) {
    display: contents !important;
    pointer-events: none !important;
    color: inherit !important;
    text-decoration: none !important;
}

/*#delivery*/
.delivery-info {
    padding: 28px !important;
    border-radius: 24px !important;
    border: 1px solid #ececec !important;
    background: #fff !important;
    box-shadow: 0 10px 30px rgba(20,20,20,0.05);
    color: #282828 !important;
}

.delivery-info__hero {
    margin-bottom: 28px;
    border-radius: 20px;
    overflow: hidden;
    background: #f8f8f8;
}

.delivery-info__hero img {
    display: block;
    width: 100%;
    height: auto;
    height: 400px;
    object-fit: cover;
}
.delivery-info__section {
    margin-bottom: 24px;
    padding: 20px 22px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
}

.delivery-info__section h2 {
    margin: 0 0 12px;
    font-family: Taktikasans, sans-serif !important;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #141414;
}

.delivery-info__section p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #404040;
}

.delivery-info__section p + p {
    margin-top: 12px;
}

.delivery-info__list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.delivery-info__list li {
    position: relative;
    margin: 0;
    padding: 0 0 0 22px;
    font-size: 15px;
    line-height: 1.7;
    color: #404040;
}

.delivery-info__list li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFBC00;
}

.delivery-info__note {
    margin-top: 12px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #fff8e1;
    border: 1px solid rgba(255, 188, 0, 0.25);
}

.delivery-info__note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
}

.delivery-info__note p + p {
    margin-top: 12px;
}

.delivery-info a {
    color: #141414;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 188, 0, 0.45);
    transition: .2s ease;
}

.delivery-info a:hover {
    color: #000;
    border-bottom-color: #FFBC00;
}

@media (max-width: 767px) {
    .delivery-info {
        padding: 18px !important;
        border-radius: 18px !important;
    }

    .delivery-info__section {
        padding: 16px;
        border-radius: 14px;
    }

    .delivery-info__section h2 {
        font-size: 20px;
    }

    .delivery-info__section p,
    .delivery-info__list li,
    .delivery-info__note p {
        font-size: 14px;
    }
}

/*#about*/

.about-company {
    padding: 40px !important;
    border-radius: 28px !important;
    background: #fff !important;
    border: 1px solid #ececec !important;
}

/* HERO */
.about-company__hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.about-company__hero-text h1 {
    font-family: Taktikasans, sans-serif !important;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-company__hero-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #404040;
}

.about-company__badge {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 18px;
    background: #FFBC00;
    border-radius: 999px;
    font-weight: 700;
    color: #141414;
}

/* картинка */
.about-company__hero-img img {
    width: 100%;
    border-radius: 24px;
}

/* секции */
.about-company__section {
    margin-bottom: 40px;
}

.about-company__section h2 {
    font-family: Taktikasans, sans-serif !important;
    font-size: 26px;
    margin-bottom: 12px;
}

.about-company__section p {
    font-size: 15px;
    line-height: 1.7;
    color: #404040;
}

/* галерея */
.about-company__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.about-company__gallery img {
    width: 100%;
    border-radius: 18px;
    height: 500px;
    object-fit: cover;
}
/* товары */
.about-company__products ul {
    margin: 0;
    padding: 0;
    list-style: none;
    columns: 2;
    gap: 20px;
}

.about-company__products li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 10px;
}

.about-company__products li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #FFBC00;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/* адаптив */
@media (max-width: 992px) {
    .about-company__hero {
        grid-template-columns: 1fr;
    }

    .about-company__gallery {
        grid-template-columns: 1fr;
    }

    .about-company__products ul {
        columns: 1;
    }
}

/*#payment*/

.payment-info {
    padding: 32px !important;
    border-radius: 28px !important;
    background: #fff !important;
    border: 1px solid #ececec !important;
}

.payment-info__title {
    font-family: Taktikasans, sans-serif !important;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
}

/* сетка */
.payment-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* карточка */
.payment-card {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid #ececec;
    background: #fafafa;
    transition: .25s ease;
}

.payment-card:hover {
    border-color: #FFBC00;
    box-shadow: 0 12px 24px rgba(255,188,0,0.12);
    transform: translateY(-4px);
}

/* заголовок */
.payment-card h3 {
    font-family: Taktikasans, sans-serif !important;
    font-size: 20px;
    margin-bottom: 10px;
}

/* текст */
.payment-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #404040;
}

/* список */
.payment-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.payment-card li {
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
    font-size: 14px;
}

.payment-card li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #FFBC00;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}

/* адаптив */
@media (max-width: 992px) {
    .payment-info__grid {
        grid-template-columns: 1fr;
    }

    .payment-info__title {
        font-size: 24px;
    }
}

/*#reviews*/

.ds-store-reviews-rating {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(20,20,20,0.05);
}

/* большая цифра */
.ds-store-reviews-rating-main-value {
    font-size: 36px;
    font-weight: 700;
    background: #FFBC00 !important;
    color: #141414 !important;
    border-radius: 14px;
    padding: 10px 16px;
}

/* блоки параметров */
.ds-store-reviews-rating-details {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ds-store-reviews-rating-details-item {
    padding: 14px;
    border-radius: 16px;
    background: #fafafa;
    border: 1px solid #eee;
    transition: .2s;
}

.ds-store-reviews-rating-details-item:hover {
    border-color: #FFBC00;
    background: #fff8e1;
}

.ds-store-reviews-rating-details-item-value {
    font-weight: 700;
    font-size: 18px;
}

.ds-product-reviews-item {
    border-radius: 20px !important;
    border: 1px solid #ececec;
    background: #fff;
    padding: 20px !important;
    transition: .25s;
}

.ds-product-reviews-item:hover {
    box-shadow: 0 12px 30px rgba(20,20,20,0.08);
}

/* имя */
.ds-store-reviews-item-info span {
    font-weight: 700;
}

/* дата */
.ds-product-reviews-item-header span {
    font-size: 12px;
    color: #888;
}

/* текст */
.ds-product-reviews-item-content {
    font-size: 15px;
    line-height: 1.6;
    color: #404040;
}

/* оценки внутри */
.ds-product-reviews-item-content .dark-text {
    font-size: 13px;
}

/* аватар */
.ds-store-reviews-item-author svg {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 6px;
}

.ds-product-reviews-item-answer {
    background: #fff8e1;
    border: 1px solid rgba(255,188,0,0.3);
    border-radius: 16px !important;
    margin-left: 40px;
}

.ds-product-reviews-item-answer-title {
    color: #141414;
    font-weight: 700;
}

/* линия слева */
.ds-product-reviews-item-answer::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 20px;
    width: 3px;
    height: calc(100% - 40px);
    background: #FFBC00;
    border-radius: 2px;
}



/*#blog*/
.ds-last-news-item .content-block {
    padding: 0 !important;
    border-radius: 20px !important;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ececec;
    transition: .25s ease;
}

.ds-last-news-item .content-block:hover {
    box-shadow: 0 15px 35px rgba(20,20,20,0.08);
    transform: translateY(-4px);
}
.ds-last-news-item a img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .4s ease;
}

.ds-last-news-item:hover img {
    transform: scale(1.05);
}
.ds-last-news-item-info {
    padding: 18px;
}

/* заголовок */
.ds-last-news-item-title {
    font-family: Taktikasans, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.4;
    font-weight: 700 !important;
    color: #141414 !important;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    transition: .2s;
}

.ds-last-news-item:hover .ds-last-news-item-title {
    color: #000;
}
.ds-last-news-item-category {
    font-size: 12px;
    padding: 4px 10px;
    margin-right: 10px;
    border-radius: 999px;
    background: #fff8e1;
    color: #141414;
    border: 1px solid rgba(255,188,0,0.3);
}

.ds-last-news-item-category svg {
    display: none;
}
.ds-last-news-item-date {
    font-size: 12px;
    color: #999;
}

.ds-last-news-item-date svg {
    display: none;
}
.ds-last-news-item-info {
    position: relative;
}

.ds-last-news-item-info::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #FFBC00;
    border-radius: 2px;
}
/*#post*/

/* ===== ОБЩИЕ СТИЛИ ДЛЯ СТАТЕЙ ===== */

.ds-blog-post-text {
    font-size: 16px !important;
    line-height: 1.75;
    color: #404040;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* убираем лишнюю узкую bootstrap-обертку внутри статьи */
.ds-blog-post-text .col-12,
.ds-blog-post-text .col-sm-12,
.ds-blog-post-text .col-md-10,
.ds-blog-post-text .offset-sm-1 {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex: 0 0 100% !important;
}

/* абзацы */
.ds-blog-post-text p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.75;
    color: #404040;
}

/* заголовки */
.ds-blog-post-text h1,
.ds-blog-post-text h2,
.ds-blog-post-text h3,
.ds-blog-post-text h4,
.ds-blog-post-text h5,
.ds-blog-post-text h6 {
    font-family: Taktikasans, sans-serif !important;
    color: #141414 !important;
    line-height: 1.25;
    font-weight: 700 !important;
    margin: 32px 0 16px !important;
}

.ds-blog-post-text h1 { font-size: 34px; }
.ds-blog-post-text h2 { font-size: 28px; }
.ds-blog-post-text h3 { font-size: 24px; }
.ds-blog-post-text h4 { font-size: 20px; }
.ds-blog-post-text h5 { font-size: 18px; }
.ds-blog-post-text h6 { font-size: 16px; }

/* ссылки */
.ds-blog-post-text a {
    color: #141414;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 188, 0, 0.45);
    transition: .2s ease;
}

.ds-blog-post-text a:hover {
    color: #000;
    border-bottom-color: #FFBC00;
}

/* списки */
.ds-blog-post-text ul,
.ds-blog-post-text ol {
    margin: 0 0 22px;
    padding: 0 0 0 24px;
    color: #404040;
}

.ds-blog-post-text ul {
    list-style: none;
    padding-left: 0;
}

.ds-blog-post-text ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.ds-blog-post-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FFBC00;
}

.ds-blog-post-text ol li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* сильное выделение */
.ds-blog-post-text strong,
.ds-blog-post-text b {
    color: #141414;
    font-weight: 700;
}

.ds-blog-post-text em,
.ds-blog-post-text i {
    color: #555;
}

/* цитаты */
.ds-blog-post-text blockquote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 4px solid #FFBC00;
    background: #fff8e1;
    border-radius: 0 16px 16px 0;
    color: #404040;
}

/* картинки */
.ds-blog-post-text img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 18px;
    display: block;
}

/* одиночные картинки */
.ds-blog-post-text p > img:only-child,
.ds-blog-post-text > img,
.ds-blog-post-text figure img {
    margin: 24px auto;
    box-shadow: 0 10px 28px rgba(20,20,20,0.08);
}

/* float картинки из старых статей */
.ds-blog-post-text img[style*="float:left"] {
    float: left !important;
    margin: 6px 24px 16px 0 !important;
    max-width: min(45%, 420px) !important;
}

.ds-blog-post-text img[style*="float:right"] {
    float: right !important;
    margin: 6px 0 16px 24px !important;
    max-width: min(45%, 420px) !important;
}

/* если после float идет хаос */
.ds-blog-post-text::after {
    content: "";
    display: block;
    clear: both;
}

/* таблицы */
.ds-blog-post-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(20,20,20,0.05);
}

.ds-blog-post-text table th,
.ds-blog-post-text table td {
    border: 1px solid #ececec;
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.ds-blog-post-text table th {
    background: #fff8e1;
    color: #141414;
    font-weight: 700;
}

/* iframe / video */
.ds-blog-post-text iframe,
.ds-blog-post-text video {
    width: 100%;
    max-width: 100%;
    border: 0;
    border-radius: 18px;
    margin: 24px 0;
}

/* hr */
.ds-blog-post-text hr {
    border: 0;
    border-top: 1px solid #ececec;
    margin: 32px 0;
}

/* служебные пустые блоки старых статей */
.ds-blog-post-text p:empty,
.ds-blog-post-text div:empty,
.ds-blog-post-text span:empty {
    display: none !important;
}

/* мета-блок под статьей */
.ds-blog-post-info {
    gap: 18px;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    flex-wrap: wrap;
}

.ds-blog-post-info-item {
    color: #777;
    font-size: 13px;
}

.ds-blog-post-info-item svg {
    opacity: .7;
}

/* кнопка комментария */
button[data-bs-target="#blogCommentModal"] {
    min-height: 48px;
    border-radius: 14px !important;
    background: #FFBC00 !important;
    border: none !important;
    color: #141414 !important;
    font-weight: 600;
}

button[data-bs-target="#blogCommentModal"]:hover {
    background: #FFC82D !important;
}

/* комментарии */
.ds-blog-post-comments {
    border-top: 1px solid #ececec;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 992px) {
    .ds-blog-post-text h1 { font-size: 28px; }
    .ds-blog-post-text h2 { font-size: 24px; }
    .ds-blog-post-text h3 { font-size: 21px; }

    .ds-blog-post-text img[style*="float:left"],
    .ds-blog-post-text img[style*="float:right"] {
        float: none !important;
        margin: 20px auto !important;
        max-width: 100% !important;
    }
}

@media (max-width: 767px) {
    .ds-blog-post-text {
        font-size: 15px !important;
        line-height: 1.7;
    }

    .ds-blog-post-text p,
    .ds-blog-post-text ul li,
    .ds-blog-post-text ol li {
        font-size: 15px;
    }

    .ds-blog-post-text h1 { font-size: 24px; }
    .ds-blog-post-text h2 { font-size: 22px; }
    .ds-blog-post-text h3 { font-size: 19px; }

    .ds-blog-post-info {
        gap: 10px;
    }
}

.ds-sidebar-content .ds-module-item:not(.product-layout) {
    width: 100%;
    max-height: 150px;
}
.content-block-text a:hover {
    text-decoration: none;
    color: #5bd20c !important;
}

.content-block-text a {
    color: #282828 !important;
    text-decoration: underline;
    cursor: pointer;
}
@media(max-width:769px){
    .ds-slideshow-items{
        min-height: 430px;
    }
    .slick-initialized .slick-slide {
    display: block;
    min-height: auto;
}
.ds-menu-catalog-items a {
    color: #000 !important;
}
}