* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: unset;
    color: black;
}
li {
    list-style: none !important;
}
:root{
    --accent: #ff5e00;
    --accent-dark: #d94f00;
    --bg-primary: #0F1115;
    --bg-secondary: #161A20;
    --bg-tertiary: #1C2230;
    --accent-primary: #FF7A00;
    --accent-primary-hover: #E56F00;
    --accent-secondary: #2F80ED;
    --text-heading: #FFFFFF;
    --text-primary: #E6E8EC;
    --text-secondary: #A8AFBC;
    --text-muted: #7D8596;
    --overlay-dark: rgba(15, 17, 21, 0.85);
    --glass-bg: rgba(22, 26, 32, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --bg: #e74c3c;
}
body {
    font-family: Arial, Helvetica, sans-serif;
}

/* Ð’ÐµÑ€Ñ…Ð½ÑÑ Ñ‚Ð¾Ð½ÐºÐ°Ñ Ð¿Ð¾Ð»Ð¾ÑÐºÐ° */
.top-bar {
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    padding: 8px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}
main{
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;

}

.top-bar-left {
    display: flex;
    gap: 20px;
}
.top-bar .container{
    display: flex;
    justify-content: space-between;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    cursor: pointer;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .4s;
}

.social-icons a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
}

/* ÐžÑÐ½Ð¾Ð²Ð½Ð¾Ð¹ Ñ…ÐµÐ´ÐµÑ€ Ñ Ð»Ð¾Ð³Ð¾Ñ‚Ð¸Ð¿Ð¾Ð¼ Ð¸ Ð¼ÐµÐ½ÑŽ */
.main-header {
    background-color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    position: relative;
    z-index: 100;
}
.header-modal .modal-mw{
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    overflow: scroll;
}
.header-modal .modal-mw ul{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.mdm-header{
    display: none;
}
.header-modal .modal-mw ul a{
    font-size: 24px;
    color: white;
}
.header-modal .modal-mw .container{
    overflow-y: scroll;
    height: 100%;
    flex-direction: column;
    padding: 110px 24px;
    background: #111;
}
.header-modal .footer-end{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}
.header-modal .footer-end span{
    text-align: start;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}
.header-modal .footer-end a{
    font-size: 32px;
    background: linear-gradient(90deg, #ffffff, #ffaa70, var(--bg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 1rem;
}
.header-modal .footer-end p{
    color: white;
}
.main-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: var(--bg);
    text-decoration: none;
}
.logo img{
    width: 60px;
}
.is-active{
    color: var(--bg); border-bottom: 2px solid var(--bg); padding-bottom: 4px;
}
.logo i {
    font-size: 36px;
    margin-right: 8px;
    color: var(--bg);
}

.logo span {
    color: #222;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s;
}

nav a:hover {
    color: var(--bg);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    padding: 12px 16px;
    display: block;
    white-space: nowrap;
}
nav li{
    margin: auto;
}
/* ÐšÐ½Ð¾Ð¿ÐºÐ° Get a Quote */
.quote-btn {
    background-color: var(--bg);
    color: white !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.quote-btn:hover {
    background-color: var(--bg);
}

.quote-btn .arrow {
    font-weight: bold;
}
.se-prod{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 20px;
    background: #222;
    border-radius: 24px;
    margin-top: 20px;
}
.box-product{
    height: 400px;
    width: 100%;
    border-radius: 20px;
    background-color: white;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: end;
    flex-direction: column;
}
h3{
    font-size: 42px;
}
.se-prod .info{
    padding: 20px;
    background: #d4e2e7cf;
    margin: 18px;
    border-radius: 8px;
    backdrop-filter: blur(3px);
}


.navigate-footer{
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
}
.navigate-footer p.footer-company{
    max-width: 402px;
    font-size: 19px;
    color: white;
}
.li-footer{
    display: flex;
    gap: 8rem;
}
footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 30px;
    font-size: 15px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.25s;
}

.footer-column a:hover {
    color: #ff6b00; /* Ð¾Ñ€Ð°Ð½Ð¶ÐµÐ²Ñ‹Ð¹ Ð°ÐºÑ†ÐµÐ½Ñ‚, ÐºÐ°Ðº Ð² Ñ…ÐµÐ´ÐµÑ€Ðµ */
}

/* ÐšÐ¾Ð½Ñ‚Ð°ÐºÑ‚Ñ‹ */
.contact-item {
    display: flex;
    /* align-items: flex-start; */
    gap: 10px;
}

.contact-item span {
    color: #ff6b00;
    font-size: 18px;
}

/* ÐÐ¸Ð¶Ð½ÑÑ Ñ‡Ð°ÑÑ‚ÑŒ */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: white;
}

/* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð² */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
.stat{
    min-height: 500px;
    background-image: url("../../images/image.jpg");
    background-position: center;
    background-size: cover;
}


.welcome {
    text-align: start;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: var(--bg);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: start;
}

.hero-subtitle {
    text-align: start;
    font-size: 1.25rem;
    max-width: 780px;
    /* margin-bottom: 2rem; */
    line-height: 1.6;
    opacity: 0.95;
}

.cta-button {
    display: block;
    width: max-content;
    align-items: center;
    background-color: var(--bg);
    color: white;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,107,0,0.35);
}

.cta-button:hover {
    background-color: #e55a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,0,0.45);
}

.cta-button .arrow {
    margin-left: 12px;
    font-size: 1.3rem;
}

/* Stats bar */
.stats {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    font-size: 1.1rem;
    z-index: 2;
}

.stat-item {
    text-align: center;
    width: 191px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff6b00;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Carousel indicators (bottom right small box) */
.carousel-box {
    position: absolute;
    bottom: 60px;
    right: 60px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 20px 28px;
    width: 320px;
    color: white;
    z-index: 2;
}

.carousel-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.carousel-progress {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.85;
}

.carousel-desc {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.carousel-input {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-input input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.carousel-input button {
    background: #ff6b00;
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-input button:hover {
    background: #e55a00;
}

/* Slider arrows (bottom center) */
.slider-arrows {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 2;
}

.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.arrow-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .stats { gap: 40px; flex-wrap: wrap; justify-content: center; }
    .carousel-box { width: 90%; right: auto; left: 50%; transform: translateX(-50%); bottom: 180px; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .stats { gap: 30px; }
    .stat-number { font-size: 2.2rem; }
}

.about-company {
    padding: 120px 0;
}
.about-image{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 1rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.about-text h2 span {
    color: var(--bg);
}

.slogan {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 32px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    /* color: #555; */
    margin-bottom: 20px;
}

.highlights {
    list-style: none;
    margin: 32px 0;
}

.highlights li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    /* color: #444; */
}

.highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bg);
    font-weight: bold;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--bg);
    color: white;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.btn-primary:hover {
    background: #c43e00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230,81,0,0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    object-fit: cover;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s
    ease;
    opacity: 0;
    transform: translateY(60px);
}
.stat-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--bg);
    margin-bottom: 16px;
}


.products-hero {
    padding: 140px 5% 80px;
    text-align: center;
    background: linear-gradient(135deg, #0a0c12 0%, #11151f 100%);
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,94,0,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #ff5e00, #ff8a3d, #ff5e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 6s linear infinite;
    margin-bottom: 1.2rem;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 80px;
}



.product {
    display: flex;
    flex-direction: row-reverse;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: center;
    /*margin-bottom: 64px;*/
    position: relative;
}





.product-visual {
    position: relative;
    border-radius: 24px;
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px var(--border);
    backdrop-filter: blur(4px);
    transition: all 0.8s cubic-bezier(0.23,1,0.32,1);
}

.product:hover .product-visual {
    transform: scale(1.04) translateY(-20px);
}

.product-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.23,1,0.32,1);
}


.prod-img{
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.product-content {
    padding: 40px 0;
}

.product-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--bg);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.product-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.8rem;
    background: linear-gradient(90deg, #000000, #ffaa70, var(--bg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-text {
    font-size: 1.18rem;
    /* color: var(--text-muted); */
    max-width: 580px;
    margin-bottom: 2.5rem;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: linear-gradient(135deg, var(--bg), var(--accent-dark));
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 22px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
    box-shadow: 0 10px 30px rgba(255,94,0,0.25);
    /* text-align: center; */
    justify-content: center;
}

.btn-premium:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255,94,0,0.4);
    background: linear-gradient(135deg, var(--bg), #ff5e00);
}

.btn-premium::after {
    content: '→';
    font-size: 1.4rem;
    transition: transform 0.4s;
}

