body {
  min-width: 280px !important;
}
/**
* {
    border: 1px solid red !important;
}
**/

html,
body {
    overflow-x: hidden;
}

/* Робимо сторінку flex-контейнером по вертикалі */
#page.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* весь екран по висоті */
}

/* Контентна частина росте, займає весь простір між header і footer */
#page .content-wrapper {
    flex: 1 0 auto; /* росте, щоб зайняти доступний простір */
}

/* Футер не росте, залишається внизу */
footer.bhfb-footer.bhfb-desktop {
    flex-shrink: 0; /* не зменшується */
}
/* КАРТКА ТОВАРУ*/

.woocommerce span.onsale {
    background: #e63946;   /* червоний фон */
    color: #fff;           /* білий текст */
    font-weight: bold;
    font-size: 14px;
/*    border-radius: 50%;*/    /* зробити круглим бейдж */
    padding: 12px 16px;
    top: 10px;             /* відступ зверху */
    left: 10px;            /* відступ зліва */
}

/* СУПУТНІ ТОВАРИ*/

.related.products {
    padding-bottom: 10rem !important; /* або більше, залежно від дизайну */
} 

.related.products ul.products li.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px; /* Можеш підбирати висоту під дизайн */
    position: relative;
    overflow: hidden;
}

.related.products ul.products li.product a {
    display: block;
    text-align: center;
}

ul.products li.product .woocommerce-loop-product__title {
    min-height: 64px; /* залишаємо місце для назви */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
}

.related.products ul.products li.product .loop-button-wrap {
    margin-top: auto;
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.related.products ul.products {
    display: flex;
    align-items: stretch;
}

.related.products ul.products li.product {
    display: flex;
    flex-direction: column;
    flex: 1;
}


/* КАРТКА ТОВАРУ КІНЕЦЬ*/

/*СТОРІНКА КАТЕГОРІЙ ПОЧАТОК*/
/* Зменшення відступів для заголовків сторінок WooCommerce */
header.woocommerce-page-header.woocommerce-page-header-style1.woocommerce-page-header-alignment-center {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
}
@media (max-width: 1024px){
    header.woocommerce-page-header.woocommerce-page-header-style1.woocommerce-page-header-alignment-center {
    padding-bottom: 60px !important;
}
}
/*СТОРІНКА КАТЕГОРІЙ КІНЕЦЬ*/


/* Базовий вигляд кнопки "Переглянути кошик" */
a.added_to_cart.wc-forward {
    display: inline-block;
    height: auto;
    background-color: rgba(197, 217, 89, 0.6); /* #C5D959 із прозорістю */
    color: #000;
    padding: 13px 12px;
    text-decoration: none;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    border: 1.11px solid #C5D959;
}

/* Ховер-ефект — прибираємо прозорість */
a.added_to_cart.wc-forward:hover {
    background-color: #C5D959; /* повний колір без прозорості */
    opacity: 1;
}


/*ЧЕКАУТ*/
/* 1) Приховати заголовок "Доставити на іншу адресу" (h3 з id) та можливі варіанти контейнера */
h3#ship-to-different-address,
p#ship-to-different-address,
#ship-to-different-address,
p.ship-to-different-address,
div.ship-to-different-address {
  display: none !important;
}

/* 2) Приховати заголовок "Платіжні дані" всередині .woocommerce-billing-fields */
.woocommerce-billing-fields > h3,
.woocommerce-billing-fields h3 {
  display: none !important;
}

#order_comments_field {
    background-color: rgba(197, 217, 89, 0.45); /* авокадо з прозорістю */
}
.woocommerce-checkout-review-order {
    background: linear-gradient(to bottom, rgba(197, 217, 89, 0.45) 0%, rgba(255, 255, 255, 1) 100%);
}

/*ЧЕКАУТ КІНЕЦЬ*/

/*ДЯКУЄМО ЗА ЗАМОВЛЕННЯ ПОЧАТОК*/
.woocommerce-thankyou-order-received,
.woocommerce-thankyou-order-details {
    background-color: rgba(197, 217, 89, 0.45);
}

.woocommerce-order-received .wc-bacs-bank-details.order_details.bacs_details,
.woocommerce-order-received .woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
    background-color: rgba(197, 217, 89, 0.45); /* Світлий авокадо */
    padding: 15px;
    border-radius: 8px;
}
/*ДЯКУЄМО ЗА ЗАМОВЛЕННЯ КІНЕЦЬ*/



/* БІГУЧИЙ РЯДОК*/

