.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 5px;
    transition: 0.25s ease;
}



.btn--outline {
    border-color: rgba(255, 255, 255, 0.2);
    background: transparent;
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.06);
}

.product-card {
    overflow: hidden;
}

.product-card__image-wrap {
    margin-bottom: 16px;
}

.product-card__image,
.product-single__image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.product-card__title {
    margin: 0 0 10px;
}

.hero__actions,
.product-single__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.hero-title {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    font-size: 100px;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: uppercase;
}
.btn-ice-wrap {
    position: fixed;
    top: 20px;
    right: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.menu-toggle,
.fullscreen-menu__close {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background-color: #ffffff;
}

.menu-toggle span {
    position: absolute;
    left: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #313D29;
    transform: translateX(-50%);
}

.menu-toggle span:nth-child(1) {
    top: 14px;
}

.menu-toggle span:nth-child(2) {
    top: 20px;
}

.menu-toggle span:nth-child(3) {
    top: 26px;
}

.fullscreen-menu__close span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: #313D29;
    border-radius: 999px;
}

.fullscreen-menu__close span:nth-child(1) {
    transform: rotate(45deg);
}

.fullscreen-menu__close span:nth-child(2) {
    transform: rotate(-45deg);
}



.fullscreen-menu.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}



.header-contact-btn--menu {
    min-height: 52px;
    padding-inline: 28px;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .site-header__center {
        justify-content: center;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 767px) {
    .site-header__inner {
        gap: 10px;
    }

    .site-header__center {
        justify-content: center;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .menu-toggle span {
        width: 5px;
        height: 5px;
    }

    .menu-toggle span:nth-child(1) {
        top: 11px;
    }

    .menu-toggle span:nth-child(2) {
        top: 18px;
    }

    .menu-toggle span:nth-child(3) {
        top: 25px;
    }

    .header-contact-btn--menu {
        width: 100%;
        max-width: 280px;
    }
}
/* ===================================================
   FROZEN PRODUCTS — CSS
   Файл: assets/css/products.css
   Підключити в functions.php через wp_enqueue_style()
   =================================================== */

/* ─── Змінні (узгоджені з темою) ──────────────────── */
:root {
    --p-green:      #313D29;      /* основной фон темы */
    --p-green-mid:  #3e4e32;      /* чуть светлее */
    --p-green-light:#4a5c3a;      /* светлее */
    --p-cream:      #D0C4AF;      /* акцентный светлый */
    --p-cream-soft: rgba(208, 196, 175, 0.15);
    --p-white:      #f4f7fb;
    --p-muted:      rgba(255,255,255,0.55);
    --p-border:     rgba(255,255,255,0.12);
    --p-radius:     20px;
    --p-radius-sm:  12px;
    --p-card-bg:    rgba(255,255,255,0.05);
    --p-card-hover: rgba(255,255,255,0.09);
    --p-transition: 0.3s ease;
}

/* ===================================================
   1. БЛОК «КАТАЛОГ» НА ГОЛОВНІЙ (home-catalog.php)
   Дизайн: темний розмитий фон, центрований заголовок,
   4 квадратні картки з hover-оверлеєм, кнопка знизу
   =================================================== */

.catalog-home {
    position: relative;
    padding: 100px 0 110px;
    text-align: center;
    overflow: hidden;
}

/* Фон — успадковує загальний #313D29, додаємо легкий overlay */
.catalog-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(255,255,255,0.03) 0%, transparent 70%),
            radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,0,0,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.catalog-home__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1280px);
    margin-inline: auto;
}

/* ─── Заголовок ─────────────────────────────────── */
.catalog-home__header {
    margin-bottom: 52px;
}

/* ─── Сітка 4 картки ────────────────────────────── */
.catalog-home__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}

@media (max-width: 900px) {
    .catalog-home__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .catalog-home__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* ─── Картка продукту ───────────────────────────── */
.catalog-home-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--p-white);
    background: rgba(255,255,255,0.04);
}

.catalog-home-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-home-card__img--empty {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.06);
}


/* ─── Кнопка «В каталог» ────────────────────────── */
.catalog-home__footer {
    display: flex;
    justify-content: center;
}

