/* ===== HERO NEW CLEAN ===== */

.header-block-new {
    position: relative;
    padding: 120px 0;
    background: url('../img/Foto_Hero.webp') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

/* overlay (менш темний ніж був) */
.header-block-new::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.header-inner {
    position: relative;
    z-index: 2;
}

/* TITLE */

.header-inner h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* SUBTITLE */

.subtitle {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
}

/* QUIZ BLOCK (світлий, але з акцентом) */

.quiz-highlight {
    position: relative;
    padding: 28px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
    overflow: hidden;

    /* фон */
    background: linear-gradient(135deg, #ffffff, #f4f4f4);

    /* акцент */
    border-left: 4px solid #f9b203;

    /* глибина */
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* subtle патерн (преміум фішка) */
.quiz-highlight::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(249,178,3,0.15), transparent 40%);
    pointer-events: none;
}

/* текст */
.quiz-highlight-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

/* список */
.quiz-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quiz-benefits li {
    font-size: 15px;
    margin-bottom: 6px;
    color: #444;
}

/* MAIN BUTTON */

.main-cta {
    display: inline-block;
    background: #f9b203;
    color: #000;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.main-cta:hover {
    background: #ffcc33;
}



.quiz-box {
    position: relative;
    padding: 35px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

/* жовтий акцент */
.quiz-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #f9b203;
}

/* декоративний патерн */
.quiz-box::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(249,178,3,0.08);
    border-radius: 50%;
}

.quiz-box .header-block-cover__meta {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}

/* текст */
.quiz-title {
    color: #fff;
}

.quiz-title span {
    color: #f9b203;
}

.quiz-text {
    color: #ccc;
    margin-bottom: 20px;
}

/* кнопка */
.quiz-box-btn {
    background: #f9b203;
    color: #000;
    font-weight: bold;
}

.quiz-box-btn:hover {
    background: #ffcc33;
}

/* ===== HEADER V2 ===== */

.gb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* TOP */

.gb-header-top {
    border-bottom: 1px solid #eee;
}

.gb-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* LOGO */

.gb-logo img {
    height: 40px;
}

/* RIGHT */

.gb-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* PHONES */

.gb-phones {
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.gb-phones a {
    color: #111;
    text-decoration: none;
}

/* BUTTON */

.gb-call-btn {
    background: #f9b203;
    color: #000;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}
.gb-call-btn:hover {
    background: #ffcc33;
}

/* MENU */

.gb-header-menu {
    background: #fff;
}

.gb-header-menu ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
}

.gb-header-menu a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    transition: 0.3s;
}

.gb-header-menu a:hover {
    color: #f9b203;
}

/* MOBILE */

.gb-mobile-actions {
    display: none;
}
.gb-mobile-actions a {
    text-decoration: none;
}

.gb-burger {
    width: 24px;
    cursor: pointer;
}

.gb-burger span {
    display: block;
    height: 3px;
    background: #000;
    margin: 4px 0;
}

/* MOBILE MENU */

/* ===== MOBILE MENU ===== */

.gb-mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.gb-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.gb-mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 86%;
    max-width: 360px;
    height: 100%;
    background: #fff;
    padding: 22px 20px 30px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.3s;
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
}

.gb-mobile-menu.active .gb-mobile-menu__panel {
    transform: translateX(0);
}

/* HEAD */

.gb-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ececec;
}

.gb-mobile-menu__logo img {
    height: 36px;
}

/* CLOSE */

.gb-mobile-menu__close {
    position: relative;
    width: 34px;
    height: 34px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.gb-mobile-menu__close span {
    position: absolute;
    top: 16px;
    left: 7px;
    width: 20px;
    height: 2px;
    background: #111;
}

.gb-mobile-menu__close span:first-child {
    transform: rotate(45deg);
}

.gb-mobile-menu__close span:last-child {
    transform: rotate(-45deg);
}

/* BLOCKS */

.gb-mobile-menu__block {
    padding: 18px 0;
    border-bottom: 1px solid #f1f1f1;
}

.gb-mobile-menu__block:last-child {
    border-bottom: none;
}

.gb-mobile-menu__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 14px;
}

/* NAV */

.gb-mobile-menu__nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gb-mobile-menu__nav li {
    margin-bottom: 14px;
}

.gb-mobile-menu__nav li:last-child {
    margin-bottom: 0;
}

.gb-mobile-menu__nav a {
    text-decoration: none;
    color: #111;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
}

.gb-mobile-menu__nav a:hover {
    color: #f9b203;
}

/* PHONES */

