/* =============================================
   Layout – шапка, подвал, сетка, основные блоки
   ============================================= */

   html {
    direction: ltr;
    font-family: 'Roboto', sans-serif;
}

/* Сетка */
.gc-half-row {
    width: 50%;
    float: left;
    margin-left: 0;
    margin-right: 0;
}
.fourth-resp {
    width: 25%;
}
.half-resp {
    width: 50%;
}
.third-resp {
    width: 33.33333%;
}
.full-resp {
    width: 100%;
}

/* Заголовки секций */
.gc-section-title {
    font-size: 2.2rem;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    margin: 50px 0 25px 0;
}
.gc-section-title:after {
    content: "";
    border-bottom: 2px solid #ea722f;
    width: 140px;
    margin: 0 auto;
    display: block;
}

.gc-page-title {
    text-transform: uppercase;
    font-weight: normal;
    margin: 30px 0;
    font-size: 2.4rem;
}

/* Основной контейнер */

.home .gc-main {
    padding-top: 0;
}
.home .gc-breadcrumbs {
    display: none;
}

/* Шапка */

.header-menu.menu .submenu li>a {
    color: #5a5a5a;
}
.gc-header-row {
    align-items: center;
    padding: 0 10px;
}
.gc-header {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    z-index: 10;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.gc-header__search-icon {
    font-size: 23px;
    margin-left: 5px;
}
.gc-header__search-icon:hover {
    cursor: pointer;
}
.gc-header-logo-wrap {
    width: 10% !important;
}
.gc-header-menu-wrap {
    width: 70% !important;
}
.gc-header-search-wrap {
    width: 20% !important;
}
.gc-menu {
    justify-content: space-between;
}
@media screen and (max-width: 75.06125em) {
    .gc-menu {
        font-size: 14px;
    }
}
.header-menu.menu li.current-menu-item > a {
    background: transparent;
    color: #fd7f33;
}
.header-menu.menu li > a:hover {
    background: transparent;
    color: #fd7f33;
}
.dropdown.menu > li > a {
    padding: 0;
    text-transform: uppercase;
    color: #5a5a5a;
}
.title-bar .menu-icon {
    margin-left: 0;
    margin-right: 0;
}
@media screen and (max-width: 75.06125em) {
    .title-bar {
        display: flex;
        line-height: 45px;
        background: transparent;
        position: relative;
        height: 24px;
    }
    .title-bar .menu-icon {
        padding: 0;
        border: none;
        background-color: transparent;
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: 30px;
        height: 24px;
        cursor: pointer;
        position: absolute;
        top: 0;
        right: 0;
    }
    .title-bar .menu-icon span {
        top: 0;
        display: block;
    }
    .title-bar .menu-icon span::before,
    .title-bar .menu-icon span::after {
        content: "";
        display: block;
    }
    .title-bar .menu-icon span,
    .title-bar .menu-icon span::before,
    .title-bar .menu-icon span::after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #ff7b31;
        border-radius: 0;
        -webkit-transition-property: -webkit-transform, opacity;
        transition-property: transform, opacity;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }
    .title-bar .menu-icon span::before {
        top: 10px;
    }
    .title-bar .menu-icon span::after {
        top: 20px;
    }
    .title-bar .menu-icon span:hover,
    .title-bar .menu-icon span:hover::before,
    .title-bar .menu-icon span:hover::after {
        background-color: #ff7b31;
    }
    .title-bar .menu-icon.is-active span {
        transform: translate3d(0, 10px, 0) rotate(45deg);
    }
    .title-bar .menu-icon.is-active span::before {
        transform: rotate(-45deg) translate3d(-4.28571px, -7px, 0);
        display: none;
    }
    .title-bar .menu-icon.is-active span::after {
        transform: translate3d(0, -20px, 0) rotate(-90deg);
    }
}
.header-menu.menu li.current_page_parent > a,
.header-menu.menu .submenu li.current-menu-item > a {
    background: transparent;
}
.gc-logo {
    width: 80%;
}

