/*
 Theme Name:     Kadence GIO
 Theme URI:      https://www.kadencewp.com/
 Description:    Child theme for Kadence
 Author:         Nahonshin
 Author URI:     https://your-site.com/
 Template:       kadence
 Version:        1.0.0
 Text Domain:    kadence-gio
*/

/* ====== ОСНОВНА СІТКА ====== */
.uslugi-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
}

/* ====== КАРТКА ПОСЛУГИ ====== */
.uslugi-item {
    height: 100%;
}
.uslugi-item p, .uslugi-item figure {
    margin-bottom: 0!important;
}
.uslugi-item article {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uslugi-item article:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(13,110,253,0.25);
}

/* ====== ЗОБРАЖЕННЯ ====== */
.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.uslugi-item article:hover .post-image img {
    transform: scale(1.08);
}

/* ====== КОНТЕНТ ====== */
.post-content {
    padding: 0 20px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* ====== МЕТКА (Оренда / Сервіс / Тренінг) ====== */
.post-meta {
    margin-bottom: 10px;
}

.post-date a {
    display: inline-block;
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    text-decoration: none;
}

/* ====== ЗАГОЛОВОК ====== */
.post-title {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 12px!important;
    line-height: 1.35;
}

.post-title a {
    color: #212529;
    text-decoration: none;
    transition: color 0.25s ease;
}

.post-title a:hover {
    color: #0d6efd;
}

/* ====== ОПИС ====== */
.post-content {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* ====== КНОПКА ====== */
.more-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 18px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.3s ease, transform 0.3s ease;
}

.more-link:hover {
    background: #0b5ed7;
    transform: translateX(4px);
    color: #fff;
}

/* ====== АДАПТИВ ====== */
@media (max-width: 1200px) {
    .uslugi-block {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .uslugi-block {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .post-image img {
        height: 200px;
    }

    .post-title {
        font-size: 17px;
    }
}











.dsrt-guide {
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.6;
  background: #fff;
}
/* HERO */
.dsrt-guide .hero {
  background: linear-gradient(135deg, #00c3ff, #0059ff);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.dsrt-guide .hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.dsrt-guide .hero p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* Steps */
.dsrt-guide .step {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.dsrt-guide .step-base {
  background: #e7f3ff;
}

.dsrt-guide .step h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

/* Cards */
.dsrt-guide .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.dsrt-guide .card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.dsrt-guide .card img {
  width: 100%;
  border-radius: 15px;
}

.dsrt-guide .card h3 {
  margin-top: 20px;
  font-size: 20px;
}

.dsrt-guide .card p {
  font-size: 15px;
  margin: 10px 0;
}

/* Buttons */
.dsrt-guide .btn-primary {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.dsrt-guide .btn-primary:hover {
  background: #0b5ed7;
}

.dsrt-guide .btn-secondary {
  display: inline-block;
  background: #fff;
  color: #0d6efd;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dsrt-guide .btn-secondary:hover {
  background: #0d6efd;
  color: #fff;
}

/* Final section */
.dsrt-guide .step-final {
  background: linear-gradient(135deg, #00c3ff, #0059ff);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.dsrt-guide .step-final h2 {
  font-size: 40px;
}

.dsrt-guide .step-final p {
  max-width: 700px;
  margin: 20px auto;
}

/* Базові стилі контейнера - ЗАЛИШАЄМО БЕЗ ЗМІН */
.dessert-overview {
  background: #fff;
  font-family: 'Poppins', sans-serif;
  color: #222;
  padding: 30px 0;
  text-align: center;
}

.dessert-overview .intro {
  margin: 0 auto 40px;
}

.dessert-overview h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #0d6efd;
}

.dessert-overview p {
  font-size: 17px;
  line-height: 1.6;
}

/* СТИЛІ КАРТОК - ЗАЛИШАЄМО БЕЗ ЗМІН */
.dessert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.dessert-card {
  background: #fff;
  border-radius: 12px; /* Зменшив радіус для сучасного вигляду */
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 230px;
  padding: 10px 5px 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content-content: space-between; /* Важливо для вирівнювання контенту */
}

.dessert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.dessert-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 150px;
  border-radius: 8px; /* Зменшив радіус */
}

.dessert-card h3 {
  font-size: 18px;
  margin: 5px 0 5px!important;
  color: #212529; /* Змінив колір для кращого контрасту */
}

.dessert-card p {
  font-size: 14px;
  min-height: 40px; /* Трохи зменшив min-height */
  padding: 0 10px;
  margin-bottom: 5px!important; /* Збільшив нижній відступ */
  color: #6c757d;
  width: 100%;
}

/* НОВІ СТИЛІ КНОПОК */
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  align-items: center;
  margin-top: auto; /* Притискає групу кнопок донизу картки */
}

.btn-main,
.link-secondary {
  display: block; /* Використовуємо block для заповнення ширини */
  border-radius: 20px; /* Кругліший радіус для м'якості */
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 85%; /* Ширші кнопки */
  text-align: center;
}

/* Стиль Основної Кнопки (була .btn-primary) */
.btn-main {
  background: #ff5722; /* Яскравий, привабливий акцентний колір */
  color: #fff;
  padding: 10px 16px;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(255, 87, 34, 0.4);
}

.btn-main:hover {
  background: #e64a19; /* Трохи темніший при наведенні */
  box-shadow: 0 4px 10px rgba(255, 87, 34, 0.6);
}

/* Стиль Додаткового Посилання (була .btn-secondary) */
.link-secondary {
  color: #0d6efd; /* Використовуємо ваш основний синій як колір посилання */
  font-size: 13px;
  text-decoration: underline; /* Підкреслення, щоб виглядати як посилання */
  padding: 5px; /* Менший внутрішній відступ */
  width: auto; /* Дозволяє посиланню займати менше місця */
}

.link-secondary:hover {
  color: #0b5ed7;
  text-decoration: none; /* Прибираємо підкреслення при наведенні */
}

/* Медіа-запити - ЗАЛИШАЄМО БЕЗ ЗМІН */
@media (max-width: 768px) {
  .dessert-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .dessert-card {
    width: 90%;
  }
}

.dessert-card p:empty {
  display: none;
  margin: 0;
  padding: 0;
}






/* ===============================
   ЗАГАЛЬНІ НАЛАШТУВАННЯ
================================ */
.rent-block {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
    margin-bottom: 50px;
    align-items: center;
}

.rent-block img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* ====== ТЕКСТОВИЙ БЛОК ====== */
.rent-block > div:last-child {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.rent-block a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.rent-block a:hover {
    text-decoration: underline;
}

/* ===============================
   ЗАГОЛОВКИ СЕКЦІЙ
================================ */
.heading-default {
    margin: 70px 0 35px;
    text-align: center;
}

.heading-default h2,
.heading-default h3 {
    font-size: 32px;
    font-weight: 800;
    color: #212529;
    margin: 0;
    position: relative;
    display: inline-block;
}

.heading-default h3 {
    font-size: 26px;
}

.heading-default h2::after,
.heading-default h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #0d6efd;
    margin: 14px auto 0;
    border-radius: 10px;
}

/* ===============================
   КАРТКИ ОРЕНДИ
================================ */
.rent-block.row.g-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.rent-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rent-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(13,110,253,0.25);
}

/* ====== ЗОБРАЖЕННЯ В КАРТЦІ ====== */
.rent-item img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
}

.rent-item:hover img {
    transform: scale(1.05);
}

/* ====== НАЗВА ====== */
.rent-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 14px!important;
    color: #212529;
}
.rent-item p {
	margin-bottom: 0!important;
}

/* ====== ОПИС / ХАРАКТЕРИСТИКИ ====== */
.rent-desc {
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 22px;
}

.rent-desc strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #0d6efd;
}

/* ===============================
   КНОПКА
================================ */
.rent-btn {
    margin-top: auto;
}

.rent-btn button,
.rent-btn .btn {
    background: #0d6efd;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.rent-btn button:hover,
.rent-btn .btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13,110,253,0.35);
}

