/* =========================================
   VILORD FROST — Main Stylesheet
   WordPress-Ready Structure
   ========================================= */ /* ----- CSS Variables ----- */ :root {
    --dark-bg: #151515;
    --light-bg: #f4f4f4;
    --accent-red: #ad0303;
    --icon-bg: #131313;
    --icon-bg-hover: #9f1116;
    --gold: #d6982a;
    --border: #4e4e50;
    --card-bg: #262626;
    --white: #ffffff;
    --black: #000000;
    --text-gray: #9a9a9a;
    --dark-card: #0d0d0d;
    --font-heading: "Roboto Condensed", sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-h: 64px;
    --transition: 0.28s cubic-bezier(.4,0,.2,1);
    --radius: 10px;
    --radius-sm: 9px;
}

/* ----- Reset & Base ----- */ *,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* =========================================
   TYPOGRAPHY HELPERS
   ========================================= */ 
   .section-category {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
}

.section-subtitle {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--text-gray);
    margin-top: 10px;
    max-width: 520px;
}

/* =========================================
   BUTTONS
   ========================================= */ 
   .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-red {
    background: var(--accent-red);
    color: var(--white);
    border: 2px solid var(--accent-red);
    padding: 8px 30px;
}

.btn-red:hover {
    background: #c4181f;
    border-color: #c4181f;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    /*margin-top:8px;*/
    /*max-width: 190px;*/
}
.btn-width {
 max-width: 190px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark-bg);
    border: 2px solid var(--dark-bg);
}

.btn-outline-dark:hover {
    background: var(--dark-bg);
    color: var(--white);
}

/* =========================================
   HEADER
   ========================================= */ 
   .section-header {
   max-width:1280px;
   margin:0 auto 40px; 

   }
  .section-header h2 {
    color: var(--black);
   }
   .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /*height: var(--header-h);*/
    padding: 10px 0;
    background: rgba(21,21,21,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-logo .logo-icon {
    width: 112px;
    /*width: 50px;*/
    /*height: 50px;*/
    /*background: var(--accent-red);*/
    /*border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
}


.header-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
        line-height: 17px;
}

.header-logo .logo-text span {
    display: block;
    color: var(--accent-red);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-nav a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.07);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-cart {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--white);
    transition: var(--transition);
}

.header-cart:hover {
    border-color: var(--accent-red);
}

.header-cart .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: var(--accent-red);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Burger */ .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px,-5px);
}

/* Mobile Nav */ .mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(21,21,21,0.99);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 40px 24px 24px;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--accent-red);
}

/* =========================================
   FLOATING SIDE PANEL
   ========================================= */ 
  /* .side-panel {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius) 0 0 var(--radius);
    overflow: hidden;
}

.side-panel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 75px;
    padding: 14px 10px;
    background: var(--icon-bg);
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.side-panel-item:last-child {
    border-bottom: none;
}

.side-panel-item svg {
    width: 22px;
    height: 22px;
}

.side-panel-item:hover {
    background: var(--accent-red);
}*/
.box_fixed_social{
    position: fixed;
    bottom: 60px;
    right: 10px;
    z-index: 9;
    box-sizing: border-box;
}
.btn_open_list_social{
    color: #fff;
    background: var(--icon-bg);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 50%; 
    cursor:pointer;transition:0.6s;
    position:relative;z-index:1; transform: rotate(0deg); transition:0.3s;
}
.active_btn_open_list_social{
    background: url(../images/close_menu.png) #fff !important;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 42%);
    background-repeat: no-repeat !important;
    background-size: 50% !important;
    background-position: center !important;
}
.active_btn_open_list_social svg{
    display:none;
}


.btn_open_list_social_anim{
    position:relative;
    z-index:1;

}
.btn_open_list_social:hover{
    /*transform: rotate(360deg); 
    transition:0.6s;*/
    background: var(--accent-red);
}
.btn_open_list_social_anim:before{
        content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid var(--accent-red);
    animation: animation_radial 1s infinite ease-in-out;
    animation-timing-function: steps(60);
}
.btn_open_list_social_anim:after{
        content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid var(--accent-red);
        animation: animation_radial2 1.8s infinite ease-in-out;
    animation-timing-function: steps(60);
}