/* Поиск (overlay) */
#search {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all .5s ease-in-out;
    transform: translate(0, -100%) scale(0, 0);
    opacity: 0;
}
#search.open {
    transform: translate(0, 0) scale(1, 1);
    opacity: 1;
    z-index: 10000;
}
#search .close {
    position: fixed;
    top: 40px;
    right: 15px;
    opacity: 1;
    font-size: 50px;
    width: 40px;
    height: 55px;
    padding: 0;
    background-color: transparent;
}
.search {
    margin-top: 5px;
}
.search__input {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 70px;
    color: #fff;
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    border: 0;
    padding-left: 30px;
    padding-right: 30px;
    outline: 0;
}
.search__input:focus {
    border: none;
    background-color: transparent;
}
.search__submit {
    position: fixed;
    top: 70%;
    height: 50px;
    width: 150px;
    text-transform: uppercase;
    padding: 10px 15px;
    cursor: pointer;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    border: 1px solid #5a5a5a;
    transition: .3s ease-in;
}
.search__submit:hover {
    background-color: rgba(253, 127, 51, 0.6);
}
.gc-search {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gc-search__img img {
    max-height: 280px;
    object-fit: contain;
}
div.asl_w {
    position: fixed;
    top: 50%;
}
div.asl_w .probox .promagnifier {
    background-color: #da773a;
}
.align-center {
    align-items: center;
}
.gc-dropdown {
    height: 30px;
    width: 100px;
    margin-right: 15px;
}
.wpml-ls-legacy-dropdown a {
    background-color: rgba(255, 255, 255, 0.8);
}
.gc-dropdown:hover .gc-dropdown-link {
    visibility: visible;
}
.gc-dropdown-link {
    position: absolute;
    bottom: -227px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100px;
    padding-left: 10px;
    color: #444;
    visibility: hidden;
    border: 1px solid #cdcdcd;
    transition: .3s ease-in;
    z-index: 1;
}
.gc-dropdown-link:hover {
    cursor: pointer;
    background: #eee;
}
.gc-dropdown-link:hover .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
    visibility: visible;
}
.wpml-ls-native,
.wpml-ls-display {
    margin-left: 5px;
}

/* Сайдбар */
@media screen and (max-width: 40.06125em) {
    .header-menu.menu .submenu li.current-menu-item > a { 
        color: #fff;
    }
    .sidebar {
        margin-top: 50px;
    }
}

/* Виджеты */
.widget {
    margin-bottom: 20px;
}
.widget:last-child {
    margin-bottom: 0;
}

/* Футер */
.gc-footer {
    background-color: #f2f2f2;
    padding-top: 50px;
    padding-bottom: 20px;
}
.gc-footer__mnu-title {
    font-size: 1.45rem;
    text-transform: uppercase;
    font-weight: normal;
}
.gc-footer__copy {
    text-align: center;
}
.gc-footer__copy span {
    font-weight: bold;
}
.gc-footer__logo {
    text-align: center;
}
.gc-footer__logo h1 {
    font-size: 40px;
}
.gc-footer__logo .custom-logo {
    max-width: 40%;
    height: 80px;
}
.gc-footer__iso {
    text-align: center;
}
.gc-footer__iso p {
    margin: 0;
}
.gc-footer__right-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.gc-footer-contacts {
    text-align: right;
    width: 55%;
    margin-bottom: 30px;
}
.gc-footer-contacts__title {
    font-size: 1.45rem;
    text-transform: uppercase;
    font-weight: normal;
}
.gc-footer-contacts__title a {
    color: #000;
}
.gc-footer-contacts__mail {
    color: #FD7F33;
}
.gc-footer-contacts__mail:hover,
.gc-footer-contacts__mail:focus {
    color: #000;
}
.gc-footer-contacts p {
    margin: 0;
}
.gc-footer-menu {
    column-count: 2;
    list-style-type: none;
    margin: 0;
}
.gc-footer-menu li a {
    color: #000;
}
.gc-footer-menu li a:hover,
.gc-footer-menu li a:focus {
    color: #FD7F33;
}
.gc-footer-copy-box {
    border-top: 2px solid #b9b9b9;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.gc-footer-sub-form-wrap {
    width: 50%;
}
.gc-footer-sub-form-wrap h3 {
    font-size: 1.2rem;
    text-align: right;
}
.form-submit {
    text-align: center;
    margin-top: 15px;
}
.form-submit input[type='submit'] {
    background-color: transparent;
    border: 1px solid #cccfd8;
}
.catalog_btn {
    background-image: url(../images/pdf_button_catalog.png);
    background-size: contain;
    height: 38px;
    width: 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.5s;
}
.sitemap_btn {
    background-image: url(../images/sitemap-icon.png);
    background-size: contain;
    height: 38px;
    width: 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: 0.5s;
}
.sitemap_btn:hover,
.catalog_btn:hover {
    filter: brightness(1.15);
    transition: 0.5s;
}
.button-wrap {
    display: flex;
    margin-top: 50px;
}
.footer-btns {
    width: 50%;
}
.mailster-_recaptcha-wrapper {
    display: none;
}
.visible {
    display: block;
}
.gc-footer-social-list {
    list-style-type: none;
    display: flex;
}
@media screen and (max-width: 40.06125em) {
    .gc-footer-social-list {
        margin: 0;
        width: 100%;
        justify-content: center;
    }
}
.gc-footer-social-list__item {
    margin-left: 10px;
}
.gc-footer-social-list i {
    font-size: 25px;
    height: 44px;
    width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid;
    border-radius: 50%;
    transition: .3s ease-in;
}
.gc-footer-social-list i.fa-linkedin {
    color: #187fb8;
    border-color: #187fb8;
}
.gc-footer-social-list i.fa-facebook {
    color: #43619c;
    border-color: #43619c;
}
.gc-footer-social-list i.fa-youtube {
    border-color: #e62c2e;
    color: #e62c2e;
}
.gc-footer-social-list i.fa-twitter {
    color: #24a9e6;
    border-color: #24a9e6;
}
.gc-footer-social-list a:hover i.fa-linkedin {
    background-color: #187fb8;
    color: #fff;
}
.gc-footer-social-list a:hover i.fa-facebook {
    background-color: #43619c;
    color: #fff;
}
.gc-footer-social-list a:hover i.fa-youtube {
    background-color: #e62c2e;
    color: #fff;
}
.gc-footer-social-list a:hover i.fa-twitter {
    background-color: #24a9e6;
    color: #fff;
}
@media screen and (max-width: 40.06125em) {
    .gc-footer-social-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
}