.btn--catalog-goto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    color: var(--p-white);
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn--catalog-goto:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

/* ===================================================
   2. СТОРІНКА КАТАЛОГУ (archive-frozen_product.php)
   =================================================== */

.catalog-archive {
    background: var(--p-green);
    min-height: 100vh;
}

.catalog-archive__hero {
    padding-top: 140px;
    padding-bottom: 60px;
}

.catalog-archive__title {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--p-cream);
    margin: 0 0 36px;
}

/* Фильтры */
.catalog-archive__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-filter-btn {
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--p-white);
    background: transparent;
    border: 1px solid var(--p-border);
    border-radius: 999px;
    padding: 8px 20px;
    cursor: pointer;
    transition: background var(--p-transition), border-color var(--p-transition), color var(--p-transition);
}

.catalog-filter-btn:hover {
    background: var(--p-cream-soft);
    border-color: rgba(208,196,175,0.4);
}

.catalog-filter-btn.is-active {
    background: var(--p-cream);
    border-color: var(--p-cream);
    color: var(--p-green);
}

/* Сетка каталога */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 1024px) {
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .catalog-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Карточка каталога */
.catalog-item__inner {
    display: flex;
    flex-direction: column;
    background: var(--p-card-bg);
    border: 1px solid var(--p-border);
    border-radius: var(--p-radius);
    overflow: hidden;
    color: var(--p-white);
    text-decoration: none;
    height: 100%;
    transition: background var(--p-transition), transform var(--p-transition), border-color var(--p-transition);
}

.catalog-item__inner:hover {
    background: var(--p-card-hover);
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-4px);
}

.catalog-item__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: rgba(255,255,255,0.04);
}

.catalog-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.catalog-item__inner:hover .catalog-item__image {
    transform: scale(1.04);
}

.catalog-item__image--placeholder {
    background: rgba(255,255,255,0.04);
}

.catalog-item__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: var(--p-cream);
    color: var(--p-green);
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}

.catalog-item__body {
    padding: 20px 22px 12px;
    flex: 1 1 auto;
}

.catalog-item__meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.catalog-item__weight,
.catalog-item__origin {
    font-size: 12px;
    color: var(--p-cream);
    border: 1px solid rgba(208,196,175,0.3);
    border-radius: 999px;
    padding: 3px 10px;
    letter-spacing: 0.04em;
}

.catalog-item__title {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    font-size: clamp(20px, 2.5vw, 28px);
    text-transform: uppercase;
    color: var(--p-white);
    margin: 0 0 8px;
}

.catalog-item__subtitle {
    font-size: 13px;
    color: var(--p-muted);
    margin: 0 0 10px;
    line-height: 1.5;
}

.catalog-item__excerpt {
    font-size: 13px;
    color: var(--p-muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.catalog-item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px 18px;
    border-top: 1px solid var(--p-border);
    margin-top: auto;
}

.catalog-item__link-label {
    font-size: 13px;
    color: var(--p-cream);
    letter-spacing: 0.04em;
}

.catalog-item__arrow {
    color: var(--p-cream);
    transition: transform var(--p-transition);
}

.catalog-item__inner:hover .catalog-item__arrow {
    transform: translateX(4px);
}

/* Пагинация */
.catalog-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}

.catalog-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.catalog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--p-border);
    color: var(--p-white);
    font-size: 14px;
    text-decoration: none;
    transition: background var(--p-transition), border-color var(--p-transition);
}

.catalog-pagination .page-numbers:hover,
.catalog-pagination .page-numbers.current {
    background: var(--p-cream);
    border-color: var(--p-cream);
    color: var(--p-green);
}

/* ===================================================
   3. СТОРІНКА ОДНОГО ПРОДУКТУ (single-frozen_product.php)
   =================================================== */

.product-single {
    background: var(--p-green);
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Хлебные крошки */
.product-single__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 48px;
    font-size: 13px;
    color: var(--p-muted);
    flex-wrap: wrap;
}

.product-single__breadcrumbs a {
    color: var(--p-muted);
    text-decoration: none;
    transition: color var(--p-transition);
}

