/* ===== Custom variables ===== */
:root {
    --brown-dark: #2e2219;
    --white: #fefefe;
    --grey: #7c7c7c;
    --beige: #f2f0ec;
    --light-grey: #999;
    --dark-beige: #b7b2ad;
    --stroke-grey: #d9d9d9;
    --green: #346501;
    --red: #8f0020;
}







/* ===== Global ===== */
body {
    font-family: 'NT Somic', 'Raleway', sans-serif;
    color: var(--brown-dark);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--brown-dark);
}

.page-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

/* ===== Typography ===== */
h1, .display-1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 50px;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

h2, .display-2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 300!important;
    font-size: 44px;
    letter-spacing: -1.32px;
    line-height: 1.35;
}
.brown-dark { color: var(--brown-dark);}
.notice-text{
    border-left: 2px solid currentColor;
    padding-left: 14px;
    margin-left: 4px;
}
h3 {font-size: calc(1.1rem + .6vw)!important;font-weight: 300;}

:root {
  /* Цвета */
  --brown-dark: #2E2219;
  --white: #FEFEFE;
  --grey: #7C7C7C;
  --beige: #F2F0EC;
  --light-grey: #999999;
  --dark-beige: #B7B2AD;
  --stroke-grey: #D9D9D9;
  --green: #346501;
  --red: #8F0020;

  /* Шрифты и размеры заголовков */
  --desktop-h1-font-family: "Raleway", Helvetica;
  --desktop-h1-font-weight: 500;
  --desktop-h1-font-size: 50px;
  --desktop-h1-letter-spacing: -1.5px;
  --desktop-h1-line-height: 120%;

  --desktop-h2-font-family: "Raleway", Helvetica;
  --desktop-h2-font-weight: 500;
  --desktop-h2-font-size: 44px;
  --desktop-h2-letter-spacing: -1.32px;
  --desktop-h2-line-height: 135%;

  --desktop-h3-font-family: "Raleway", Helvetica;
  --desktop-h3-font-weight: 500;
  --desktop-h3-font-size: 40px;
  --desktop-h3-letter-spacing: -1.2px;
  --desktop-h3-line-height: 135%;

  --desktop-h4-font-family: "Raleway", Helvetica;
  --desktop-h4-font-weight: 500;
  --desktop-h4-font-size: 32px;
  --desktop-h4-letter-spacing: -0.32px;
  --desktop-h4-line-height: 140%;

  --desktop-h5-font-family: "Raleway", Helvetica;
  --desktop-h5-font-weight: 600;
  --desktop-h5-font-size: 28px;
  --desktop-h5-letter-spacing: -0.28px;
  --desktop-h5-line-height: 140%;

  /* Шрифты и размеры текста */
  --desktop-body-18-font-family: "NT Somic", Helvetica;
  --desktop-body-18-font-weight: 400;
  --desktop-body-18-font-size: 18px;
  --desktop-body-18-letter-spacing: -0.36px;
  --desktop-body-18-line-height: 150%;

  --desktop-body-20-font-family: "NT Somic", Helvetica;
  --desktop-body-20-font-weight: 400;
  --desktop-body-20-font-size: 20px;
  --desktop-body-20-letter-spacing: -0.4px;
  --desktop-body-20-line-height: 150%;

  --desktop-body-22-font-family: "NT Somic", Helvetica;
  --desktop-body-22-font-weight: 400;
  --desktop-body-22-font-size: 22px;
  --desktop-body-22-letter-spacing: -0.44px;
  --desktop-body-22-line-height: 150%;

  --desktop-body-24-font-family: "NT Somic", Helvetica;
  --desktop-body-24-font-weight: 400;
  --desktop-body-24-font-size: 24px;
  --desktop-body-24-letter-spacing: 0px;
  --desktop-body-24-line-height: 150%;

  --desktop-body-32-font-family: "NT Somic", Helvetica;
  --desktop-body-32-font-weight: 400;
  --desktop-body-32-font-size: 32px;
  --desktop-body-32-letter-spacing: -0.96px;
  --desktop-body-32-line-height: 115%;

  --desktop-body-36-font-family: "NT Somic", Helvetica;
  --desktop-body-36-font-weight: 400;
  --desktop-body-36-font-size: 36px;
  --desktop-body-36-letter-spacing: -0.72px;
  --desktop-body-36-line-height: 140%;
}