@keyframes animation_radial {
    from {
        bottom: 0%;
        left: 0%;
        right: 0%;
        top: 0%;
        opacity:1;
    }
    to {
        bottom: -30%;
        left: -30%;
        right: -30%;
        top: -30%;
        opacity:0;
    }
}

@keyframes animation_radial2 {
    from {
        bottom: 0%;
        left: 0%;
        right: 0%;
        top: 0%;
        opacity:1;
    }
    to {
        bottom: -30%;
        left: -30%;
        right: -30%;
        top: -30%;
        opacity:0;
    }
}



.list_social{
list-style-type: none;
    margin: 0px;
    display: none;

    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.list_social li{
    padding-bottom: 0px;    
}
.list_social img{
        width: 28px;
}
.list_social a{
    transform: rotate(0deg); 
    /*transition:0.6s;*/
}
.list_social a:hover{
    /*transform: rotate(360deg); */
    background: var(--icon-bg-hover);
    /*transition:0.6s;*/
}
.side-panel-item{
    background: var(--accent-red);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-top: 12px;
    margin-bottom: 12px;
    border-radius: 50%; 
}
.viber-side {
background: linear-gradient(135deg, #59267c, #8f5db7);
}
.telegram-side {
background: linear-gradient(135deg, #24a1de, #0088cc);
}
.side-panel-item svg {
    width: 22px;
    height: 22px;
}
.btn_open_list_social_anim svg {
    width: 25px;
    height: 25px;
}
/*.telegram{
    background: linear-gradient(90deg, #6d51c7, #eb745c);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-top: 12px;
    margin-bottom: 12px;
    border-radius: 50%; 
}
.viber{
    background:linear-gradient(90deg, #6d51c7, #eb745c);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-top: 12px;
    margin-bottom: 12px;
    border-radius: 50%; 
}*/


.floating-drop {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: blue;
  border-radius: 50%;
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.anim_underscore{
    animation: anim_underscore 0.8s ease-in-out infinite;
}
@keyframes anim_underscore {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* =========================================
   SECTION 1 — HERO SLIDER
   ========================================= */ 
  /* ==========================================================================
   SECTION HERO (Варіант з абсолютно статичним текстовим блоком)
   ========================================================================== */

.section-hero {
    background: var(--dark-bg);
    padding-top: var(--header-h);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Огортка для всього слайдера */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-h));
    height: 800px;
}

/* --------------------------------------------------------------------------
   СТАТИЧНИЙ КОНТЕНТ (Накладається поверх усього)
   -------------------------------------------------------------------------- */
.hero-static-content {
    position: absolute;
    inset: 0;
    z-index: 5; /* Вище за фони та картинки слайдера */
    pointer-events: none; /* Кліки проходять крізь порожні зони до слайдера (для свайпів) */
    display: flex;
    align-items: center;
}

/* Повертаємо клікабельність кнопкам та посиланням всередині тексту */
.hero-static-content .hero-buttons,
.hero-static-content a {
    pointer-events: all;
}

/* --------------------------------------------------------------------------
   СЛАЙДЕР ТА СЛАЙДИ (Тільки зображення та фони)
   -------------------------------------------------------------------------- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - var(--header-h));
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

/* Активний слайд плавно проявляється */
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Фонові зображення */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6; /* Твоя оригінальна непрозорість фону */
    z-index: 0;
}

/* --------------------------------------------------------------------------
   СІТКА (GRID) — однакова і для тексту, і для слайдів
   -------------------------------------------------------------------------- */
.hero-slide-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Дві однакові колонки */
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
    height: 100%;
}

/* --------------------------------------------------------------------------
   СТИЛІ КОНТЕНТУ ТА ТИПОГРАФІКИ
   -------------------------------------------------------------------------- */
.hero-content {
    max-width: 540px;
}

.hero-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--accent-red);
}