/* ===============================
   ADAPTIVE
================================ */
@media (max-width: 1200px) {
    .rent-block {
        grid-template-columns: 1fr;
    }

    .rent-block.row.g-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rent-block {
        gap: 20px;
    }

    .heading-default h2 {
        font-size: 26px;
    }

    .heading-default h3 {
        font-size: 22px;
    }

    .rent-block.row.g-3 {
        grid-template-columns: 1fr;
    }

    .rent-item img {
        height: 220px;
    }
}




.woocommerce ul.products li.product .entry-content-wrap
 {
    margin: 0!important;
    border-radius: 0!important;
    padding: 0.5rem 0.8rem!important;
}
ul.products li.product .product-details .price .stock {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}
ul.products li.product .product-short-description {
	font-size: 13px;
    line-height: 1.2;
    color: #444;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.woocommerce ul#shipping_method {
    min-width: 110px;
}








/* ===============================
   FOOTER INFO BLOCK
================================ */
.footer-info {
    background: #f8f9fa;
    padding: 20px;
}

.footer-info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===============================
   ITEM
================================ */
.footer-info-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 12px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.footer-info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(13,110,253,0.25);
}

/* ===============================
   ICON
================================ */
.footer-info-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: rgba(13,110,253,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-info-icon i {
    font-size: 22px;
    color: #0d6efd;
}

/* ===============================
   TEXT
================================ */
.footer-info-text h6 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #212529;
}