.product-single__breadcrumbs a:hover {
    color: var(--p-cream);
}

.product-single__breadcrumb-sep {
    color: rgba(255,255,255,0.25);
}

/* Двухколоночный layout */
.product-single__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
}

@media (max-width: 900px) {
    .product-single__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ─── Галерея ─────────────────────────────────────── */
.product-single__gallery {
    position: sticky;
    top: 100px;
}

.product-single__main-image-wrap {
    position: relative;
    border-radius: var(--p-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: rgba(255,255,255,0.04);
    margin-bottom: 16px;
}

.product-single__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.22s ease;
}

.product-single__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--p-cream);
    color: var(--p-green);
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
}

.product-single__thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-single__thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--p-radius-sm);
    overflow: hidden;
    border: 1.5px solid var(--p-border);
    cursor: pointer;
    padding: 0;
    background: none;
    flex: 0 0 auto;
    transition: border-color var(--p-transition);
}

.product-single__thumb:hover,
.product-single__thumb.is-active {
    border-color: var(--p-cream);
}

.product-single__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Инфо ────────────────────────────────────────── */
.product-single__info {
    padding-top: 8px;
}

.product-single__cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.product-single__cat-tag {
    font-size: 12px;
    color: var(--p-cream);
    border: 1px solid rgba(208,196,175,0.35);
    border-radius: 999px;
    padding: 4px 12px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background var(--p-transition);
}

.product-single__cat-tag:hover {
    background: rgba(208,196,175,0.12);
}

.product-single__title {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--p-cream);
    margin: 0 0 12px;
}

.product-single__subtitle {
    font-size: 16px;
    color: var(--p-muted);
    margin: 0 0 28px;
    line-height: 1.6;
}

/* Характеристики */
.product-single__specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 28px;
    padding: 20px 24px;
    background: var(--p-cream-soft);
    border: 1px solid rgba(208,196,175,0.15);
    border-radius: var(--p-radius-sm);
}

.product-single__spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-single__spec dt {
    font-size: 11px;
    color: var(--p-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-single__spec dd {
    font-size: 16px;
    color: var(--p-white);
    margin: 0;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
}

/* Excerpt */
.product-single__excerpt {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.product-single__excerpt p {
    margin: 0;
}

/* CTA */
.product-single__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--p-cream);
    color: var(--p-green);
    border: none;
    text-decoration: none;
    transition: background var(--p-transition), transform var(--p-transition);
}

.btn--primary:hover {
    background: #e0d5be;
    transform: translateY(-2px);
}

/* ─── Детальное описание ──────────────────────────── */
.product-single__description {
    border-top: 1px solid var(--p-border);
    padding-top: 64px;
}

.product-single__description-inner {
    max-width: 760px;
}

.product-single__desc-title {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    font-size: clamp(28px, 4vw, 48px);
    text-transform: uppercase;
    color: var(--p-cream);
    margin: 0 0 28px;
}

.product-single__desc-body {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

.product-single__desc-body p { margin-block: 0 16px; }
.product-single__desc-body h2,
.product-single__desc-body h3 {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--p-cream);
    margin-block: 32px 12px;
}

/* ─── Похожие продукты ────────────────────────────── */
.product-related {
    border-top: 1px solid var(--p-border);
    padding-top: 64px;
}

.product-related__title {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    font-size: clamp(28px, 4vw, 48px);
    text-transform: uppercase;
    color: var(--p-cream);
    margin: 0 0 36px;
}

.product-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .product-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-related__grid {
        grid-template-columns: 1fr;
    }
}
/* ===================================================
   FROZEN PRODUCTS — CSS
   Файл: assets/css/products.css
   Підключити в functions.php через wp_enqueue_style()
   =================================================== */

/* ─── Змінні (узгоджені з темою) ──────────────────── */
:root {
    --p-green:      #313D29;      /* основной фон темы */
    --p-green-mid:  #3e4e32;      /* чуть светлее */
    --p-green-light:#4a5c3a;      /* светлее */
    --p-cream:      #D0C4AF;      /* акцентный светлый */
    --p-cream-soft: rgba(208, 196, 175, 0.15);
    --p-white:      #f4f7fb;
    --p-muted:      rgba(255,255,255,0.55);
    --p-border:     rgba(255,255,255,0.12);
    --p-radius:     20px;
    --p-radius-sm:  12px;
    --p-card-bg:    rgba(255,255,255,0.05);
    --p-card-hover: rgba(255,255,255,0.09);
    --p-transition: 0.3s ease;
}