.hero-desc {
    font-size: 15px;
    color: #fff;
    margin-bottom: 36px;
    max-width: 420px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   ПРАВА ЧАСТИНА (ЗОБРАЖЕННЯ В СЛАЙДАХ)
   -------------------------------------------------------------------------- */
.hero-image-wrap {
    grid-column: 2; /* Чітко ставимо у другу колонку грида */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Якщо всередині .hero-image-wrap будуть картинки <img> */
.hero-image-wrap img {
    width: 100%;
    max-width: 520px;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------------------------------------
   КРАПКИ ПАГІНАЦІЇ (DOTS)
   -------------------------------------------------------------------------- */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10; /* Мають бути поверх статичного контенту */
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: var(--accent-red);
    transform: scale(1.3);
}
/* =========================================
   SECTION 2 — FEATURES DARK CARD
   ========================================= */ 
  .section-features {
    background: var(--light-bg);
    padding: 80px 24px;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* =========================================
   SLIDER WRAPPER
========================================= */

.features-dark-card {
    /*overflow: hidden;*/
    position: relative;
}

/* =========================================
   TRACK
========================================= */

.features-track {
    display: flex;
    gap: 40px;
    transition: transform .5s ease;
    will-change: transform;
}

/* =========================================
   SLIDE
========================================= */

.feature-block {
    background: var(--dark-bg);
    border-radius: var(--radius);
    padding: 56px 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    gap: 14px;

    border: 1px solid var(--accent-red);

    /*box-shadow: 0px 0px 11px 5px #00000057;*/

    flex-shrink: 0;
    width: 100%;
}

/* =========================================
   ICON
========================================= */

.feature-icon {
    /*width: 100px;*/
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.feature-icon svg {
    /*width: 48px;
    height: 48px;
    color: var(--accent-red);*/
    min-width: 100px;
    min-height: 100px;
    /* Ви все ще можете залишити ці правила, але min-* версії спрацюють на збільшення */
    width: auto;
    height: auto;
    color: var(--accent-red);
}



/* =========================================
   TEXT
========================================= */

.feature-title {
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    text-align: center;
}

.feature-text {
    font-size: 14px;
    text-align: center;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

/* =========================================
   CONTROLS
========================================= */

.features-controls {
    display: none !important;
    align-items: center;
    justify-content: center;
    gap: 16px;

    margin-top: 32px;
}

/* Планшет + моб */
@media (max-width: 1024px) {
    .features-controls {
        display: flex !important;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .section-features {
        padding: 60px 18px;
    }

    .feature-block {
        padding: 40px 24px;
    }
.features-dark-card {
    overflow: hidden;
    /*position: relative;*/
}
.feature-text {
    font-size: 18px;
}
.feature-title {
    font-size: 22px;
}
}
/**/
.category-section {
    padding: 80px 24px;
    background: #f5f5f5;
}

.category-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* =========================================
   GRID
========================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* =========================================
   CARD
========================================= */

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 500px;

    display: flex;
    align-items: flex-end;

    text-decoration: none;

 transform: translateZ(0);
    backface-visibility: hidden;
    transition: transform .4s ease;
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-card img {
 position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease,
        filter .4s ease;

    transform: scale(1);
    will-change: transform;
}

.category-card:hover img {
    transform: scale(1.06);
}
/* =========================================
   OVERLAY
========================================= */

.category-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.55) 35%,
            rgba(0,0,0,.12) 70%,
            rgba(0,0,0,.05) 100%
        );

    z-index: 1;
}

/* =========================================
   CONTENT
========================================= */

.category-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 34px 15px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 8px;
    flex-direction: column;
}

.category-content h3 {
    color: #fff;

    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;

    max-width: 75%;
}
.price-card_botom {
margin-top: 20px;    
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-items: baseline;
width: 100%;
}
.price-card_botom p {
 margin-right: 5px;   
 font-size: 24px;
 font-weight: 800;
 letter-spacing: 1.5px;
 color: var(--white);   
}
/* =========================================
   ARROW
========================================= */


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .category-card {
        min-height: 500px;
    }

    .category-content {
        padding: 26px;
    }

    .category-content h3 {
        font-size: 26px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .category-section {
        padding: 60px 18px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 500px;
        border-radius: 22px;
    }

    .category-content {
        padding: 22px;
    }

    .category-content h3 {
        font-size: 20px;
        max-width: 80%;
    }
.category-content {
    gap: 12px;
}
  .price-card_botom {
    margin-top: 10px;
  }
}

/* =========================================
   SECTION 3 — CATEGORY SLIDER
   ========================================= */ 
 /*  .section-categories {
    background: var(--light-bg);
    padding: 80px 0 80px 24px;
}

.section-categories .section-header {
    max-width: 1280px;
    margin: 0 auto 40px;
    padding-right: 24px;
}

.section-categories .section-title {
    color: var(--black);
}

.section-categories .section-subtitle {
    color: #555;
}*/

.slider-wrap {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

/* Section 3 slides — 2 visible */ 
/*.cat-slide {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
    background: var(--dark-bg);
    border-radius: var(--radius);
    display: flex;
    overflow: hidden;
    height: 300px;
    position: relative;
}

.cat-slide-img {
    width: 45%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.cat-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-slide-img::before {
    content: '';
    position: absolute;
    top: 0;
   left: -1px;
    bottom: 0;
    width: 60%;
    background: linear-gradient(to left, transparent, var(--dark-bg));
}

.cat-slide-content {
    flex: 1;
    padding: 28px 28px 28px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.cat-slide-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.cat-slide-text {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}*/

/* Section 4 slides — 1 visible */
 .prod-slide {
    flex: 0 0 100%;
    min-width: 100%;
    background: var(--dark-bg);
    border-radius: var(--radius);
    display: flex;
    overflow: hidden;
    height: 320px;
    position: relative;
}

.prod-slide-img {
    width: 42%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.prod-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-slide-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    bottom: 0;
    width: 55%;
    background: linear-gradient(to left, transparent, var(--dark-bg));
}

.prod-slide-content {
    flex: 1;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.prod-slide-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.prod-slide-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
}

.prod-slide-price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}

.prod-slide-price span {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
}

/* Slider Controls */ 
.slider-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding-right: 24px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-bg);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--white);
}