.running-line-wrapper {
  overflow: hidden;
  width: 100%;
  background-color: white;
  position: relative;
}

.running-line {
  display: flex;
  width: max-content;
  animation: scroll 45s linear infinite;
}

.text-group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.text-group span {
  font: italic normal normal clamp(12px, 2.5vw, 20px)/1.4em 'Libre Baskerville', serif;
  color: #ff61aa;
  margin-right: 0px;
}

.heart {
width: clamp(12px, 3vw, 20px);
  height: clamp(12px, 3vw, 20px);
  margin: 0 8px;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 1024px) {
  .text-group .heart {
    width: 30px;
    height: 30px;
    margin: 0 10px;
  }
}
@media (max-width: 600px) {
  .text-group .heart {
    width: 20px;
    height: 20px;
    margin: 0 5px;
  }
}

/*БІГУЧИЙ РЯДОК КІНЕЦЬ*/

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* СТИЛІЗАЦІЯ ГОЛОВНОГО ТА ДРУГОРЯДНОГО МЕНЮ */

.bhfb-row-wrapper.bhfb-main_header_row.bhfb-sticky-header.sticky-shadow {
    max-width: var(--container-width, 1000px); /* Обмежуємо ширину до 1000px */
    width: 100%;
}

.bhfb-row-wrapper.bhfb-below_header_row.bhfb-sticky-header {
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0; /* Скидаємо будь-які авто-відступи */
    margin-right: 0;
}

/* Відступ між пунктами меню */
header .main-navigation .menu > li,
header .secondary-navigation .menu > li {
  margin: 0 2px; /* зменшуємо відступ між кнопками */
}

/* Центрування контейнера, що містить меню */
header .bhfb-column.bhfb-column-1 {
  justify-content: center !important;
  align-items: center !important;
  margin-top: 12px;
}
header .botiga-dropdown-ul.menu{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap !important; 
}

/* Прибираємо відступ між кнопкою і меню */
header .bhfb-builder-item.bhfb-component-menu {
  margin-left: 0px !important; /* або margin: 0 !important; якщо хочеш прибрати всі відступи */
  padding-left: 0px !important; /* на всяк випадок, якщо є падінг */
}

header .bhfb-column.bhfb-column-1 .bhfb-component-woo_icons{
    margin-left: clamp(0px, 1.5vw, 25px) !important;
    margin-right: 2px;
}

/* Усунення відступів після бігучого рядка */
.home .wp-block-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

header .main-navigation .menu,
header .secondary-navigation .menu {

}

/* Стиль посилань пунктів меню */
header .main-navigation .menu > li > a,
header .secondary-navigation .menu > li > a {
  display: inline-block;
  padding: clamp(4px, 1vw, 6px) clamp(8px, 2.5vw, 15px);
  border-radius: 30px;
  background: #C5D959;
  border: 1px solid #0A0A0A;
  color: #0A0A0A;
  font-family: cormorantgaramond, "cormorant garamond", serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  text-decoration: none;
  line-height: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  vertical-align: middle;
  white-space: nowrap;
}

/* Ефект при наведенні */
header .main-navigation .menu > li > a:hover,
header .secondary-navigation .menu > li > a:hover {
  background: #5DA104;
  color: #FFFFFF;
  border-color: #0A0A0A;
/*  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);*/
}
/* Горизонтальне вирівнювання для другорядного меню */
header .secondary-navigation .menu {
  display: flex;
  flex-wrap: nowrap; /* забороняємо перенос */
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
/* Стилі для пунктів меню */
header .secondary-navigation .menu > li {
  flex: 1 1 auto; /* дозволяє зменшення ширини */
  min-width: 44px; /* не менше певного розміру */
  margin: 0 2px;
}

/* Стилі для самих посилань */
header .secondary-navigation .menu > li > a {
  font-size: clamp(10px, 2vw, 16px); /* автоматичне зменшення при стисканні */
 
}

/* Усунення вертикального вирівнювання типового для бургер-меню */
header .secondary-navigation {
  display: block !important; /* на випадок якщо було display: none */
  width: 100%;
}

/* Активний пункт меню */
header .main-navigation .menu > li.current-menu-item > a,
header .secondary-navigation .menu > li.current-menu-item > a {
  background: #5DA104;
}

/* Іконка кошика */
#site-header-cart .cart-contents svg {
  width: clamp(22px, 3vw, 36px) !important;
  height: clamp(24px, 3vw, 36px) !important;
  transform: translateY(3px);
}