/* ===================================================
   1. БЛОК «КАТАЛОГ» НА ГОЛОВНІЙ (home-catalog.php)
   Дизайн: темний розмитий фон, центрований заголовок,
   4 квадратні картки з hover-оверлеєм, кнопка знизу
   =================================================== */

.catalog-home {
    position: relative;
    padding: 100px 0 110px;
    text-align: center;
    overflow: hidden;
}

/* Фон — успадковує загальний #313D29, додаємо легкий overlay */
.catalog-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(255,255,255,0.03) 0%, transparent 70%),
            radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,0,0,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.catalog-home__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1280px);
    margin-inline: auto;
}

/* ─── Заголовок ─────────────────────────────────── */
.catalog-home__header {
    margin-bottom: 52px;
}

/* ─── Сітка 4 картки ────────────────────────────── */
.catalog-home__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}

@media (max-width: 900px) {
    .catalog-home__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .catalog-home__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

.btn--catalog-goto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    color: var(--p-white);
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn--catalog-goto:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

/* ===================================================
   2. СТОРІНКА КАТАЛОГУ (archive-frozen_product.php)
   =================================================== */

.catalog-page {
    min-height: 100vh;
}

/* ─── Hero ──────────────────────────────────────── */
.catalog-page__hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
}

.catalog-page__hero-overlay {
    position: absolute;
    inset: 0;
}

.catalog-page__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    padding-top: 140px;
    padding-bottom: 64px;
}

.catalog-page__title {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    font-size: 6.85rem;
    line-height: 1;
    text-transform: uppercase;
    color: var(--p-cream);
    margin: 0 0 28px;
    letter-spacing: 0.04em;
}

/* ─── Фільтри ───────────────────────────────────── */
.catalog-page__filters-bar {
    padding: 28px 0;
    background: none;
}

.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.catalog-filter-tag {
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.01em;
    color: var(--p-white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 8px;
    padding: 10px 22px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    line-height: 1;
}

.catalog-filter-tag:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.45);
}

.catalog-filter-tag.is-active {
    background: rgba(255,255,255,0.35);
    border-color: rgba(255,255,255,0.6);
}

/* Кнопка «Скинути» — зелена заливка */
.catalog-filter-tag--reset {
    background: var(--p-green-light)!important;
    border-color: var(--p-green-light)!important;
    color: rgba(255,255,255,0.85);
    margin-left: auto;
}

@media (max-width: 600px) {
    .catalog-filter-tag--reset { margin-left: 0; }
}

/* ─── Сітка 4 колонки (майже без відступів) ─────── */
.catalog-page__grid-section {
    padding: 24px 0 80px;
}

.catalog-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .catalog-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .catalog-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}

@media (max-width: 400px) {
    .catalog-grid-4 { grid-template-columns: 1fr 1fr; gap: 3px; }
}

/* ─── Картка каталогу ───────────────────────────── */
.catalog-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
}

.catalog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-card__img--empty {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.06);
}

.catalog-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px;
    background: linear-gradient(
            to top,
            rgba(0,0,0,0.6) 0%,
            rgba(0,0,0,0.1) 45%,
            transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.catalog-card:hover .catalog-card__overlay {
    opacity: 1;
}

.catalog-card:hover .catalog-card__img {
    transform: scale(1.06);
}

.catalog-card__name {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1.1;
    transform: translateY(6px);
    transition: transform 0.35s ease;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.catalog-card:hover .catalog-card__name {
    transform: translateY(0);
}

.catalog-card__eye {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.75);
    transition: transform 0.3s ease;
}

.catalog-card:hover .catalog-card__eye {
    transform: scale(1);
}

.catalog-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: var(--p-cream);
    color: var(--p-green);
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
}

/* ─── Кнопка «Показати більше» ──────────────────── */
.catalog-page__load-more-wrap {
    display: flex;
    justify-content: center;
}