.slider-btn svg {
    width: 18px;
    height: 18px;
}

.slider-btn-light {
    border-color: rgba(255,255,255,0.3);
    /*color: var(--white);*/
    border: 2px solid var(--border);
}
.slider-btn-lights {
    border-color: rgba(255,255,255,0.3);
    color: var(--border);
    border: 2px solid var(--border);
}

.slider-btn-light:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.slider-dots {
    display: flex;
    gap: 8px;
    /*flex: 1;*/
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--accent-red);
    transform: scale(1.3);
}

.slider-dot-dark {
    background: #bbb;
}

.slider-dot-dark.active {
    background: var(--accent-red);
}
/*sliders_two*/
.sliders_two {
max-width:1280px;
margin: 15px auto;
justify-content: center;   
}
/*sliders_two*/
.sliders_there {
max-width:1280px;
margin: 15px auto;
justify-content: center;   
}
/* =========================================
   SECTION 4 — TOP PRODUCTS
   ========================================= */ .section-products {
    background: var(--light-bg);
    padding: 80px 24px;
}

.section-products .section-header {
    max-width: 1280px;
    margin: 0 auto 40px;
}

.section-products .section-title {
    color: var(--black);
}

.products-slider-wrap {
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

/* =========================================
   SECTION 5 — WHY US (Dark)
   ========================================= */ 
   .section-why {
    /*background: var(--dark-bg);*/
    background: var(--light-bg);

    padding: 80px 24px;
}

.section-why .section-header {
    max-width: 1280px;
    margin: 0 auto 48px;
}

.section-why .section-title {
    /*color: var(--white);*/
    color: var(--black);
}

/* why slider 3-up */ .why-slider-wrap {
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

.why-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.why-slide {
    /*flex: 0 0 calc(33.333% - 16px);*/
    /*min-width: calc(33.333% - 16px);*/
    align-items: center;
    background: var(--dark-bg);
    border: 2px solid var(--accent-red);
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
   /* width: 44px;
    height: 44px;
    color: var(--accent-red);*/
        min-width: 100px;
    min-height: 100px;
    width: auto;
    height: auto;
    color: var(--accent-red);
}

.why-slide-title {
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.why-slide-text {
    text-align: center;
    font-size: 16px;
    /*color: rgba(255,255,255,0.5);*/
    line-height: 1.7;
}

/* Pagination dots for why section */ .why-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    /*margin-top: 36px;*/
}

.why-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.why-dot.active {
    background: var(--accent-red);
    transform: scale(1.3);
}
.why-slide_botom {
display:flex;
align-items:center;
justify-content:center;
gap:16px;
margin-top:36px;
}
/* =========================================
   SECTION 6 — REVIEWS
   ========================================= */ 
   .section-reviews {
    /*background: var(--dark-bg);*/
background: linear-gradient(to top, rgb(20 20 20) 0%, rgb(20 20 20 / 94%) 15%, rgb(242 242 242) 70%, rgb(244 244 244) 100%);
    padding: 80px 24px;
    /*border-top: 1px solid var(--border);*/
}

.section-reviews .section-header {
    max-width: 1280px;
    margin: 0 auto 48px;
}

.section-reviews .section-title {
    /*color: var(--white);*/
    color: var(--black);
}

.reviews-slider-wrap {
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.review-card {
    /*flex: 0 0 calc(50% - 12px);*/
    /*min-width: calc(50% - 12px);*/
    /*background: var(--card-bg);*/
    /*border: 2px solid var(--border);*/
    /*border-radius: var(--radius);*/
    /*padding: 32px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.review-card span img {
   border-radius: var(--radius); 
   max-height: 600px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
}

.review-date {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 2px;
}

.review-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* =========================================
   SECTION 7 — BLOG PROMO
   ========================================= */ 
   .section-blog {
    background: var(--dark-bg);
    padding: 100px 24px 0px 24px;
    /*border-top: 1px solid var(--border);*/
    /*min-height: 750px;*/
     position: relative;
     overflow: hidden;
}

.blog-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    /*gap: 64px;*/
   /* background: url(../images/vilord.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;*/
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
}

.blog-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-red);
}

.blog-text {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    max-width: 460px;
}

/*.blog-image {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}*/

/*.blog-image {
    position: absolute;
    width: 32%;
    left: 50%;
    bottom: 0px;
    object-fit: cover;
}*/
.category-overlay_blog {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .55) 15%, rgba(0, 0, 0, .12) 30%, rgba(0, 0, 0, .05) 50%);
    z-index: 1;
}
.btn-blog_bottom {
    display: flex;
max-width: 460px;
margin-top:8px;
}
.btn-blog_bottom a{
width: 100%;
justify-content: center;
}