/* Google Maps и контакты */
.google-map {
    width: 100%;
}
.map-canvas {
    height: 750px;
}
.gm-style .gm-style-iw-c {
    border-radius: 0px;
    padding: 0;
}
.gm-ui-hover-effect {
    top: 0 !important;
    right: 0 !important;
}
.si-content {
    padding: 15px;
}
.country {
    font-size: 30px;
}
.company-agent {
    font-size: 20px;
}
.company {
    font-size: 25px;
}
.address {
    font-size: 19px;
}
.si-inner ul {
    list-style-type: none;
    margin-left: 0;
}
.si-inner ul li {
    margin-left: 20px;
    margin-top: 5px;
    font-size: 15px;
}
.fa-map-marker-alt {
    position: absolute;
    margin-top: 3px;
}
.fa-phone {
    position: absolute;
    margin-top: 7px;
}
.fa-envelope {
    position: absolute;
    margin-top: 7px;
}
.support-list {
    list-style-type: none;
}
.support-list li {
    position: relative;
}
.support-list li i {
    position: absolute;
    left: -20px;
    top: 4px;
}
.gc-support-page,
.gc-single-post {
    padding-bottom: 50px;
}
.entry-thumbnail {
    display: flex;
    justify-content: center;
}
.entry-thumbnail .wp-post-image {
    max-height: 580px;
    object-fit: contain;
}
.gc-sitemap {
    padding-bottom: 50px;
}
.map-home-list {
    list-style-type: none;
    transition: .3s, ease-in;
    margin-left: 0;
}
.map-home-list li {
    margin-top: 2px;
    text-transform: uppercase;
}
.map-home-list li a {
    color: #5A5A5A;
}
.map-home-list li a:hover,
.map-home-list li a:focus {
    color: #FD7F33;
}
.gc-search-post {
    margin-top: 50px;
}
.gc-search-post__link img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}
.gc-search-post__content {
    width: 70%;
    height: auto;
    text-align: center;
    background: #fff;
    z-index: 2;
    box-shadow: 3px 2px 5px 0px rgba(0, 0, 0, 0.75);
    padding: 15px 30px;
    position: relative;
    float: right;
    margin-top: -80px;
    margin-bottom: 60px;
}

/* Карточки товаров (основной блок) */