/* Пример использования */
h1 {
  font-family: var(--desktop-h1-font-family);
  font-weight: var(--desktop-h1-font-weight);
  font-size: var(--desktop-h1-font-size);
  letter-spacing: var(--desktop-h1-letter-spacing);
  line-height: var(--desktop-h1-line-height);
  color: var(--brown-dark);
}

p {
  font-family: var(--desktop-body-18-font-family);
  font-weight: var(--desktop-body-18-font-weight);
  font-size: var(--desktop-body-18-font-size);
  letter-spacing: var(--desktop-body-18-letter-spacing);
  line-height: var(--desktop-body-18-line-height);
  color: var(--grey);
}









.lead {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.48px;
    white-space: normal;
}

.lead br {
    display: initial;
}

.fs-5 {
    font-size: 22px !important;
    line-height: 1.5;
}

.text-gray {
    color: gray !important;
}

/* ===== Header ===== */
.header {
    border-bottom: 1px solid var(--stroke-grey);
    background-color: var(--white);
}

/* Фіксований хедер на мобільних */
@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        z-index: 1000;
        width: 100%;
    }
    .main-content {
        padding-top: 0;
    }
}

.logo-part {
    height: 41px;
    width: auto;
}

/* ===== Hero ===== */
.hero-left {
    height: 1003px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-content {
    max-width: 763px;
    color: var(--brown-dark);
    margin-top: 150px;
}

.hero-right {
    height: 1003px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.circle-button {
    width: 277px;
    height: 277px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.48px;
    color: var(--brown-dark);
    text-align: center;
    cursor: default;
}

/* Кругла кнопка – на десктопі в правому нижньому куті */
.hero-right .circle-button {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 277px;
    height: 277px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.48px;
    color: var(--brown-dark);
    text-align: center;
    cursor: default;
}

/* Мобільна версія (до 768px) */
@media (max-width: 768px) {
    .hero-left {
        background-image: none !important;
        background-color: transparent;
        height: auto;
        padding: 3rem 1rem;
        align-items: center;
    }
    .hero-left .hero-content {
        margin-top: 0;
    }
    .hero-right {
        height: 500px;
        width: 100%;
    }
    .hero-right .circle-button {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: auto;
        right: auto;
        width: 200px;
        height: 200px;
        font-size: 18px;
    }
}

/* Для планшетів */
@media (max-width: 992px) and (min-width: 769px) {
    .hero-right .circle-button {
        width: 220px;
        height: 220px;
        font-size: 20px;
        bottom: 30px;
        right: 30px;
    }
}

/* ===== Small square indicator ===== */
.small-square {
    width: 8px;
    height: 8px;
    background-color: var(--brown-dark);
    display: inline-block;
}

/* ===== Categories ===== */
.category-card {
    position: relative;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 402px;
    object-fit: cover;
}

.category-card-body {
    background-color: var(--beige);
    min-height: 174px;
}

.bg-beige {
    background-color: var(--beige) !important;
}

/* ===== Product cards ===== */
.product-card img {
    width: 100%;
    height: 437px;
    object-fit: cover;
    background-color: #ececec;
}

/* ===== Footer ===== */
.bg-dark-brown {
    background-color: var(--brown-dark) !important;
}

.footer .small {
    font-family: 'NT Somic', sans-serif;
    font-size: 18px;
    letter-spacing: -0.36px;
    color: var(--white);
    opacity: 0.8;
}

.footer ul li {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.footer .small-square {
    background-color: var(--white);
    width: 8px;
    height: 8px;
}

/* ===== Links ===== */
a.border-bottom {
    border-bottom-width: 1px !important;
    border-color: var(--dark-beige) !important;
}

/* ===== Dropdown ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    background-color: var(--white);
    border: 1px solid var(--stroke-grey);
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-family: 'NT Somic', sans-serif;
}

.dropdown.show .dropdown-menu {
    display: block;
}

.dropdown-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0.6rem 1.5rem;
    clear: both;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--brown-dark);
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: padding-left 0.15s ease-in-out;
}

/* Круглий маркер (схований) */
.dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--brown-dark);
    opacity: 0;
    transition: opacity 0.15s ease-in-out, left 0.15s ease-in-out;
    pointer-events: none;
}

.dropdown-item:hover {
    background-color: var(--beige);
    padding-left: 2rem;
}

.dropdown-item:hover::before {
    opacity: 1;
    left: 0.75rem;
}

.dropdown-toggle::after {
    display: none !important;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 2000;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--stroke-grey);
}