.btn-premium:hover::after {
    transform: translateX(8px);
}
/*modals*/
.modal-wrapper-mw {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform .3s ease, background .3s ease;
    backdrop-filter: blur(24px);
    z-index: 999999999;
}
.modal-wrapper-mw.small-wh{
    display: block;

}
.modal-wrapper-mw.small-wh .modal-mw{

    border-radius: 12px 0 0 12px;
    width: 50% !important;
    position: inherit;
    right: 0;
    left: initial;
    bottom: 0;
    top: 0;
}
.modal-mw {
    opacity: 0;
    transform: translateY(20%);
    transition: opacity .3s ease, transform .3s ease;
    background-color: white;
    display: flex;
    flex-direction: column;
    max-width: 87%;
    padding: 12px 24px;
    border-radius: 24px;
    --gradient-angle: 0deg;
    animation: rotate-gradient 5s infinite linear;
}
.modal-mw .container {
    padding: 32px;
}
.mw-form input::placeholder{
    color: #767676;
}
.modal-wrapper-mw button {
    padding: .75rem 1.8rem;
    border-radius: 1.5rem;
    color: #000;
    background: #fff;
    font-size: 18px;
    line-height: 1.75rem;
    width: 100%;
    border: 2px solid #767676;
    cursor: pointer;
    transition: 1.5s all;
}
.modal-wrapper-mw button:disabled {
    opacity: .4;
    cursor: not-allowed;
}
.mw-form input.clbk__input_checked {
    border: 2px solid #66ef61;
    color: #66ef61;
}
.mw-send-open-sck {
    display: flex;
    margin-top: 30px;
    gap: 20px;
    align-items: center;
}
.modal-mw .mw-send-open-sck > div,.modal-mw .mw-send-open-sck > div > a {
    font-size: 12px!important;
    color: black;
    font-weight: 700!important;
    text-align: center;
    text-decoration: none;
}
.modal-mw span{
    font-family: 'ByBasGL', sans-serif;
    color: black;
    margin-bottom: 1.8rem;
    font-size: 25px;
    display: block;
    text-align: center;
}
.m-na-name, span.mw-sp-00 {
    /* display: flex; */
    /* align-items: center; */
    /* color: #fff; */
    /* font-weight: 550; */
}
.close-modal-mw {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000 !important;
    border: solid 1px #404040;
}
.mwS-close{
    position: absolute;
    right: 10px;
    top: 10px;
}
.mw-form input,.mw-form textarea {
    padding: .75rem 1.8rem;
    border: 2px solid #767676;
    border-radius: 1.5rem;
    color: black;
    font-size: 18px;
    line-height: 1.75rem;
    width: 100%;
    transition: .5s all;
}
.mw-form textarea::placeholder{
    color: white;
}
.mw-form form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
}
/*search-header*/
#modal-wrapper-search .modal-mw{
    background-color: #0000009e;
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 0;
    padding-top: 2rem;
}
.suggestion-image img{
    width: 20px;
    height: 20px;
}
#modal-wrapper-search input{
    border: none;
    margin: 1rem 0;
    background-color: rgb(53 53 53 / 73%);
    color: #ffffff;
    background-position: 19px;
    background-repeat: no-repeat;
    background-size: auto;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    padding: 12px 12px 12px 47px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1em;
    transition: color .35s, border-color .35s;
}
#modal-wrapper-search input::placeholder{
    color: white;
}
#modal-wrapper-search button{
    display: none;
}
#modal-wrapper-search #search-suggestions{
    background: rgb(53 53 53 / 73%);
    border-radius: 12px;
    padding: 20px;
    transition: 1s;
    height: 100%;
    max-height: 440px;
    min-height: 440px;
    position: relative;
    overflow: hidden;
}
#modal-wrapper-search #search-suggestions .suggestion-item{
    cursor: pointer;
    padding: .8rem 0;
    border-bottom: 1px solid white;
}
#modal-wrapper-search #search-suggestions .suggestion-item:hover .suggestion-image{
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    max-width: 364px;
    width: 100%;
    height: 100%;
    scale: 1;
}
#modal-wrapper-search #search-suggestions .suggestion-item .suggestion-text{
    transition: .4s;
}
#modal-wrapper-search #search-suggestions .suggestion-item:hover .suggestion-text{
    transform: translateX(20px);
}
#modal-wrapper-search .suggestion-title{
    color: white;
    font-weight: 550;
}
.open-modal-mw{
    cursor: pointer;
}
.gm-search{
    display: flex;
    gap: 8px;
    align-items: center;
    transition: all .4s;
    background: var(--bg);
    padding: 4px 12px;
    border-radius: 20px;
    color: white;
    cursor: text;
}
.price-list{
    margin-bottom: 1.8rem;
}
.contact-item:hover{
    color: var(--bg);
}
.gm-search:hover{
    color: var(--bg);
}
#modal-wrapper-search .suggestion-article{
    color: white;
}
#modal-wrapper-search .suggestion-footer a{
    color: white;
}
#modal-wrapper-search .suggestion-image{
    width: 0;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    transition: .4s all;
    right: -90px;
    scale: .5;
}
.highlight {
    background-color: var(--bg);
    font-weight: bold;
    font-size: unset!important;
    display: unset!important;
    text-align: unset!important;
    margin: unset!important;
}
.cont-g{
    margin: 1.8rem 0;
}
.contact-box .c-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    background: #F7F8FA;
    padding: 20px;
    gap: 50px;
}
.contact-box.cc{
    width: 20%;
}
.contact-box, .w-form form {
    display: grid;
    gap: 8px;
    /* max-width: 50%; */
    /* width: 100%; */
}
.maps-content{
    display: flex;
    gap: 8px;
}
.c-box > h2 {
    color: var(--bg);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.products {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 1.5rem;
}
.image_overlay {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    visibility: hidden;
}

.image_overlay:hover{
    opacity: 1;
}
.product-meta-wrap {
    color: var(--h1-bs);
    padding: 10px 12px;
    min-height: 73px;
}
.product-meta-wrap h2{
    font-weight: 550;
    font-size: 15px;
    padding: 0.5em 0;
    margin: 0;
}
.product-thumbnail{
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 219px;
    display: block;
    margin: 0 0 1em;
    box-shadow: none;
    border-radius: 14px;
    width: 100%;
}
.product-footer .container .sect{
    background: var(--bs-b);
    border-radius: 14px;
    margin-top: 20px;
    padding: 20px;
    border: solid 1px #a7a7a740!important;
}
.product-footer .container .sect p{
    color: var(--h1-bs);
    font-weight: bold;
}
footer{
    position: relative;
    overflow: hidden;
}
footer .color-comp{
    position: absolute;
    right: -118px;
    top: 284px;
    width: 310px;
    height: 150px;
    background-image: linear-gradient(180deg, rgb(251 168 28 / 25%) 0%, rgb(224 86 136 / 43%) 100%);
    transform: rotate(65.5deg);
    border-radius: 155px;
    filter: blur(99.5px);
    z-index: 1;
    pointer-events: none;
    touch-action: none;
    cursor: alias;
}


.one_third {
    width: 30.6666%;
    position: relative;
    float: left;
    margin-right: 4%;
}
.product-gallery{
    float: none;
    width: auto;
    position: sticky;
    top: 2rem;
}
.product-gallery__wrapper{
    transition: all cubic-bezier(.795,-.035,0,1) .5s;
    margin: 0;
    padding: 0;
    display: block;
}
.product-gallery__image{
    position: relative;
    min-height: auto!important;
}
.product-gallery__image .product-thumbnail{
    background-size: cover;
}
.image_icon_zoom{
    position: relative;
}

.image_icon_zoom .image_overlay:hover{
    opacity: 1;
}
.product-thumbnails-wrapper{
    margin: 5px 0;
}
.product-gallery__image{
    border: solid 1px #a7a7a740!important;
    border-radius: 14px;
    width: 100%;
}
.woocommerce-product-gallery__image{
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    grid-gap: 0.5rem;
}
.product-gallery__image .product-thumbnail{
    height: 380px;
    margin: 0;
}
.woocommerce-product-gallery__image .product-thumbnail{
    height: 100px;
    border-radius: 14px;
    margin: 0!important;
    border: solid 1px #a7a7a740!important;
}
.ii-state {
    display: flex;
    justify-content: space-between;
    margin: 1.8rem 0;
}
.single-product-main-image {
    width: 40%;
    margin-bottom: 20px;
}
.single-product-summary {
    width: 55%;
}
.product-thumbnail-wrap{
    position: relative;
}
li.product-w{
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(.51,.61,0,2.3) !important;
    border: 1px solid #c5c5c5;
    background: white;
}
li.product-w:hover{
    border: 1px solid var(--bg);
}
li.product-w:hover{
    scale: 1.02;
}
.sku{
    font-size: 12px;
}
.grecaptcha-badge, .hidden{
    display: none;
}
/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ð±Ð»Ð¾ÐºÐ° ÐšÐŸÐ¢-Ð·Ð°ÑÐ²ÐºÐ¸ */
.kpt-request {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Inter', 'Arial', sans-serif;
}

.kpt-request .container {
    max-width: 1200px;
}

.kpt-wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.kpt-text {
    flex: 1;
    padding-right: 30px;
}

.kpt-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.2;
}