@media (max-width: 600px) {
  header .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Контейнер кнопки */
a.button.category-burger {
  position: relative;
  display: inline-block;
  width: clamp(16px, 3vw, 30px);
  height: 24px;
  cursor: pointer;
  padding: 0; 
  border: none;
  box-sizing: border-box;
  transition: background 0.3s ease;
  margin-right: clamp(0px, 2vw, 25px) !important;
  margin-left: 2px;
}

/* Середня лінія: сам елемент .burger-lines */
a.button.category-burger .burger-lines {
  left: 0;
  right: 0;
  top: 46%;
  height: 2px;
  background: #111;
  position: absolute;
  display: block;
  transition: all 0.3s ease;
}

/* Верхня та нижня лінії */
a.button.category-burger::before,
a.button.category-burger::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #111;
  transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, background 0.3s ease;
}

/* Верхня — зверху */
a.button.category-burger::before {
  top: 4px;
}

/* Нижня — знизу */
a.button.category-burger::after {
  bottom: 4px;
}

/* Коли меню відкрито */
a.button.category-burger.open span{
  display: none;
}

/* Верхня і нижня перетворюються на хрестик */
a.button.category-burger.open::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: #5DA104;
}
a.button.category-burger.open::after {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  background: #5DA104;
}


/* Контейнер меню ВИПАДАЮЧИЙ СПИСОК КАТЕГОРІЙ*/
.category-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  max-width: calc(100vw - 24px);
  max-height: 620px; /* обмежуємо висоту */
  overflow-y: auto;  /* додаємо скролл */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  padding: 8px;
  z-index: 9999;
}

/* Відкрите меню */
.category-menu.open { display: block; }

/* Посилання */
.category-menu a {
  display:block;
  padding: 8px 10px;
  color: #111;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap; /* щоб не переносився текст */
}
.category-menu a:hover {
  background: #f6f6f6;
  color: #5DA104;
}

/* Мобільний вигляд */
@media (max-width: 720px) {
  .category-menu {
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    border-radius: 0;
    min-width: auto;
  }
}




/* СТИЛІЗАЦІЯ ГОЛОВНОГО ТА ДРУГОРЯДНОГО МЕНЮ КІНЕЦЬ */

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*СТИЛІЗАЦІЯ ГОЛОВНОЇ СТОРІНКИ*/

/*проміжок між бігучим рядком та баннером*/

#page > div.container.content-wrapper {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.homepage-banner {
  width: 100vw;
  min-width: 260px !important;
  margin-left: calc(-50vw + 50%);
  height: 400px;
  background-color: #FF61AA;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.banner-content {
  display: flex;
  height: 80%;
  width: 80%;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
  position: relative;
}

.banner-image img {
  width: clamp(180px, 30vw, 300px);
  height: auto;
  object-fit: contain;
}

.banner-text {
  color: #333;
  text-align: left;
  flex: 1;
  min-width: 250px;
  max-width: 496px;
}
.banner-text h1 {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 400;
  font-family: 'Caveat', italic !important;
  letter-spacing: 0.05em;
  margin: 0 0 32px 0;
}

@media (max-width: 1024px) {
    .homepage-banner {
        height: auto;
}
    
  .banner-content {
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin-top: 16px;
  }

  .banner-image img {
    max-width: 300px;
    height: auto;
  }

  .banner-text {
    text-align: center;
    margin-bottom: 72px;
  }

  .banner-text h1 {
    font-size: 1.4rem;
   text-align: center;
  }
}



.banner-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg id='comp-lkff9qnh-bottom' preserveAspectRatio='none' data-bbox='0 100 1920 200' viewBox='0 100 1920 200' height='100%25' width='100%25' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cdefs%3E%3Cstyle%3E%23comp-lkff9qnh-bottom %7B fill: %23FFFDFD; %7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath d='M1914.392 288.326c-110.231-4.798-134.428-121.68-301.124-121.68s-190.894 116.883-301.124 121.68h-15.779c-132.623-3.764-163.287-72.283-366.071-72.283s-233.445 68.519-366.071 72.283h-8.154C384.543 282.678 408.027 100 281.156 100c-123.98 0-102.173 182.678-274.845 188.326H0V300h1920v-11.674h-5.608z'/%3E%3C/g%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  overflow: hidden;
  z-index: 0;
}

/*КАТАЛОГ ТОВАРІВ НА ГОЛОВНІЙ СТОРІНЦІ*/