.mobile-menu-content {
    max-width: 400px;
    margin: 0 auto;
}

.mobile-menu .categories-list {
    margin-bottom: 2rem;
}

.mobile-menu .category-item {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.48px;
    color: var(--brown-dark);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--stroke-grey);
    cursor: default;
}

.mobile-menu .menu-section ul {
    padding-left: 0;
}

.mobile-menu .menu-section ul li a {
    font-size: 18px;
    color: var(--brown-dark);
    transition: padding-left 0.15s;
    display: inline-block;
}

.mobile-menu .menu-section ul li a:hover {
    padding-left: 1.5rem;
    background-color: var(--beige);
    width: 100%;
}

/* ===== Mobile hero adjustments ===== */
@media (max-width: 768px) {
    .hero-left {
        height: auto;
        min-height: 600px;
        background-position: center;
        padding: 3rem 1rem;
    }
    .hero-content .btn {
        display: inline-block;
        border-radius: 0;
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    .hero-content h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    .hero-content .lead {
        font-size: 18px;
    }
}

.hero-content .btn.d-md-none {
    border-radius: 0;
    background-color: var(--white);
    border: 1px solid var(--stroke-grey);
    color: var(--brown-dark);
    font-weight: 600;
}

/* ===== Responsive adjustments ===== */
@media (max-width: 768px) {
    h1, .display-1 {
        font-size: 36px;
    }
    h2, .display-2 {
        font-size: 32px;
    }
    .hero-left, .hero-right {
        height: 500px;
    }
    .circle-button {
        width: 200px;
        height: 200px;
        font-size: 18px;
    }
}

/* ===== Стрілка під нахилом ===== */
.fa-arrow-right {
    transform: rotate(-45deg);
    display: inline-block;
}

/* ===== Стилі для каруселі бестселерів ===== */
#bestsellersCarousel {
    position: relative;
    padding: 0 40px;
}

/* Збільшуємо тривалість переходу для повільнішого гортання */
#bestsellersCarousel .carousel-item {
    transition: transform 0.8s ease-in-out !important;
}

/* Стрілки */
#bestsellersCarousel .carousel-control-prev,
#bestsellersCarousel .carousel-control-next {
    width: 44px;
    height: 44px;
    background-color: var(--brown-dark);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: opacity 0.2s;
    background: none !important;
    z-index: 10;
}

#bestsellersCarousel .carousel-control-prev:hover,
#bestsellersCarousel .carousel-control-next:hover {
    opacity: 1;
}

#bestsellersCarousel .carousel-control-prev {
    left: -20px;
}

#bestsellersCarousel .carousel-control-next {
    right: -20px;
}

/* Іконки стрілок (білі) */
#bestsellersCarousel .carousel-control-prev-icon,
#bestsellersCarousel .carousel-control-next-icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

/* Індикатори (точки) */
#bestsellersCarousel .carousel-indicators {
    position: static;
    margin-top: 30px;
    gap: 8px;
    display: none;
}

#bestsellersCarousel .carousel-indicators button {
    background-color: var(--brown-dark);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    opacity: 0.3;
    margin: 0;
}

#bestsellersCarousel .carousel-indicators button.active {
    opacity: 1;
}

/* Адаптація для мобільних */
@media (max-width: 768px) {
    #bestsellersCarousel {
        padding: 0 30px;
    }
    #bestsellersCarousel .carousel-control-prev,
    #bestsellersCarousel .carousel-control-next {
        width: 36px;
        height: 36px;
    }
    #bestsellersCarousel .carousel-control-prev {
        left: -15px;
    }
    #bestsellersCarousel .carousel-control-next {
        right: -15px;
    }
}
/* ===== Mobile carousel: 1 товар на слайд ===== */
@media (max-width: 768px) {

    #bestsellersCarousel .carousel-item .row {
        flex-wrap: nowrap;
        overflow: hidden;
    }

    #bestsellersCarousel .carousel-item .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #bestsellersCarousel .carousel-item .col-md-6,
    #bestsellersCarousel .carousel-item .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* скрываем лишние товары в слайде */
    #bestsellersCarousel .carousel-item .col-12:not(:first-child) {
        display: none;
    }
    .product-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}