.gc-products-page {
    padding: 30px 0 60px;
}
.gc-page-title {
    text-align: center;
    margin-bottom: 1.5rem;
}
.gc-products__category-title {
    font-size: 23px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    margin: 30px 0 10px 0;
}
.gc-products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 25px;
    padding: 0 15px;
    margin-bottom: 30px;
}
.gc-products__card-wrapper {
    flex: 0 0 auto;
    width: 280px;
    max-width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    margin-bottom: 10px;
}
.gc-products__card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.gc-products__card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px 18px;
    height: 100%;
    justify-content: space-between;
}
.gc-products__link {
    display: block;
    width: 100%;
    text-align: center;
    line-height: 0;
}
.gc-products__link img {
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: 0 auto;
}
.gc-products__card-wrapper:hover .gc-products__link img {
    transform: scale(1.03);
}
.gc-products__card-title {
    margin-top: 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    width: 100%;
}
.gc-products__card-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 15px;
}
.gc-products__card-title a:hover {
    color: #fd7f33;
}
@media (max-width: 768px) {
    .gc-products-grid {
        gap: 25px;
        padding: 0 10px;
    }
    .gc-products__card-wrapper {
        width: 100%;
        max-width: 420px;
        margin: 0 auto 20px;
    }
    .gc-products__card-inner {
        padding: 20px 10px 16px;
    }
    .gc-products__link img {
        max-width: 200px;
    }
    .gc-products__card-title {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .gc-products__card-wrapper {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .gc-products__link img {
        max-width: 180px;
    }
}
.gc-products-page .entry-content {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

/* Страница контактов */
.gc-contacts-page {
    background-image: url("../images/contact-page-bg.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: -55px;
    padding-top: 80px;
    padding-bottom: 80px;
}
.gc-contacts-page__title {
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 60px;
}
.gc-contact-wraper {
    background-color: #fff;
    opacity: 0.8;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
    margin-top: 60px;
}
.int-contacts {
    display: flex;
}
.contact-item {
    width: 25%;
    margin: 15px 0;
    padding: 0 30px;
    border-right: 1px solid #ccc;
}
.contact-item h2 strong {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 24px;
}
.contact-item h5 {
    font-size: 16px;
    text-transform: uppercase;
}

/* Слайдер на главной */
.gc-intro-slider {
    box-shadow: 0 1px 10px -10px rgba(0, 0, 0, 0.56), 0 4px 25px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 64.06125em) {
    #home-slider {
        display: none;
    }
}
#home-slider .slick-slide {
    height: 700px;
}
.slick-prev,
.slick-next {
    z-index: 5;
}
.slick-prev:before,
.slick-next:before {
    color: #e97724;
    font-weight: 700;
}
.slick-pause {
    z-index: 3;
    position: absolute;
    right: 5px;
    padding: 7px 9px;
    top: 120px;
    opacity: 0.2;
    transition: 1s;
    background-color: #fff;
}
.slick-pause .pause:after {
    content: "\f04b";
    font-family: "FontAwesome";
    font-size: 15px;
    color: #676767;
}
.slick-pause:after {
    content: "\f04c";
    font-family: "FontAwesome";
    font-size: 14px;
    color: #676767;
}
#home-slider .slider-caption {
    right: 25%;
    width: 40%;
}
.slider-caption {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    width: 50%;
    right: 30%;
}
.slider-caption h3 {
    color: #5a5a5a;
    text-transform: uppercase;
}
#home-slider .slick-slide__inner .bg-cover {
    background-size: contain;
}

/* Галлерея */
.gc-gallery-page {
    padding-bottom: 60px;
}
.full-img {
    width: 100%;
}
.half-img {
    width: 50%;
}
.third-img {
    width: 33.33333%;
}
.fourth-img {
    width: 25%;
}
.five-img {
    width: 20%;
}
.six-img {
    width: 33.33333%;
}
.seven-img {
    width: 50%;
}
.seven-img:nth-child(5) {
    width: 33%;
}
.seven-img:nth-child(6) {
    width: 33%;
}
.seven-img:nth-child(7) {
    width: 33%;
}
.eight-img {
    width: 25%;
}
.gc-gallery {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.gc-gallery-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.gc-gallery-link {
    text-align: center;
    padding: 5px;
}
@media screen and (max-width: 64.06125em) {
    .eight-img {
        width: 33.33333%;
    }
}
@media screen and (max-width: 40.06125em) {
    .eight-img {
        width: 50%;
    }
    .gc-gallery-img {
        height: 150px;
        width: 300px;
    }
}

/* Страница 404 */
.error404 .gc-footer {
    display: none;
}
.error404 .gc-header {
    display: none;
}
.error404 .gc-breadcrumbs {
    display: none;
}
.error404 .gc-main {
    padding-top: 0;
}
.error404 .gc-main {
    font-family: 'Gamja Flower', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    margin: 0px;
    flex-direction: column;
}
.error404 p {
    font-family: 'Comfortaa', cursive;
    font-size: 30px;
    text-align: center;
}
.error404 a {
    color: red;
    text-decoration: none;
}
.gc-404 {
    margin-top: 25vh;
}
.gc-404-wrap h4 {
    font-size: 1rem;
}
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
    display: none;
}
.not-found {
    background-color: black;
    color: white;
    padding: 15px;
    padding-left: 30px;
    padding-right: 30px;
}
.tipsiz {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    flex-direction: column;
}
.tipsiz-body {
    display: flex;
    align-items: center;
    margin: 10px;
}
.arm {
    align-self: flex-end;
    width: 50px;
    height: 90px;
    border-top: 3px solid black;
}
.left-arm {
    border-right: 3px solid black;
    transform: skew(20deg);
}
.right-arm {
    border-left: 3px solid black;
    transform: skew(-20deg);
}
.face {
    width: 300px;
    height: 200px;
    border: 3px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 15px;
}
.upper-face {
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 80px;
    margin-left: 80px;
}
.element {
    font-size: 60px;
}
.mouth {
    width: 20px;
    height: 10px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border: 3px solid black;
    border-bottom: 0;
}