.gb-mobile-menu__phones a {
    display: block;
    text-decoration: none;
    color: #111;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.gb-mobile-menu__phones a:last-child {
    margin-bottom: 0;
}

.gb-mobile-menu__phones a:hover {
    color: #f9b203;
}

/* CTA */

.gb-mobile-menu__cta {
    display: block;
    width: 85%;
    text-align: center;
    background: #f9b203;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 18px;
    border-radius: 6px;
    transition: 0.3s;
}

.gb-mobile-menu__cta:hover {
    background: #ffcc33;
}
/* OFFSET */

body {
    padding-top: 110px;
}
body.gb-menu-open {
    overflow: hidden;
}


/* ===== PRODUCTS NEW ===== */

/* ===== PRODUCTS GRID ===== */

.gb-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* CARD */

.gb-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.gb-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* IMAGE */

.gb-product-image {
    position: relative;
    overflow: hidden;
}

.gb-product-image img {
    width: 100%;
    height: 100%;
    transition: 0.4s;
    max-height: 230px;
    object-fit: contain;
}

.gb-product-card:hover img {
    transform: scale(1.05);
}

/* BADGE */

.gb-badge {
    display: none;
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f9b203;
    color: #000;
    font-weight: bold;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 4px;
}

/* BODY */

.gb-product-body {
    padding: 15px;
}

/* TITLE */

.gb-product-title {
    font-size: 16px;
    font-weight: 700;
}

/* DESC */

.gb-product-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

/* PRICES */

.gb-product-prices {
    margin-bottom: 10px;
}

.gb-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.gb-new {
    font-size: 18px;
    font-weight: bold;
    color: #dc2323;
}

/* BUTTON */

.gb-product-btn {
    display: block;
    text-align: center;
    background: #f9b203;
    color: #000;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
    cursor: pointer;
    width: 100%;
}

.gb-product-btn:hover {
    background: #ffcc33;
}
/* планшет */


/* ===== FOOTER ===== */

/* ===== LIGHT FOOTER ===== */

.gb-footer {
    background: #f8f8f8;
    color: #111;
}

/* MAIN */

.gb-footer-main {
    padding: 60px 0;
    background: url(../img/question-bg.jpg) repeat;
}
.gb-footer-map {
    display: flex;
    width: 100%;
}
/* HEADING */

.gb-footer-heading {

    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #111;
}

.gb-footer-heading::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #f9b203;
    margin: 12px auto 0;
}

/* GRID */

.gb-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* TITLES */

.gb-footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* TEXT */

.gb-footer-col p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* PHONES */

.gb-footer-phones a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    margin-bottom: 8px;
}

.gb-footer-phones a:hover {
    color: #f9b203;
}

/* BUTTON */

.gb-footer-btn {
    display: inline-block;
    margin-top: 15px;
    background: #f9b203;
    color: #000;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.gb-footer-btn:hover {
    background: #ffcc33;
}

/* EMAIL */