@media (max-width: 998px) {
 .btn-tel {
  display: none; 
 }   
.blog-image {
    position: absolute;
    width: 45%;
    left: 50%;
    bottom: 0px;
    object-fit: cover;
}
.section-blog {
 min-height: 500px;   
}

}
/* =========================================
   SECTION 8 — THREE CARDS (Guarantees)
   ========================================= */ .section-guarantees {
    background: var(--dark-bg);
    padding: 80px 24px;
    border-top: 1px solid var(--border);
}

.guarantees-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guarantee-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.guarantee-card:hover {
    border-color: var(--accent-red);
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent-red);
}

.guarantee-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
}

.guarantee-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* =========================================
   SECTION 9 — WIDE CTA SLIDE
   ========================================= */ 
   .section-cta {
    /*background: var(--dark-bg);*/
    /*background: var(--black);*/
    background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgb(0 0 0) 15%, rgb(0 0 0) 30%, rgb(0 0 0 / 86%) 50%);
    padding: 0px 24px 80px 24px;
    /*border-top: 1px solid var(--border);*/
}

.cta-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.cta-card {
    background: var(--black);
    /*border: 1px solid #202020;*/
    border-radius: var(--radius);
    display: flex;
    overflow: hidden;
    max-height: 360px;
}

.cta-card-img {
    width: 45%;
    flex-shrink: 0;
    position: relative;
    background: #080808;
    overflow: hidden;
}

.cta-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    bottom: 0;
    width: 65%;
    background: linear-gradient(to left, transparent, var(--black));
}

.cta-card-content {
    flex: 1;
    padding: 52px 52px 52px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}