.kpt-text h2 span {
    color: #e74c3c;
    font-weight: 800;
}

.kpt-text .slogan {
    font-size: 1.3rem;
    /* color: #34495e; */
    margin-bottom: 24px;
    font-weight: 500;
}

.kpt-text .slogan strong {
    color: var(--bg);
    font-weight: 700;
}

.kpt-text p {
    font-size: 1.1rem;
    /* color: #5a6c7d; */
    line-height: 1.6;
    margin-bottom: 20px;
}

.kpt-text .call-action {
    background: #fff;
    padding: 20px;
    border-left: 4px solid #e74c3c;
    border-radius: 8px;
    font-size: 1.1rem;
    /* color: #2c3e50; */
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.highlights {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}





.highlights li i.icon-check {
    display: none; /* Ð•ÑÐ»Ð¸ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·ÑƒÐµÑˆÑŒ Ð¸ÐºÐ¾Ð½ÐºÐ¸ â€” Ð·Ð°Ð¼ÐµÐ½Ð¸ Ð½Ð° SVG Ð¸Ð»Ð¸ FontAwesome */
}

/* Ð¤Ð¾Ñ€Ð¼Ð° */
.kpt-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    max-width: 500px;
}

.form-main__wrap {
    max-width: 100%;
}

.main-title h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
}