.btn--load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    color: var(--p-white);
    font-family: "Gilroy", sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.btn--load-more:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.btn--load-more:disabled {
    opacity: 0.5;
    cursor: wait;
}

/* ===================================================
   3. СТОРІНКА ОДНОГО ПРОДУКТУ (single-frozen_product.php)
   =================================================== */

.product-single {
    background: var(--p-green);
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Хлебные крошки */
.product-single__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 48px;
    font-size: 13px;
    color: var(--p-muted);
    flex-wrap: wrap;
}

.product-single__breadcrumbs a {
    color: var(--p-muted);
    text-decoration: none;
    transition: color var(--p-transition);
}

.product-single__breadcrumbs a:hover {
    color: var(--p-cream);
}

.product-single__breadcrumb-sep {
    color: rgba(255,255,255,0.25);
}

/* Двухколоночный layout */
.product-single__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
}

@media (max-width: 900px) {
    .product-single__layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ─── Галерея ─────────────────────────────────────── */
.product-single__gallery {
    position: sticky;
    top: 100px;
}

.product-single__main-image-wrap {
    position: relative;
    border-radius: var(--p-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: rgba(255,255,255,0.04);
    margin-bottom: 16px;
}

.product-single__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.22s ease;
}

.product-single__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--p-cream);
    color: var(--p-green);
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
}

.product-single__thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-single__thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--p-radius-sm);
    overflow: hidden;
    border: 1.5px solid var(--p-border);
    cursor: pointer;
    padding: 0;
    background: none;
    flex: 0 0 auto;
    transition: border-color var(--p-transition);
}

.product-single__thumb:hover,
.product-single__thumb.is-active {
    border-color: var(--p-cream);
}

.product-single__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Инфо ────────────────────────────────────────── */
.product-single__info {
    padding-top: 8px;
}

.product-single__cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.product-single__cat-tag {
    font-size: 12px;
    color: var(--p-cream);
    border: 1px solid rgba(208,196,175,0.35);
    border-radius: 999px;
    padding: 4px 12px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background var(--p-transition);
}

.product-single__cat-tag:hover {
    background: rgba(208,196,175,0.12);
}

.product-single__title {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--p-cream);
    margin: 0 0 12px;
}

.product-single__subtitle {
    font-size: 16px;
    color: var(--p-muted);
    margin: 0 0 28px;
    line-height: 1.6;
}

/* Характеристики */
.product-single__specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 0 0 28px;
    padding: 20px 24px;
    background: var(--p-cream-soft);
    border: 1px solid rgba(208,196,175,0.15);
    border-radius: var(--p-radius-sm);
}

.product-single__spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-single__spec dt {
    font-size: 11px;
    color: var(--p-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-single__spec dd {
    font-size: 16px;
    color: var(--p-white);
    margin: 0;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
}

/* Excerpt */
.product-single__excerpt {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.product-single__excerpt p {
    margin: 0;
}

/* CTA */
.product-single__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--p-cream);
    color: var(--p-green);
    border: none;
    text-decoration: none;
    transition: background var(--p-transition), transform var(--p-transition);
}

.btn--primary:hover {
    background: #e0d5be;
    transform: translateY(-2px);
}

/* ─── Детальное описание ──────────────────────────── */
.product-single__description {
    border-top: 1px solid var(--p-border);
    padding-top: 64px;
}

.product-single__description-inner {
    max-width: 760px;
}

.product-single__desc-title {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    font-size: clamp(28px, 4vw, 48px);
    text-transform: uppercase;
    color: var(--p-cream);
    margin: 0 0 28px;
}

.product-single__desc-body {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

.product-single__desc-body p { margin-block: 0 16px; }
.product-single__desc-body h2,
.product-single__desc-body h3 {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--p-cream);
    margin-block: 32px 12px;
}

/* ─── Похожие продукты ────────────────────────────── */
.product-related {
    border-top: 1px solid var(--p-border);
    padding-top: 64px;
}

.product-related__title {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    font-size: clamp(28px, 4vw, 48px);
    text-transform: uppercase;
    color: var(--p-cream);
    margin: 0 0 36px;
}

.product-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .product-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-related__grid {
        grid-template-columns: 1fr;
    }
}
/* ===================================================
   4. НОВА СТОРІНКА ТОВАРУ (2 фото + таби)
   =================================================== */