.footer-info-text p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

/* ===============================
   ADAPTIVE (ВАЖЛИВО)
================================ */

/* Планшети — 2 + 2 */
@media (max-width: 1024px) {
    .footer-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Мобільні — 1 в ряд */
@media (max-width: 576px) {
    .footer-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-info-item {
        padding: 22px;
    }
}




/* ===============================
   PWB BRAND CAROUSEL
================================ */

/* Загальний контейнер */
.pwb-carousel {
    padding: 10px 0;
}

/* Вирівнюємо трек */
.pwb-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
}

/* Один слайд */
.pwb-slick-slide {
    height: auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

/* Карточка бренду */
.pwb-slick-slide a {
    background: #ffffff;
    width: 100%;
    height: 100%;
    min-height: 120px;
    display: flex!important;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border: 1px solid #e9ecef;
}

/* Hover */
.pwb-slick-slide a:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(13,110,253,0.25);
    border-color: #0d6efd;
}

/* ===============================
   IMAGE NORMALIZATION
================================ */
.pwb-slick-slide img {
    max-width: 100%;
    max-height: 70px;      /* ОДНАКОВА ВИСОТА */
    width: auto!important;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Hover image */
.pwb-slick-slide a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===============================
   LOADER
================================ */
.pwb-carousel-loader {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
}

/* ===============================
   ADAPTIVE
================================ */

/* Планшет */
@media (max-width: 1024px) {
    .pwb-slick-slide a {
        min-height: 110px;
        padding: 16px;
    }

    .pwb-slick-slide img {
        max-height: 50px;
    }
}

/* Мобільні */
@media (max-width: 576px) {
    .pwb-carousel {
        padding: 20px 5px;
    }

    .pwb-slick-slide a {
        min-height: 90px;
        padding: 14px;
        border-radius: 12px;
    }

    .pwb-slick-slide img {
        max-height: 42px;
    }
}


.woocommerce-products-header .pwb-brand-banner img {
	max-height: 80px;
	object-fit: contain;
	width: auto;
}








/* Карта */
.contacts-map {
    max-width: 1200px;
    margin: 0 auto 50px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contacts-map iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Сітка контактів */
.contacts-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Карточка */
.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 50px;
    margin-bottom: 5px;
    color: #0d6efd;
}

.contact-card h3 {
    margin: .5em!important;
}

.contact-card p {
    margin: 6px 0;
}

.contact-card a {
    color: #0d6efd;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Адаптив */
@media (max-width: 992px) {
    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}






.mixes-category-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 30px 0;
}

/* Кнопка */
.mixes-category-buttons .mix-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    background: #ffffff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.25s ease;
    line-height: 1.2;
    min-height: 52px;
}

/* Hover */
.mixes-category-buttons .mix-btn:hover {
    background: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
}

/* Активний стан (якщо треба додаси клас active) */
.mixes-category-buttons .mix-btn.active {
    background: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
}

/* Планшет — строго 2 + 2 */
@media (max-width: 992px) {
    .mixes-category-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Мобільний — 1 в ряд */
@media (max-width: 576px) {
    .mixes-category-buttons {
        grid-template-columns: 1fr;
    }
}


.grid-cols {
    column-gap: 1rem!important;
    row-gap: 1.5rem!important;
}
.woocommerce div.product .product_meta>span {
    font-size: 16px!important;
    font-weight: normal!important;
    color: #111!important;
}