/* WooCommerce */
.woocommerce-product-gallery__image a img {
    max-height: 600px;
    object-fit: contain;
}
.woocommerce-product-gallery .flex-control-nav {
    margin: 0;
    padding: 0;
    display: flex;
    list-style-type: none;
}
ul.payment_methods {
    position: relative;
}
ul.payment_methods .gc-payment-img {
    position: absolute;
    width: 150px;
    right: 15px;
}
.single-product .ezfc-price-wrapper-element {
    width: calc(50% - 1.613rem);
    right: 1%;
}


  .gc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 20px;
}

/* CARD */
.gc-grid-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  text-align: center;

  border: 1px solid #f1e7e2;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 340px;

  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* ORANGE TOP LINE (NO GRADIENT) */
.gc-grid-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #ea722f;
}

/* HOVER */
.gc-grid-item:hover {
  transform: translateY(-6px);
  border-color: #ea722f;
  box-shadow: 0 12px 26px rgba(234, 114, 47, 0.18);
}

/* TITLE */
.gc-item-title {
  font-size: 15px;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 14px;
  line-height: 1.4;
}

/* IMAGE */
.gc-item-image {
  display: block;
  margin-bottom: 14px;
}

.gc-item-image img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.gc-grid-item:hover .gc-item-image img {
  transform: scale(1.04);
}

/* LINK */
.gc-item-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.gc-item-link:hover {
  opacity: 0.75;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gc-grid {
    grid-template-columns: 1fr;
  }
}



/* SEARCH */
.gc-search-submit {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #333;
    font-size: 16px;
    padding: 0 12px;
}

.search-wrapp.all-tester {
    display: flex;
    align-items: center;
}

.search-inp.tester {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 42px 10px 60px;
    font-size: 15px;
}

.gc-search-page {
    background: #fff;
}

.gc-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.gc-search-hero {
    padding: 70px 0 45px;
    text-align: center;
    background: #fff;
}

.gc-search-hero h1 {
    font-size: 34px;
    font-weight: 400;
    color: #333;
    margin: 0;
}

.gc-search-hero span {
    color: #ff6b1a;
}

.gc-search-content {
    padding: 25px 0 70px;
}

.gc-search-results {
    display: grid;
    gap: 26px;
}

.gc-search-item {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 26px;
    box-shadow: 0 8px 26px rgba(0,0,0,0.07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.gc-search-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.11);
}

.gc-search-thumb {
    display: block;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.gc-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gc-search-no-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5, #fff);
    color: #ff6b1a;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gc-search-text h2 {
    margin: 0 0 14px;
    font-size: 25px;
    font-weight: 400;
}

.gc-search-text h2 a {
    color: #222;
    text-decoration: none;
}

.gc-search-text h2 a:hover {
    color: #ff6b1a;
}

.gc-search-excerpt {
    color: #555;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 22px;
}

.gc-search-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #ff6b1a;
    color: #fff !important;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(255,107,26,0.28);
    transition: all .25s ease;
}

.gc-search-read-more:hover {
    background: #e85d10;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255,107,26,0.35);
}

.gc-search-pagination {
    margin-top: 40px;
    text-align: center;
}

.gc-search-pagination .page-numbers {
    display: inline-block;
    padding: 8px 13px;
    margin: 0 3px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

.gc-search-pagination .current,
.gc-search-pagination .page-numbers:hover {
    background: #ff6b1a;
    color: #fff;
}

.gc-search-empty {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 6px;
}

.gc-search-form-large {
    display: flex;
    max-width: 520px;
    margin: 25px auto 0;
}

.gc-search-form-large input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.gc-search-form-large button {
    padding: 12px 25px;
    border: none;
    background: #ff6b1a;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gc-search-item {
        grid-template-columns: 1fr;
    }

    .gc-search-thumb {
        height: 220px;
    }
}