/* Hero з двома фото */
.product-hero {
    padding-top: 100px;
}

.product-hero__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.product-hero__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .product-hero__images {
        grid-template-columns: 1fr;
    }
    .product-hero__image {
        aspect-ratio: 16 / 10;
    }
}

/* Контент товару */
.product-content {
    padding: 64px 0 80px;
}

/* Вступ: заголовок + 2 колонки тексту */
.product-intro {
    margin-bottom: 64px;
}

.product-intro__title {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--p-cream);
    margin: 0 0 32px;
}

.product-intro__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    font-size: 1rem;
    font-weight: 250;
}

.product-intro__col p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 768px) {
    .product-intro__cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Таби */
.product-tabs {
    max-width: 600px;
    margin: 0 auto;
}

.product-tabs__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.product-tabs__btn {
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: 999px;
    border: 1px solid var(--p-border);
    background: transparent;
    color: var(--p-cream);
    cursor: pointer;
    transition: background var(--p-transition), border-color var(--p-transition);
}

.product-tabs__btn:hover {
    background: rgba(208,196,175,0.08);
}
.product-tabs__btn.is-active {
    background: #313D29;
    color: #fff;
}

/* Панелі табів */
.product-tabs__panel {
    display: none;
}

.product-tabs__panel.is-active {
    display: block;
}

/* Таблиця специфікацій / поживності */
.product-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table tr {
    border-bottom: 1px solid var(--p-border);
}

.product-specs-table td {
    padding: 18px 0;
    vertical-align: top;
}

.product-specs-table__label {
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    width: 40%;
    padding-right: 24px;
}

.product-specs-table__value {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
    text-align: right;
}

/* Контент опису */
.product-desc-content {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

.product-desc-content p {
    margin: 0 0 16px;
}

.product-desc-content h2,
.product-desc-content h3 {
    font-family: "Steclo", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--p-cream);
    margin: 32px 0 12px;
}

/* Кнопка назад */
.product-back {
    margin-top: 64px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.product-back__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Gilroy", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--p-cream);
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid var(--p-border);
    border-radius: 999px;
    transition: background var(--p-transition), border-color var(--p-transition);
}
.product-back__link:hover {
    background: rgba(208,196,175,0.08);
    border-color: var(--p-cream);
}
.product-back__link svg {
    flex-shrink: 0;
}
.glass-button {
    padding: 10px 20px;
    border-radius: 5px;
}
.liquid-glass {
    border-radius: 12px;
    position: relative;
    isolation: isolate;
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    padding: 15px 20px;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
}

.liquid-glass:focus {
    outline: none;
}

.liquid-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 12.600000000000001px;
    box-shadow: inset 0 0 15px -5px #ffffff;
    background-color: rgba(255, 255, 255, 0);
}

.liquid-glass::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 12.600000000000001px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px) saturate(1.5) brightness(1.2);
    filter: url(#glass-distortion);
    -webkit-filter: url(#glass-distortion);
}
.glass-text {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.site-header.is-dark .glass-text {
    color: #ffffff;
    transition: color 0.3ms ease;
}

/* ===================================================
   PARTNERS SLIDER (mobile)
   =================================================== */
.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partners-slider__track {
    display: flex;
    transition: transform 0.5s ease;
}

.partners-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.partners-slider__slide .partners-tile {
    width: 100%;
    height: auto;
    min-height: 100px;
}

.partners-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.partners-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.partners-slider__dot:hover {
    border-color: rgba(255,255,255,0.7);
}

.partners-slider__dot.is-active {
    background: var(--p-cream);
    border-color: var(--p-cream);
}

.partners-slider.is-paused .partners-slider__track {
    /* Visual indicator that slider is paused */
}

.site-header .glass-text {
    position: relative;
    color: #313D29;
    font-size: 16px;
    font-weight: 400;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transform: translate(0px, 0px);
    transition: color 0.3ms ease;
}