/* ===== Hover кнопка покупки ===== */
/* ===== Product cards ===== */

.product-card{
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:transform .3s ease;
}

/* картинка */
.product-card img{
    width:100%;
    height:437px;
    object-fit:cover;
    background:#ececec;
    transition:transform .35s ease;
}

/* тело карточки */
.product-card-body{
    flex-grow:1;
    transition:transform .35s ease;
}

/* кнопка */
.buy-button{

    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#2E2219;
    color:white;
    font-weight:500;
    letter-spacing:1px;

    transform:translateY(100%);
    transition:transform .35s ease;
}

/* hover */
.product-card:hover{
    transform:translateY(-4px);
}

/* кнопка выезжает вверх */
.product-card:hover .buy-button{
    transform:translateY(0);
}

/* текст поднимается */
.product-card:hover .product-card-body{
    transform:translateY(-60px);
}

/* картинка немного уменьшается */
.product-card:hover img{
    transform:scale(.94);
}

/* ===== Mobile ===== */

@media (max-width:768px){

    .product-card img{
        height:auto;
        object-fit:contain;
    }

    .buy-button{
        position:static;
        transform:none;
        height:50px;
    }

    .product-card-body{
        transform:none !important;
    }

}





/* Сетка hero */
.ls-hero-row {
    display: flex;
    flex-wrap: wrap;      
    align-items: stretch;  
    margin: 0;            
    position: relative; /* для кнопки абсолют */
}

/* Общий класс колонок */
.ls-hero-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    position: relative;        
    padding: 20px;             
    box-sizing: border-box;    
}

/* Средняя колонка — картинка внизу */
.ls-hero-col-middle {
    align-items: flex-end;
}

/* Правая колонка — текст сверху */
.ls-hero-col-right {
    justify-content: flex-start;
    padding: 40px 30px;
}

/* Контент внутри правой колонки */
.lс-hero-col-right .ls-hero-content {
    margin: 0;
    padding-left: 20px; 
}

/* Заголовок по центру */
.ls-hero-col-right h1 {
    text-align: center;
}

/* Параграфы слева */
.ls-hero-col-right p {
    text-align: left;
}

/* Картинки */
.ls-hero img {
    width: 100%;
    display: block;
}

/* Кнопка на больших экранах — правая нижняя */
.circle-button {
    position: absolute;
    right: 40px;
    bottom: 40px;
}

/* Адаптив для мобильных */
@media (max-width:768px){
    .ls-hero-row {
        flex-direction: column-reverse; /* сначала текстовый блок, потом картинка */
    }

    .ls-hero-col-middle {
        display: none;
    }

    /* Кнопка поверх двух блоков */
    .circle-button {
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        top: calc(50% - -188px); /* регулируем, чтобы часть была на тексте, часть на картинке */
        z-index: 10;
    }

    /* ширина кнопки по центру */
    .circle-button a {
        display: inline-block;
        padding: 15px 25px;
    }
}

/* ===== Partners hero ===== */

/* кнопка под текстом и прямоугольная на десктопе */
.partners-hero .partners-btn{
    position: static;
    margin: 40px auto 0;

   
    height: auto;
    border-radius: 0;

    padding: 18px 50px;
    font-size: 18px;
}

/* центрируем кнопку */
.partners-hero .partners-btn a{
    display:block;
}

/* ===== Mobile ===== */

@media (max-width:768px){

    /* убрать текстовый блок */
    .partners-hero .partners-text h1,
    .partners-hero .partners-text p{
        display:none;
    }

    /* вернуть круглую кнопку */
    .partners-hero .partners-btn{
        position:absolute;

        width:200px;
        height:200px;

        border-radius:50%;
        padding:0;

        left:50%;
        top:-40%;
        transform:translate(-50%,-50%);
    }

}

/* ===== Partners hero mobile fix ===== */

@media (max-width:768px){

    .partners-hero .hero-left{
        background-image: url('images/partners.png') !important;
        background-size: cover;
        background-position: center;
        min-height: 500px;
    }
    .love {display: none;}
.partners {height: 105px;}
}
/* ===== Центрирование контента в partners hero ===== */