.catalog-section {
  padding: 0px 0px;
  background-color: #fffdfd;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.catalog-section h2 {
  font-size: clamp( 1.8rem 2rem 2.2rem);
  font-weight: 400;
  margin: 0px 0px 8px 0px;
  font-family: 'Cormorant Garamond', italic !important;
  letter-spacing: 0.015em;
  color: #FF61AA !important;
  opacity: 0.85; /* ⬅ додає прозорість */
  text-wrap: nowrap;
}

.search-form {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px; /* Ще ширше, змінюй за потреби */
}

body .search-form .catalog-search {
  width: 100%;
  padding: 0px 50px 0px 16px; /* правий падінг для кнопки */
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 1rem;
  box-sizing: border-box;
  line-height: 0.5rem;
  min-height: 28px !important;
}


body .search-form .search-submit {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #5DA104;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 150px));
  column-gap: clamp(12px, 3vw, 32px);
  row-gap: clamp(8px, 3vw, 16px);
  justify-items: center;
  justify-content: center;
  margin-bottom: clamp(8px, 3vw, 16px);
  max-width: 800px;
  margin-inline: auto;
}


.category-item {
  text-decoration: none !important;
  background-color: #fffdfd;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 150px;
}

.category-item img {
  width: clamp(45px, 18vw, 150px); /* мін 80px, росте до 150px при ширших екранах */
  height: clamp(45px, 18vw, 150px);
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 2px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}


.category-item span {
  font-size: clamp(8px, 2vw, 16px);
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
 /* letter-spacing: 0.1em;*/
  white-space: nowrap;        /* не дозволяє перенос рядка */
  overflow: hidden;           /* обрізає зайвий текст */
  text-overflow: ellipsis;    /* додає три крапки (...) */
  max-width: 100%;
}

.category-item:hover {
  transform: translateY(-5px);
 /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);*/
}
/*КАТАЛОГ ТОВАРІВ НА ГОЛОВНІЙ СТОРІНЦІ КІНЕЦЬ*/
/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*ОКРЕМІ ПОСИЛАННЯ В КАТАЛОЗІ НА ГОЛОВНІЙ*/
.subcategories-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.subcategories-container .subcategory-item {
  text-decoration: none !important;
  background-color: #fffdfd;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 150px;
}