.cta-card-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.cta-card-text {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 420px;
}
.cta-card-content span svg{
 width: 50px;
    height: 50px;
    color: var(--accent-red);
}

.cta-inst a {
    display: flex;
    justify-content: center;

width: 100%;
}
.cta-inst a svg {
width: 20px;
    height: 20px;
    color: #fff;
}
/* =========================================
   SECTION 10 — CONTACTS
   ========================================= */ 
.section-contacts {
    /*background: var(--black);*/
    background: #020202;
;
    padding: 80px 24px;
    border-top: 1px solid var(--border);
}
.white-cont {
  background: var(--light-bg);  
}
.white-cont h2, .white-cont h3 {
  color: var(--black);  
}
.white-cont .contacts-detail .contacts-detail-item {
color: var(--black); 
transition: 0.3s; 
}
.white-cont .contacts-detail-item .icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}
/*.white-cont .contacts-detail .contacts-detail-item:hover {
 color: #c4181f;     
}*/
.contacts-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.contacts-header {
    margin-bottom: 48px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contacts-info-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.contacts-detail {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contacts-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.contacts-detail-item .icon {
    width: 40px;
    height: 40px;
    background: var(--icon-bg);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacts-detail-item .icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent-red);
}

.contacts-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contacts-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.contacts-social a:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.contacts-social a svg {
    width: 18px;
    height: 18px;
}

/* Contact Form */ 
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.white-form .form-group .form-label{
/*background: var(--black);
padding: 20px;
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: 0px 0px 8px 3px #00000047;*/
color: var(--black);
}
.white-form .form-input, .white-form .form-textarea {
background: #fff;
color: #000;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 14px;
    color: var(--white);
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
    resize: none;
}
.form-textarea {
 border-radius: 9px;   
}
.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent-red);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255,255,255,0.25);
}
.white-form .form-input::placeholder,
.white-form .form-textarea::placeholder {
    color: #000;
}
.form-textarea {
    min-height: 120px;
}

.form-submit {
    align-self: flex-start;
}

/* =========================================
   FOOTER
   ========================================= */ .site-footer {
    background: #0d0d0d;
    border-top: 1px solid var(--border);
    padding: 60px 24px 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .logo .logo-icon {
    width: 155px;
    /*height: 80px;*/
    /*background: var(--accent-red);*/
    /*border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand .logo-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .logo-name span {
    color: var(--accent-red);
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 260px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    gap: 16px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}
/* =========================================
   SECTION google card
   ========================================= */ 
  .contact-page_head {
    position: relative;
   overflow: hidden;
   padding: 24px;
    background-attachment: fixed;
   background-repeat: no-repeat;
   background-position: center center;
   background-size: cover;
   min-height: 500px;
   width: 100%;
   display: flex;
  } 
  .contact-page_head::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.6); /* Регулюйте затемнення тут (0.6 = 60%) */
   z-index: 1;
}
 .contact-container {
    position: relative;
   z-index: 2;
   max-width: 1280px;
   width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
 } 
 .contact-block_items {
 display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;   
 } 
  .contact-block_items p{
      color: var(--text-gray);  
 }
.google-card_contacts {
 margin-bottom: -7px;   
}   
.google-card_cont iframe {
width: 100%;
height: 300px;
}
/* =========================================
   SECTION UTILITY WRAPPERS
   ========================================= */ 
   .section-header {
    display: flex;
    flex-direction: column;
}

.section-header .header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

/* Scroll Animations */ 
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* =========================================
   RESPONSIVE — TABLET (≤1024px)
   ========================================= */ 
   @media (max-width: 1024px) {
    .features-dark-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .cat-slide {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100% - 0px);
    }

    .why-slide {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }

    .review-card {
        flex: 0 0 calc(100% - 0px);
        min-width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .blog-inner {
        gap: 40px;
    }

    .guarantees-inner {
        grid-template-columns: 1fr 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }
}
 @media (max-width: 998px) {
 /* Header */ .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }
 }