.form-main__desc {
    text-align: center;
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpcf7-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wpcf7-form .label {
    font-weight: 600;
    color: #34495e;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wpcf7-form input,
.wpcf7-form textarea {
    padding: 15px 18px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #e74c3c;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    transform: translateY(-1px);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #bdc3c7;
    font-weight: 400;
}

.wpcf7-form textarea {
    resize: vertical;
    min-height: 100px;
}

.wpcf7-form__btn-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}




.form-personal-data {
    font-size: 0.85rem;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.4;
}

.form-personal-data a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.form-personal-data a:hover {
    text-decoration: underline;
}

/* ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð²Ð½Ð¾ÑÑ‚ÑŒ */
@media (max-width: 992px) {
    .kpt-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .kpt-text {
        padding-right: 0;
        text-align: center;
    }

    .kpt-form {
        max-width: 100%;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .kpt-request {
        padding: 50px 0;
    }

    .kpt-text h2 {
        font-size: 2rem;
    }

    .kpt-text .slogan {
        font-size: 1.15rem;
    }

    .highlights li {
        text-align: left;
        padding-left: 25px;
        font-size: 0.95rem;
    }

    .wpcf7-form input,
    .wpcf7-form textarea {
        padding: 12px 15px;
    }

    .button, .btn-premium {
        padding: 14px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .kpt-form {
        padding: 25px 15px;
    }

    .main-title h2 {
        font-size: 1.5rem;
    }

    .form-main__desc {
        font-size: 0.95rem;
    }
}

.kpt-wrap {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.product_title.entry-title{
    font-size: clamp(3rem, 6vw, 2.4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.8rem;
    background: linear-gradient(90deg, #000000, #ffaa70, var(--bg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
.wpcf7-response-output {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpcf7-response-output.wpcf7-validation-errors {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.product_meta,.product-ul{
    margin: 1.8rem 0;
}
.sku_wrapper{
    font-size: 14px;
    color: #ed654a;
    font-weight: 500;
}
.table-two ul,.table-two li{
    margin: 8px 0!important;
    color: black;
}
.table-two span,.product-header span{
    font-size: 24px;
    margin: 2rem 0;
    display: block;
    font-weight: 700;
}
.guard{
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 1.8rem 0;
}
.search-modal span{
    color: white;
    font-size: 32px;
    margin-bottom: 0!important;
}

@media (max-width: 991px) {
    .mdm-header{
        display: block;
    }
    .navigate-footer{
        flex-direction: column;
        gap: 2rem;
    }
    .product{
        flex-direction: column;
        gap: 10px;
    }
    .product-visual{
        height: 412px;
    }
    header nav{
        display: none;
    }
    .li-footer,.footer-bottom{
        flex-direction: column;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .single-product-main-image,.single-product-summary{
        width: 100%;
    }
    .maps-content,.ii-state{
        flex-direction: column;
    }
    .contact-box.cc{
        width: 100%;
    }
}
@media (max-width: 576px) {
    .about-image{
        grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
    }
}