.subcategories-container .subcategory-item img {
  width: clamp(50px, 18vw, 150px);
  height: clamp(50px, 18vw, 150px);
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 2px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.subcategories-container .subcategory-item span {
  font-size: clamp(8px, 2vw, 16px);
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.subcategories-container .subcategory-item:hover {
  transform: translateY(-5px);
}


/*ОКРЕМІ ПОСИЛАННЯ В КАТАЛОЗІ НА ГОЛОВНІЙ КІНЕЦЬ*/


/*СТИЛІЗАЦІЯ ГОЛОВНОЇ СТОРІНКИ КІНЕЦЬ*/
/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*СТИЛІЗАЦІЯ СТОРІНКИ УМОВИ ПОЧАТОК*/

/* Контейнер з 4 елементами */
.conditions-flex {
  /*  max-width: 980px;*/
  margin-top: 4px auto;
  padding-top: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: nowrap;
}

/* Окрема клітинка (одне посилання з картинкою та підписом) */
.condition-item {
  flex: 1 1 clamp(100px, 10vw, 180px); /* адаптивна ширина кожного блоку */
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #0a0a0a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none !important;
}

/* Картинка всередині блоку */
.condition-item img {
  width: clamp(80px, 16vw, 150px);
  height: clamp(80px, 16vw, 150px);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  margin-bottom: clamp(2px, 1.2vw, 10px);
}

/* Текстовий підпис під іконкою */
.condition-item span {
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  color: #333;
  width: clamp(80px, 10vw, 150px);
  text-transform: uppercase;
  
  white-space: nowrap;        /* не дозволяє перенос рядка */
  overflow: hidden;           /* обрізає зайвий текст */
  text-overflow: ellipsis;    /* додає три крапки (...) */

}

/* Анімація при наведенні на блок */
.condition-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/*СТИЛІЗАЦІЯ СТОРІНКИ УМОВИ КІНЕЦЬ*/

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*СТИЛІЗАЦІЯ СТОРІНКИ  ЗАМОВЛЕННЯ-ОПЛАТА-ДОСТАВКА ПОЧАТОК*/

/* Секція */
.order-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Малий заголовок */
.order-title-small {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  text-align: center;
  color: #777;
  margin: clamp(2px, 2vw, 8px) 0;
  text-wrap: nowrap;
}

/* Основний заголовок */
.order-title-main {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-align: center;
  color: #333;
  margin: clamp(2px, 2vw, 8px) 0;
}

/* Опис */
.order-description {
  max-width: 600px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  line-height: clamp(1.3, 2vw, 1.7);
  color: #555;
  text-align: justify;
  text-align-last: center;
  margin-bottom: clamp(16px, 3vw, 32px);
}

/* Контейнер рядка */
.order-row {
  display: flex;
  flex-wrap: wrap; /* Для адаптивності */
  justify-content: space-between;
  align-items: center;
}

/* Зображення */
.order-image {
  flex: 0 0 48%;
  max-width: 48%;
  height: auto;
  object-fit: contain;
}

/* Текстовий блок */
.order-text-block {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Підзаголовок у текстовому блоці */
.order-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #FF61AA;
  margin-bottom: clamp(8px, 2vw, 16px);
}

/* Пункти тексту */
.order-text-block p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(12px, 1.5vw, 18px);
  line-height: clamp(1.3, 2vw, 1.6);
  color: #444;
  margin-bottom: clamp(8px, 2vw, 16px);
}

@media (max-width: 900px) {
  .order-row {
    flex-direction: column;
  }
  .order-row:nth-child(5) { /* Це другий .order-row в твоїй структурі */
    flex-direction: column-reverse;
  }
  .order-subtitle {
    text-align: center;
    margin-top: 8px;
  }

  .order-image,
  .order-text-block {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .order-text-block p {
    text-align: justify;
  }

  .order-image {
    margin-bottom: 8px;
  }
}


/*СТИЛІЗАЦІЯ СТОРІНКИ ЗАМОВЛЕННЯ-ОПЛАТА-ДОСТАВКА КІНЕЦЬ*/

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*СТИЛІЗАЦІЯ СТОРІНКИ ПОЛІТИКА КОНЦІДЕНЦІЙНОСТІ ПОЧАТОК*/

/* Основний стиль секції */
.privacy-policy {
  max-width: 1000px;
  width: 96%;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

/* Заголовок */
.privacy-policy h2 {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-align: center;
  margin: 8px auto;
}

/* Основний абзац */
.privacy-policy > p {
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.6;
  text-align: justify;
  margin: 8px 0;
}

/* Основний список */
.main-list {
  list-style-type: decimal;
  padding-left: clamp(14px, 2vw, 24px);
  font-size: clamp(14px, 2vw, 20px);
}

/* Стиль пунктів основного списку */
.main-list > li > p {
    margin-bottom: 0px;
    font-size: clamp(14px, 2vw, 20px);
}

.main-list-element {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  margin: 0 0;
}

.main-list .main-list {
  list-style: none;
}

.number {
  min-width: 3em; /* або більше, залежно від формату номерів */
  text-align: right;
  flex-shrink: 0;
  font-size: clamp(14px, 2vw, 20px);
}

.text {
  text-align: justify;
  font-size: clamp(14px, 2vw, 20px);
}


/*СТИЛІЗАЦІЯ СТОРІНКИ ПОЛІТИКА КОНфІДЕНЦІЙНОСТІ КІНЕЦЬ*/

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*СТИЛІЗАЦІЯ СТОРІНКИ ПРО НАС ПОЧАТОК*/
.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  margin: 16px 0px;
  color: #333;
}

.about-description{
  max-width: 800px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.5;
  color: #555;
  text-align: justify;
  text-align-last: center;
}

.about-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
}

.about-image {
  flex: 0 0 50%;
  max-width: 50%;
  max-height: clamp(380px, 50vw, 650px);
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.about-text-block {
  display: flex;
  flex: 0 0 50%;
  max-width: 50%;
  min-height: clamp(284px, 50vw, 600px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px clamp(8px, 2vw, 40px);
}
.about-subtitle {
  font-size: clamp(24px, 2.5vw, 32px);
  margin: 0px 0px clamp(4px, 2vw, 30px) 0px;
  font-weight: 600;
  color: #FF61AA;
}
.about-text {
  font-size: clamp(14px, 2vw, 22px);
  line-height: clamp(1, 3vw, 1.7);
  text-align: justify;
  text-align-last: center;
  margin: 0px 16px;
}
@media (max-width: 860px) {
  .about-row {
    flex-direction: column;
    align-items: center;
  }
  .about-row:nth-child(2) .about-image {
    order: 1;
  }

  .about-row:nth-child(2) .about-text-block {
    order: 2;
  }

  .about-image,
  .about-text-block {
    max-width: 600px;
  }

  .about-text-block {
    min-height: auto; /* дозволяємо природну висоту */
    margin-top: 12px;
  }
}


/*СТИЛІЗАЦІЯ СТОРІНКИ ПРО НАС КІНЕЦЬ*/

/*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*СТИЛІЗАЦІЯ ФУТЕРА ПОЧАТОК*/
/* === ФУТЕР === */
footer.bhfb-footer.bhfb-desktop .bhfb-row-wrapper.bhfb-main_footer_row 
    .bhfb-column.bhfb-column-1 .bhfb-builder-item.bhfb-component-html {
    width: 100%;
    max-width: 100%;
}

footer.bhfb-footer.bhfb-desktop 
    .bhfb-row-wrapper.bhfb-main_footer_row 
    .container-fluid {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    width: 100%;
}

 .footer-content {
  width: 100%;
  background-color: #C5D959;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  align-items: center;
  height: 150px;
}

.footer-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0px !important;
  color: #ff61aa;
  font-family: 'Cormorant Garamond', italic !important;
  letter-spacing: 1px;

}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: clamp(8px 2vw 24px);
  justify-content: space-between;
  align-items: left;
  width: 100%;
  max-width: 300px;
}

.footer-link {
  text-decoration: none;
  color: #0a0a0a;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.footer-link:hover {
  color: #5da104;
}

.footer-icon {
  width: clamp(26px, 6vw, 34px);
  height: clamp(26px, 6vw, 34px);
  object-fit: contain;
  transition: transform 0.3s ease;
}

/*СТИЛІЗАЦІЯ ФУТЕРА КІНЕЦЬ*/

/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*СТИЛІЗАЦІЯ КОШИКА ПОЧАТОК*/


/* Кнопка "Перейти до оформлення замовлення" */
.wc-block-cart__submit .wc-block-cart__submit-container a.wc-block-components-button {
    --bt-color-button-bg: #C5D959; /* Авокадо */
    --bt-color-button-bg-hover: rgb(93, 161, 4); /* Темно-авокадо */
    --bt-color-button-text: #000; /* Чорний текст */
    --bt-color-button-text-hover: #fff; /* Білий текст на ховері */    border: none;
    padding: 12px 18px;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Текст усередині кнопки */
.wc-block-cart__submit .wc-block-cart__submit-container a.wc-block-components-button > div {
      color: var(--bt-color-button-text);
    transition: color 0.3s ease;
    font-weight: bold;
}

/* Hover-ефект для фону */
.wc-block-cart__submit .wc-block-cart__submit-container a.wc-block-components-button:hover {
    --bt-color-button-bg: rgb(93, 161, 4) !important; /* Темніший авокадо */
}

/* Hover-ефект для тексту */
.wc-block-cart__submit .wc-block-cart__submit-container a.wc-block-components-button:hover > div {
    color: var(--bt-color-button-text-hover);
}


/* Базовий вигляд кнопок +/- у кошику */
.wc-block-cart-item__quantity .wc-block-components-quantity-selector
.wc-block-components-quantity-selector__button {
    --bt-color-button-bg: #C5D959; /* Авокадо */
    --bt-color-button-bg-hover: rgb(93, 161, 4); /* Темно-авокадо */
    --bt-color-button-text: #000; /* Чорний текст */
    --bt-color-button-text-hover: #fff; /* Білий текст на ховері */

    background-color: var(--bt-color-button-bg);
    color: var(--bt-color-button-text) !important;
    border: none;
    opacity: 1;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Ховер-ефект */
.wc-block-cart-item__quantity .wc-block-components-quantity-selector
.wc-block-components-quantity-selector__button:hover {
    background-color: var(--bt-color-button-bg-hover) !important;
    color: var(--bt-color-button-text-hover) !important;
}

/* Скидання активного стану після кліку */
.wc-block-cart-item__quantity .wc-block-components-quantity-selector
.wc-block-components-quantity-selector__button:focus,
.wc-block-cart-item__quantity .wc-block-components-quantity-selector
.wc-block-components-quantity-selector__button:active {
    background-color: var(--bt-color-button-bg);
    color: var(--bt-color-button-text);
    outline: none;
}

.entry-header .entry-title {
    font-size: 32px !important; 
}

/*СТИЛІЗАЦІЯ КОШИКА КІНЕЦЬ*/