/* =========================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================= */ 
   @media (max-width: 768px) {
    :root {
        --header-h: 60px;
    }

    /* Header */ .header-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* Hero */ 
    .hero-slide-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px 60px;
        /*text-align: center;*/
    }

    .hero-image-wrap {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    /* Side Panel — hide on mobile, show as bottom bar */ 
    .side-panel {
        position: fixed;
        right: auto;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        transform: none;
        flex-direction: row;
        border-radius: var(--radius) var(--radius) 0 0;
        z-index: 800;
        justify-content: center;
    }

    .side-panel-item {
        flex: 1;
        max-width: 120px;
        padding: 10px;
        border-bottom: none;
        border-right: 1px solid var(--border);
    }

    .side-panel-item:last-child {
        border-right: none;
    }

    /* Sections */ 
/*    .features-dark-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }*/
    .feature-block {
    /*border-right: none;*/
    /*border-bottom: 1px solid var(--accent-red);*/
    box-shadow: 0px 0px 11px 5px #00000000;
}
.feature-block:last-child {
    /*border-bottom: none;*/
}
.feature-text {
    padding-bottom: 10px;
}

    .section-features {
        padding: 48px 16px;
    }

    .section-categories {
        padding: 48px 0 48px 16px;
    }

    .section-products {
        padding: 48px 16px;
    }

    .section-why {
        padding: 48px 16px;
    }

    .section-reviews {
        padding: 48px 16px;
    }

    .cat-slide {
        height: auto;
        flex-direction: column;
    }

    .cat-slide-img {
        width: 100%;
        height: 180px;
        order: 1;
    }
    .cat-slide-img::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: -30px;
    /*bottom: 0;*/
    width: 100%;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
}

    .cat-slide-content {
        padding: 20px;
        order: 2;
    }

    .prod-slide {
        flex-direction: column;
        height: auto;
    }

    .prod-slide-img {
        width: 100%;
        height: 200px;
        order:1;
    }

    .prod-slide-img::after {
         content: '';
    position: absolute;
    top: 0;
    bottom: -30px;
    /*bottom: 0;*/
    width: 100%;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
    }

    .prod-slide-content {
        padding: 24px;
        order: 2;
    }

    .why-slide {
        flex: 0 0 calc(100% - 0px);
        min-width: 100%;
    }
       .section-blog {
        min-height: 100%;
        padding: 30px 15px;
        align-items: center;
        display: flex;
    }

    .blog-inner {
        /*grid-template-columns: 1fr;*/
        gap: 32px;
    }
   .blog-inner .blog-text {
       display: none; 
     }
   .blog-image {
    width: 65%;
    left: 37%;
    bottom: 0px;
}
    .blog-image img {
        height: 260px;
    }

    .blog-content {
       text-align: left;
        align-items: flex-start;
    }

    .guarantees-inner {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        max-height: 100%;
    }

    .cta-card-img {
        width: 100%;
        height: 220px;
        order: 1;
    }

    .cta-card-img::after {
         content: '';
    position: absolute;
    top: 0;
    bottom: -30px;
    /*bottom: 0;*/
    width: 101%;
    background: linear-gradient(to bottom, transparent, var(--black));
    }

    .cta-card-content {
        padding: 28px 24px;
        order: 2;
    }

    .footer-top {
        /*grid-template-columns: 1fr;
        gap: 32px;*/
        grid-template-columns: 1fr 1fr;
        gap: 19px;
    }
  /*  .footer-top > *:first-child {
        grid-column: 1 / -1; 
    }*/

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

   /* body {
        padding-bottom: 68px;
    }*/
    .btn-tel {
        display: none;
    }
.guarantee-card {
    text-align: center;
}
.mob-social a{
justify-content: center; 
}
.mob-social a{
padding: 10px 10px;  
}
.hero-buttons .btn-red {
   padding: 14px 28px; 
}
.btn_open_list_social:hover {
    background: var(--icon-bg);
}
.section-category-mob {
/*text-align: center;*/
font-size: 32px;
}
.section-cta{
    padding: 0px;
}
.hero-content {
    max-width: 200px;
}
.btn-l_text{
  font-size: 12px;  
}
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .slider-controls {
        flex-wrap: wrap;
        padding-right: 0px;
    }
    .btn-price_card {
width: auto !important;
}

}