.gb-footer-email {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* MAP */

.gb-footer-map iframe {
    width: 100%;
    border: none;
}

/* BOTTOM */

.gb-footer-bottom {
    background: #fff;
    padding: 20px 0;
}

/* ROW */

.gb-footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LINKS */

.gb-footer-links a {
    color: #666;
    margin-right: 15px;
    text-decoration: none;
    font-size: 14px;
}

.gb-footer-links a:hover {
    color: #111;
}

/* ===== CTA BEFORE FOOTER ===== */

.gb-footer-cta {
    background: #111;
    padding: 40px 0;
    color: #fff;
}

.gb-footer-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TEXT */

.gb-footer-cta-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gb-footer-cta-sub {
    font-size: 16px;
    color: #ccc;
}

/* BUTTON */

.gb-footer-cta-btn {
    background: #f9b203;
    color: #000;
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.gb-footer-cta-btn:hover {
    background: #ffcc33;
}
/* SOCIAL */

.gb-footer-social {
    display: flex;
    gap: 12px;
}

.gb-social {
    padding: 6px 12px;
    background: #eee;
    border-radius: 4px;
    text-decoration: none;
    color: #111;
    font-size: 13px;
    transition: 0.3s;
}

.gb-social:hover {
    background: #f9b203;
    color: #000;
}

/* ===== REPLACE FORM ===== */

.gb-form-replace {
    margin-top: 75px;
}

/* TEXT */

.gb-form-text {
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 15px;
}

.gb-form-text span {
    color: #f9b203;
    font-weight: bold;
}

/* LIST */

.gb-form-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.gb-form-benefits li {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 6px;
}

/* BUTTON */

.gb-form-btn {
    display: inline-block;
    width: 274px;
    background: #f9b203;
    color: #000;
    padding: 14px;
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.gb-form-btn:hover {
    background: #ffcc33;
}

/* NOTE */

.gb-form-note {
    margin-top: 10px;
    font-size: 14px;
    color: #aaa;
}


/* MODAL BACKDROP */
.gbx-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

/* ACTIVE */
.gbx-modal.gbx-active {
    display: flex;
}

/* DIALOG */
.gbx-modal__dialog {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    position: relative;
    animation: gbxModalIn .25s ease;
}

/* ANIMATION */
@keyframes gbxModalIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* CLOSE */
.gbx-modal__close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 34px;
    height: 34px;
    border: none;
    background: #f2f2f2;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

/* TITLE */
.gbx-modal__title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

/* PRODUCT BLOCK */
.gbx-modal__product {
    display: flex;
    gap: 12px;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.gbx-modal__product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.gbx-modal__product-title {
    font-weight: 600;
    font-size: 15px;
}

.gbx-modal__product-desc {
    font-size: 13px;
    color: #777;
}

/* FORM */
.gbx-modal__form {
    display: flex;
    flex-direction: column;
}

.gbx-modal__form label {
    font-size: 14px;
    margin-bottom: 6px;
    margin-top: 20px;
    display: block;
}

.gbx-modal__form input {
    height: 42px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    outline: none;
    width: 100%;
    margin: 0;
}
.gbx-modal__form input.phone {
    background: transparent;
}

.gbx-modal__form input:focus {
    border-color: #f4b400;
}

/* BUTTON */
.gbx-modal__form button {
    margin-top: 20px;
    height: 46px;
    background: #f4b400;
    border: none;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
}

/* PRELOADER */
.gbx-preloader {
    position: fixed;
    inset: 0;
    background: #111;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}

.gbx-preloader.gbx-hide {
    opacity: 0;
    visibility: hidden;
}

/* INNER */
.gbx-preloader__inner {
    text-align: center;
}

/* LOADER */
.gbx-loader-ring {
    width: 70px;
    height: 70px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top: 4px solid #f4b400;
    border-radius: 50%;
    animation: gbxSpin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes gbxSpin {
    to {
        transform: rotate(360deg);
    }
}

/* TEXT */
.gbx-preloader__text {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.5px;
    opacity: 0.8;
    animation: gbxFade 1.5s ease-in-out infinite;
}

@keyframes gbxFade {
    0%,100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.gbx-modal__success {
    text-align: center;
    padding: 30px 10px;
    font-size: 16px;
    line-height: 1.6;
}



.gb-reviews {
    padding: 80px 0;
    background: #f9f9f9;
}

.gb-reviews__title {
    text-align: center;
    font-size: 55px;
    margin-bottom: 20px;
    margin-top: 0;
}

.gb-reviews__title span {
    color: #f4b400;
}

.gb-reviews__subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
}

/* GRID */
.gb-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.gb-review {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: .3s;
}

.gb-review:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* IMAGE */
.gb-review__image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* STARS */
.gb-review__stars {
    color: #f4b400;
    padding: 15px 20px 5px;
    font-size: 14px;
}

/* TEXT */
.gb-review__text {
    padding: 0 20px 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* NAME */
.gb-review__name {
    padding: 0 20px;
    font-weight: 600;
}

/* DESC */
.gb-review__desc {
    padding: 0 20px 20px;
    font-size: 13px;
    color: #888;
}


.gb-models {
    padding: 40px 0;
}

/* GRID */
.gb-models__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.gb-model {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: .3s;
}

.gb-model:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* IMAGE */
.gb-model__image {
    position: relative;
}

.gb-model__image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* BADGE */


/* FAVORITE */
.gb-model__fav {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* BODY */
.gb-model__body {
    padding: 15px;
}

/* TEXT */
.gb-model__meta {
    font-size: 14px;
    color: #444;
    margin-bottom: 4px;
}

/* PRICE + BUTTON */
.gb-model__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 12px;
}

/* PRICE */
.gb-model__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.gb-model__price .top_price {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gb-model__badge {
    position: relative;
    background: #e74c3c;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
}
.gb-model__old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.gb-model__new {
    font-size: 21px;
    font-family: FiraSans-SemiBold;
    color: #e74c3c;
}

.gb-model__new span {
    font-size: 12px;
}

/* BUTTON */
.gb-model__btn {
    background: #f4b400;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 6px;
    transition: .2s;
    font-size: 16px;
}
.gb-model__btn svg {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gb-model__btn .desktop {
    display: block;
}
.gb-model__btn .mobile {
    display: none;
}

.gb-model__btn:hover {
    background: #e0a800;
}

.gb-brands {
    padding: 40px 0;
}

/* GRID */
.gb-brands__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

/* CARD */
.gb-brand {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;

    border: 1px solid #eee;
    transition: .3s;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gb-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* LOGO */
.gb-brand .brand_logo {
    margin-bottom: 10px;
    width: 100%;
    height: 100px;
}
.gb-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* FLAG */
.gb-brand__flag {
    font-size: 16px;
    opacity: 0.8;
}

/* WRAPPER */
.gb-form {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* TEXT */
.gb-form p {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
}

/* INPUTS */
.gb-form input,
.gb-form textarea {
    width: 100%;
    height: 44px;
    padding: 12px 14px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-size: 14px;
    outline: none;

    margin-bottom: 12px;
    transition: .2s;
}

/* textarea */
.gb-form textarea {
    height: 100px;
    resize: none;
}

/* focus */
.gb-form input:focus,
.gb-form textarea:focus {
    border-color: #f4b400;
    box-shadow: 0 0 0 2px rgba(244,180,0,0.2);
}

/* BUTTON */
.gb-form .btn-green {
    height: 48px;
    background: #f4b400;
    border: none;
    border-radius: 8px;

    font-weight: 600;
    cursor: pointer;

    transition: .2s;
}

.gb-form .btn-green:hover {
    background: #e0a800;
}

/* SUCCESS */
#form-thanks {
    text-align: center;
    padding: 30px;
}

#form-thanks .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gb-form-success {
    text-align: center;
    padding: 30px 15px;
}

.gb-success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;

    background: #f4b400;
    color: #111;

    border-radius: 50%;

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

    font-size: 28px;
    font-weight: bold;
}

.gb-success-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gb-success-text {
    font-size: 14px;
    color: #666;
}

/* планшет */
@media (max-width: 992px) {
    .gb-brands__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* телефон */
@media (max-width: 600px) {
    .gb-brands__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* TABLET */
@media (max-width: 992px) {
    .gb-models__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .gb-model__image img {
        height: 140px;
    }
    .gb-model__price .top_price {
        gap: 6px;
    }
    .gb-model__btn {
        padding: 8px 8px;
    }
    .gb-model__badge {
        padding: 4px;
    }
    .gb-model__new {
        font-size: 18px;
    }
    .gb-models__grid {
        gap: 10px;
        padding: 0 10px;
    }
    .gb-model__btn .desktop {
        display: none;
    }
    .gb-model__btn .mobile {
        display: block;
    }
}
@media (max-width: 992px) {
    .gb-reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gb-reviews__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .gb-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* мобілка */
@media (max-width: 768px) {
    .header-block.bg-center-two {
        height: auto;
        background-size: cover;
        padding-top: 28px;
        box-sizing: border-box;
        padding-bottom: 10px;
    }
    .documentation .step .item {
        width: 44%;
    }
    .documentation .step {
        justify-content: center;
        flex-wrap: wrap;
    }
    .gb-footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gb-footer-bottom-row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .gb-header-top {
        padding: 0 16px;
        box-sizing: border-box;
    }
    .gb-logo img {
        height: auto;
        max-width: 50%;
    }
    .gb-phones,
    .gb-call-btn,
    .gb-header-menu {
        display: none;
    }

    .gb-mobile-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    body {
        padding-top: 70px;
    }

    .header-block-new {
        padding: 80px 0;
    }

    .header-inner h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .quiz-highlight {
        padding: 20px;
    }

    .quiz-highlight-text {
        font-size: 16px;
    }

    .main-cta {
        width: 100%;
        padding: 18px 0;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .gb-footer-main {
        padding: 60px 10px;
    }
    .gb-reviews__title {
        font-size: 26px;
    }
    .gb-reviews {
        padding: 60px 10px;
    }
    .ceramic-tile .wrapper_ceramic-tile {
        gap: 20px;
        padding: 0 10px;
    }
    .gb-products {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 10px;
        gap: 10px;
    }
    .header-right {
        width: 92%;
        margin: 0 auto;
    }
    .gb-product-image img {
        max-height: 170px;
    }
    .gb-footer-cta-inner {
        flex-direction: column;
        gap: 20px;
    }
    .form-selection .pull-right {
        margin: 0 auto;
    }
    .documentation .step .item {
        width: 100%;
    }
}