.partners-hero .partners-content{
    display:flex;
    align-items:center;      /* по вертикали */
    justify-content:center;  /* по горизонтали */
}

.partners-hero .partners-text{
    text-align:center;
}



.search-overlay {
    position: fixed;
    top: 0; /* будет переопределено скриптом */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;       /* как у .page-wrapper */
    height: 280px;
    background: #f5f5f5;
    display: none;
    z-index: 9999;
    box-sizing: border-box;
    padding-left: 3rem;      /* отступы как у контейнера px-5 */
    padding-right: 3rem;
}

.search-box {
    position: relative;
    width: 700px;            /* фиксированная ширина на десктопе */
    max-width: 100%;
    margin-left: auto;       /* прижимает блок к правому краю */
    margin-top: 80px;
    padding-right: 60px;     /* место под крестик */
}

.search-box h2 {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 500;
}

.search-input {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #999;
    padding-bottom: 10px;
}

.search-input input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 18px;
    outline: none;
}

.search-input img {
    cursor: pointer;
}

#closeSearch {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    padding: 0;
    outline: none;
}

#closeSearch:hover {
    opacity: 1;
}

#closeSearch::before,
#closeSearch::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
}

#closeSearch::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#closeSearch::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
    .search-overlay {
        left: 0;
        transform: none;
        padding-left: 1rem;
        padding-right: 1rem;
        /* Убираем flex-выравнивание, если оно было */
        justify-content: flex-start; /* или вообще убрать это свойство */
    }

    .search-box {
        width: 100%;
        margin-left: 0;        /* блок слева */
        margin-right: 0;
        padding-right: 40px;   /* место под крестик */
    }
    #closeSearch {
      position: absolute;
      top: -50px;
    }
    .search-box h2 {
        font-size: 20px;       /* уменьшаем заголовок */
        margin-bottom: 20px;   /* уменьшаем отступ */
        white-space: normal;   /* разрешаем перенос слов */
        word-break: break-word; /* если очень длинные слова */
    }
}

.font-w-300 {font-weight:300!important;}
.pl-custom {padding-left: 180px;}


.color-picker {
    display: flex;
    gap: 15px;
}

.color-option {
    position: relative;
    cursor: pointer;
}

.color-option input {
    display: none;
}

.circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: block;
    position: relative;
}

/* Обводка при выборе */
.color-option input:checked + .circle::after {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: 64px;
    height: 64px;
    border: 2px solid #999;
    border-radius: 50%;
}

/* Disabled (перечеркнутый) */
.color-option.disabled {
    cursor: not-allowed;
}

.color-option.disabled .circle {
    opacity: 0.5;
}

.color-option.disabled .circle::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #888;
    top: 50%;
    left: 0;
    transform: rotate(45deg);
}

.color-picker {
    display: flex;
    gap: 15px;
    margin-bottom: 20px; /* щоб був відступ вниз */
}

.quantity-block {
    max-width: 200px;
}

.quantity-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #3b2b23;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #3b2b23;
    padding-bottom: 5px;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #3b2b23;
    cursor: pointer;
}

.qty-value {
    font-size: 26px;
    color: #3b2b23;
}
.deliv-top {padding-top:70px;}

@media (max-width: 768px) {
.deliv-top {padding-top:48px;}
.pl-custom {
  padding-left: 10px;
    padding-right: 10px;
}
}

/* Tabs */
.nav-tabs {
  border-bottom: 1.5px solid #e0e0e0;
  gap: 8px;
}
.nav-tabs .nav-link {
  color: #888 !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  padding: 12px 4px;
  margin-bottom: -1.5px;
  background: none !important;
  background-color: transparent !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: color 0.2s;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:visited {
  color: #333 !important;
  border-bottom-color: #ccc !important;
  background: none !important;
  background-color: transparent !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:active {
  color: #222 !important;
  border-bottom: 2px solid #222 !important;
  background: none !important;
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.reviews-count {
  color: inherit;
}
.tab-content {
  padding-top: 32px;
}
/* Мобільні */
@media (max-width: 768px) {
  .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-tabs::-webkit-scrollbar {
    display: none;
  }
  .nav-tabs .nav-link {
    white-space: nowrap;
    font-size: 12px;
  }
}
.text-brown-dark p { color: var(--brown-dark); }


