* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: unset;
    color: black;
}

li {
    list-style: none !important;
}

:root {
    --width: 1200px;
    --accent: #ff5e00;
    --accent-dark: #000000;
    --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: #0060d5;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6fa;
}

.top-bar {
    background-color: #181818;
    border-bottom: 1px solid #232323;
    font-size: 14px;
    color: #333;
    padding: 7px 0;
}

.container {
    max-width: var(--width);
    margin: 0 auto;
    padding: 0 20px;
}

main {
    max-width: var(--width);
    margin: 0 auto;
    padding: 80px 20px;
}

.main-block {
    background-image: url(../../images/image1.jpg);
    min-height: 786px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: #121212;
}

.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;
}
.top-products{
    padding-bottom: 40px!important;
}
.category-list {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(229px, 1fr));
    grid-gap: 10px;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
}
.mw-status-osp .category-list{
    max-height: 678px;
    transition: all .7s;
}
.mw-status-osp .mw-osp p:nth-child(2),.mw-status-osp.open .mw-osp p:nth-child(1){
    display: none;
}
.mw-status-osp.open .mw-osp p:nth-child(2){
    display: block;
}
.mw-status-osp.open .category-list{
    max-height: 10000px;
}
.mw .category-list:before .open{
    background: unset;
}
.open.mw .category-list:before{
    height: 0;
}
.navigate-mw {
    padding: 78px 24px 0;
}
.mw .category-list:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    height: 178px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(244 246 250)), to(#f4f6fa));
    background: -o-linear-gradient(top,rgba(255,255,255,0) 0,#fff 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #f4f6fa 100%);
    -webkit-transition: opacity .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 1;
    user-select: none;
    pointer-events: none;
}

.category-list a {
    display: block;
    height: 236px;
    background: #dddddd;
    padding: 18px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(.51, .61, 0, 2.3);
}

.category-list a:hover {
    background-color: rgb(10 10 10 / 70%);
    color: white;
    transform: scale(1.07);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all .4s;
}

.social-icons a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
}

.category-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.category-item .category-name {
    font-size: 18px;
    text-transform: none;
    color: #7d7c7c;
}

.category-item:hover .category-image {
    mix-blend-mode: unset;
}

.category-list a:hover .category-name {
    color: white;
}

.category-item .category-image {
    position: absolute;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: 150px;
    background-repeat: no-repeat;
    left: 0;
    bottom: -2px;
    mix-blend-mode: luminosity;
}

.main-header {
    background-color: #181818fc;
    position: relative;
    z-index: 100;
    backdrop-filter: blur(11px);
}

.header-status {
    left: 0;
    right: 0;
    z-index: 9999999;
}

.header-modal .modal-mw {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    overflow: scroll;
    overflow-y: scroll;
    height: 100%;
}

.header-modal .modal-mw ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 2rem;
}

.mdm-header {
    display: none;
}

.header-modal .modal-mw ul a {
    font-size: 24px;
    font-weight: 600;
    color: #475569;
    border: unset;
}
.header-modal .modal-mw svg{
    color: #475569;
}
.header-modal .modal-mw .navigate-mw a{
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.header-modal .modal-mw .open-modal-mw{
    color: #475569!important;
    margin: 0 24px;
}
.header-modal .modal-mw  .consultation-content h3{
    color: #475569!important;
}
.header-modal .modal-mw span{
    color: black;
    margin: 0;
    display: flex;
}

.header-modal .modal-mw .container {
    height: 100%;
    flex-direction: column;
    background-color: #ffffff;
    display: block;
    background-size: 55px 40px;
    margin: unset;
    padding: 0;
    overflow-y: scroll;
}

.header-modal .footer-end {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 24px 0 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    bottom: 0;
}

.header-modal .footer-end span {
    text-align: start;
    color: black;
    font-weight: 600;
    margin-bottom: 1rem;
}

.header-modal .footer-end a {
    font-size: 24px;
    background: linear-gradient(90deg, #000000, #000000, var(--bg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 1rem;
}

.header-modal .footer-end p {
    color: black;
}

.main-header .container {
    max-width: var(--width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 74px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo .modlo {
    width: 10px;
    height: 42px;
    background: #0040ff;
    display: block;
    margin-left: 5px;
    border-radius: 8px;
    transform: skew(-10deg, -24deg);
}

.logo img {
    width: 60px;
}

.is-active {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    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;
    margin: 0;
}

nav a {
    color: #d9d9d9;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s;
}

nav a:hover {
    color: #a7caf5;
}

.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;
}


.project-stages__title {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #0f172a;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    position: relative;
}

.project-stages__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    margin: 16px auto 0;
    border-radius: 2px;
}

.project-stages__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stage-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.stage-card:hover::before {
    transform: scaleX(1);
}

.stage-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.stage-card:hover .stage-card__icon {
    transform: scale(1.05);
    color: #2563eb;
}

.stage-card__icon svg {
    width: 100%;
    height: 100%;
}

.stage-card__number {
    font-family: 'Inter', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    background: #eff6ff;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.stage-card__title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.stage-card__description {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #475569;
    margin: 0;
}

@media (max-width: 1200px) {
    .project-stages__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .project-stages__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-stages__title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .project-stages__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stage-card {
        padding: 20px;
    }

    .stage-card__icon {
        width: 48px;
        height: 48px;
    }

    .stage-card__title {
        font-size: 1.125rem;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stage-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.stage-card:nth-child(1) { animation-delay: 0.05s; }
.stage-card:nth-child(2) { animation-delay: 0.1s; }
.stage-card:nth-child(3) { animation-delay: 0.15s; }
.stage-card:nth-child(4) { animation-delay: 0.2s; }
.stage-card:nth-child(5) { animation-delay: 0.25s; }
.stage-card:nth-child(6) { animation-delay: 0.3s; }
.stage-card:nth-child(7) { animation-delay: 0.35s; }
.stage-card:nth-child(8) { animation-delay: 0.4s; }
.quote-btn {
    color: white !important;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 38px;
}
header .quote-btn{
    border: solid 1px white;

}
.quote-btn:hover {
    background-color: #0040ff;
    border: solid 1px #0040ff;
}

.content-post {
    max-width: var(--width);
    margin: 0 auto;
    padding: 305px 20px 0;
}

.content-post h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 29px;
}

.content-post a {
    color: white;
    background: #0060d5;
    padding: 11px;
    display: block;
    width: fit-content;
    border-radius: 6px;
}

.content-post p {
    color: white;
    max-width: 544px;
    font-size: 23px;
    padding-bottom: 20px;
}

.content-post span {
    color: #0060d5;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
}

.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;
}

.product-category > h2 {
    font-size: 48px;
    margin-bottom: 29px;
}

.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: black;
}

.li-footer {
    display: flex;
    gap: 8rem;
}

footer {
    background-color: #f1f5f9;
    color: #334155;
    padding: 60px 0 30px;
    font-size: 15px;
}

.footer-container {
    max-width: var(--width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: black;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 20px;
    border-left: 6px solid #3b82f6;
}

.footer-column ul {
    list-style: none;
}
.footer-column ul.gridb{
    grid-template-columns: repeat(auto-fill, minmax(229px, 1fr));
    grid-gap: 10px;
    display: grid;
    margin-bottom: 3rem;
}

.footer-column li {
    margin-bottom: 12px;
    overflow: unset;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-column li .sp-icon{
    width: 28px;
    height: 28px;
}
.footer-column li .sp-icon svg {
    width: 20px;
    height: 20px;
}
.footer-column a {
    color: #334155;
    text-decoration: none;
    transition: color 0.25s;
}

.footer-column a:hover {
    color: #3b82f6;
}

.contact-item {
    display: flex;
    /* align-items: flex-start; */
    gap: 10px;
    color: #a3a3a3;
}

.contact-item span {
    color: #ff6b00;
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.footer-bottom a {
    color: #334155;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: #3b82f6;
}

@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: 0 0 120px;
}

.about-image {
    display: grid;
    grid-gap: 1rem;
}

.container {
    max-width: var(--width);
    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);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    /* color: #555; */
    margin-bottom: 20px;
}

.about-text p.slogan {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 32px;
}

.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 {
    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;
    }
}
.consultation-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 520px;
}

.consultation-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.consultation-content {
    flex: 1;
}

.consultation-content h3 {
    margin: 0;
    font-size: 1.38rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.consultation-content p {
    margin: 8px 0 0;
    font-size: 1.05rem;
    color: #555;
    font-weight: 500;
}

.consultation-icon {
    position: relative;
    flex-shrink: 0;
    margin-left: 24px;
}

.icon-circle {
    width: 68px;
    height: 68px;
    background: #0066ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}

.icon-circle svg {
    width: 36px;
    height: 36px;
}

.consultation-block:hover .icon-circle {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(0, 102, 255, 0.4);
}

@media (max-width: 480px) {
    .consultation-block {
        /* flex-direction: column; */
        /* text-align: center; */
        padding: 28px 20px;
        gap: 0;
    }

    .consultation-content {
    }

    .consultation-icon {
        margin-left: 0;
        position: absolute;
        right: -7px;
        opacity: .5;
        bottom: -7px;
    }

    .consultation-content h3 {
        font-size: 1.28rem;
    }

    .icon-circle {
        width: 64px;
        height: 64px;
    }

    .icon-circle svg {
        width: 32px;
        height: 32px;
    }
}
.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-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #000000, #000000, var(--bg));
    -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-visual-box-images {
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.product:hover .product-visual {
}

.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-size: clamp(2.2rem, 6vw, 2.8rem);
    line-height: 1.05;
    margin-bottom: 1.8rem;
    background: linear-gradient(90deg, #000000, #000000, var(--bg));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-text {
    font-size: 1.18rem;
    max-width: 580px;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #0040ff, #853bf6);
    color: white!important;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    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);
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
}

.btn-premium.ba {
    background: #f8fafc;
    border: solid 1px #334155;
    color: #334155 !important;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    color: #e2e8f0!important;
    background: linear-gradient(135deg, #042247, #000000);
}

.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;
}
.mini-notify.modal-wrapper-mw{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 0 0;
    display: unset;
    align-items: unset;
    justify-content: unset;
    transform: translateX(100%);
    transition: transform .3s ease, background .3s ease;
    backdrop-filter: blur(24px);
    z-index: 999999999;
    width: unset;
    border-radius: unset;
    box-shadow: unset;
    opacity: unset;
    visibility: unset;
    overflow: hidden;
    cursor: unset;
    background: unset!important;
    backdrop-filter: brightness(.25);
}
.mini-notify.modal-wrapper-mw .modal-mw{
    position: fixed;
    top: 20px;
    right: 20px;
    width: 390px;
    border-radius: 24px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
    opacity: unset;
    visibility: unset;
    transform: translateX(50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999999;
    overflow: hidden;
    left: unset;
    bottom: unset;
    cursor: unset;
    background-color: white;
    padding: 0;
}
.mini-notify.modal-wrapper-mw .modal-mw span{
    color:black;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.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: #111111;
    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: white;
    border: unset!important;
    height: 54px;
    background: linear-gradient(135deg, #0040ff, #853bf6);
    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: .2;
    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: #ffffff;
    font-weight: 700!important;
    text-align: center;
    text-decoration: none;
}

.modal-mw span {
    color: white;
    margin-bottom: 1.8rem;
    font-size: 25px;
    display: block;
}


.close-modal-mw,.header-modal .modal-mw .navigate-mw .close-modal-mw  {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 10px;
    border: #005bca solid 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #005bca;
    background: unset;
}
.header-modal .modal-mw .navigate-mw .close-modal-mw svg{
    color: #005bca;
}
.header-status{
    position: fixed;
    z-index: 9999;
    width: 100%;
    transition: 0.5s;
}
.header-status.active{
    transform: translateY(-32px);
}
.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: white;
    font-size: 18px;
    line-height: 1.75rem;
    width: 100%;
    transition: .5s all;
    background: unset;
}

.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;
    color: #a3a3a3;
    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 {
    padding: 8.8rem 0 1.8rem;
}

.contact-box .c-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    background: #F7F8FA;
    padding: 20px;
    gap: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.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: cover;
    height: 193px;
    display: block;
    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, #0040ff 0%, rgb(59 130 246) 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: unset;
}

.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: contain;
    background-color: white;
}

.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;
    opacity:.4;
    border: solid 1px #a7a7a740!important;
    transition:.4s;
}
.woocommerce-product-gallery__image .product-thumbnail:hover{
    opacity:1;
}
.ii-state {
    display: flex;
    justify-content: space-between;
    padding: 80px 0 1.8rem 0;
}

.single-product-main-image {
    width: 40%;
    margin-bottom: 20px;
}

.single-product-summary {
    width: 55%;
}

.single-product-summary .pnc {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.single-product-summary .price{
    font-size: 48px;
    color: #000000;
    font-weight: 700;
}

.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: var(--width);
}

.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;
}

.kpt-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    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) {
    .about-image img{
        display: none;
    }
    .about-company .about-content{
        gap: 0  ;
    }
    .main-block{
        background-position: right;
        background-size: cover;
        position: relative;
    }
    .main-block .content-post{
        position: relative;
        z-index: 1;
    }
    .main-block:before{
        content: '';
        position: absolute;
        z-index: 1;
        background: #00000063;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(7px);
    }
    .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(4.6rem, 6vw, 2.4rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.8rem;
    background: linear-gradient(90deg, #000000, #4d4d4d, 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: #0040ff;
    font-weight: 500;
}

.sp-delivery {
    max-width: 600px;
    width: 100%;
    position: relative;
}

@keyframes sp-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sp-list {
    list-style: none;
    position: relative;
    z-index: 2;
}

.sp-item {
    background: #f8fafc;
    border-radius: 20px;
    margin-bottom: 8px;
    padding: 18px 24px;
    display: flex;
    align-items: stretch;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    gap: 15px;
    align-items: center;
}

.sp-item:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
    background: white;
}

.sp-item-dropdown {
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    gap: 0;
}

.sp-item-dropdown:hover {
    transform: translateX(10px) scale(1.02);
}

.sp-dropdown-inner {
    display: flex;
    align-items: stretch;
    padding: 18px 20px;
    background: #f8fafc;
    cursor: pointer;
    width: 100%;
    gap: 15px;
    transition: all 0.3s ease;
}

.sp-dropdown-inner:hover {
    background: #eef2ff;
}

.sp-icon {
    width: 38px;
    height: 38px;
    border-radius: 7px;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    color: white;
}

.sp-header {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    min-width: 140px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.sp-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    text-align: right;
}

.sp-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: auto;
    align-self: center;
}

.sp-arrow svg {
    width: 16px;
    height: 16px;
    stroke: #667eea;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.sp-arrow.sp-open svg {
    transform: rotate(180deg);
}

.sp-children {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #f1f5f9;
    border-top: 0 solid #e2e8f0;
    width: 100%;
}

.sp-item-dropdown.sp-expanded .sp-children {
    max-height: 300px;
    border-top-width: 1px;
    width: 100%;
}
#status-text{
    color: black;
}
.splide{
    position: relative;

}
.splide:before,.splide:after {
    content: '';
    position: absolute;
    bottom: 0;
    top: 0;
    width: 30%;
    z-index: 1;
    pointer-events: none;
    touch-action: none;
    cursor: alias;
}

.splide:before{
    right: 0;
    background: linear-gradient(270deg, #f4f6fa 0, transparent);
}
.splide:after {
    left: 0;
    background: linear-gradient(90deg, #f4f6fa 0, transparent);
}
.splide__pagination {
    bottom: -0.8em!important;
}
.splide__arrow{
    z-index: 111;
}
.list-view .product-info{
    justify-content: space-around;
}

.splide {
    border: unset!important;
}

.splide__slide {
    padding: 10px;
    cursor: pointer;
    border: unset!important;
    transition: transform 0.3s ease;
}

.splide__slide:hover {
    transform: scale(1.05);
    z-index: 10;
}

.slide-content {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}


.slide-content img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.slide-caption {
    padding: 15px;
    background: white;
}

.slide-caption h3 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.slide-caption p {
    color: #666;
    font-size: 0.9rem;
}

.controls {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
}

.controls h3 {
    margin-bottom: 15px;
    color: #333;
}

.btn-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.splide__arrow {
    background: rgba(0, 0, 0, 0.6);
    width: 3rem;
    height: 3rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.splide__arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    opacity: 1;
    transform: scale(1.1);
}

.splide__arrow svg {
    fill: white;
}

.splide__pagination__page {
    background: #ccc;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.splide__pagination__page.is-active {
    background: #667eea!important;
    transform: scale(1.2);
}
.sp-child {
    display: flex;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    gap: 15px;
    transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
}

.sp-child:last-child {
    border-bottom: none;
}

.sp-child:hover {
    background: white;
    padding-left: 25px;
}

.sp-child-left {
    flex: 1;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.splide__arrow {
    background: #3b82f6;
    color: white;
    border-radius: 30px;
    padding: 5px 8px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
}



.sp-payment {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.sp-payment-icon {
    width: 50px;
    height: 30px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.sp-payment-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.sp-payment-icon svg {
    width: 40px;
    height: 20px;
}

@media (max-width: 640px) {

    .sp-item {
        flex-wrap: wrap;
        /* padding: 15px; */
    }

    .sp-header {
        min-width: 100px;
        font-size: 14px;
    }

    .sp-content {
        font-size: 16px;
    }

    .sp-child {
    }

    .sp-child-right {
        align-self: flex-end;
    }

    .sp-payment {
        gap: 0;
    }
}

@media (max-width: 480px) {
    .splide__pagination{
        display: none!important;
    }
    .splide:before, .splide:after{
        content: none;
    }
    .sp-icon {
        width: 40px;
        height: 40px;
    }

    .sp-icon svg {
        width: 22px;
        height: 22px;
    }

    .sp-header {
        min-width: 80px;
        font-size: 13px;
    }

    .sp-content {
        font-size: 14px;
    }
}
@keyframes sp-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sp-item {
    animation: sp-fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.sp-item:nth-child(1) {
    animation-delay: 0.1s;
}

.sp-item:nth-child(2) {
    animation-delay: 0.2s;
}

.sp-item:nth-child(3) {
    animation-delay: 0.3s;
}

.sp-item:nth-child(4) {
    animation-delay: 0.4s;
}

.sp-item:nth-child(5) {
    animation-delay: 0.5s;
}

.table-two ul,.table-two li {
    margin: 8px 0!important;
    color: black;
}

.span-mw.table-two span.b {
    font-size: 24px;
    margin-bottom: 20px;
}
.span-mw.product-category .btn-add{
    padding: 10px 20px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 4;
    bottom: -19px;
}
.span-mw.product-category{
    position: relative;
}
.table-two li {
    background: #f8fafc;
    padding: 18px 24px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    counter-increment: item;
}

.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;
}

.span-mw span.b {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
    border-left: 6px solid #3b82f6;
    text-transform: none;
}

.product-options .category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    list-style: none;
}

.product-options .category-list li {
    background: #f8fafc;
    padding: 18px 24px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    counter-increment: item;
}

.product-options .category-list li::before {
    content: counter(item);
    background: #3b82f6;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.product-options .category-list li:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateX(8px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
}

.product-options .category-list li:hover::before {
    background: #2563eb;
}

@media (max-width: 1024px) {
    .product-options .category-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .product_title.entry-title {
        font-size: clamp(3.6rem, 6vw, 2.4rem);
    }
    .dis{
        display: none!important;
    }

    .mdm-header {
        display: block;
    }

    .navigate-footer {
        flex-direction: column;
        gap: 2rem;
    }

    .product {
        flex-direction: column-reverse;
        gap: 10px;
        padding-top: 40px;
    }

    .product-visual {
        height: 180px;
    }

    header nav {
        display: none;
    }

    .li-footer,.footer-bottom {
        flex-direction: column;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    .product_title.entry-title {
        font-size: clamp(2.6rem, 6vw, 2.4rem);
    }

    .product-options h1 {
        font-size: 32px;
    }

    .product-options .category-list {
        grid-template-columns: 1fr;
    }
    .single-product-main-image,.single-product-summary {
        width: 100%;
    }

    .maps-content,.ii-state {
        flex-direction: column-reverse;
    }

    .contact-box.cc {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .about-image {
        grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
    }
    .gm-search{
        gap:2px;
    }
}

.benefits-section {
    margin: 0 auto;
    position: relative;
}

.benefits-section::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-inner {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(0px);
    border-radius: 28px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(37, 99, 235, 0.08);
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.02), 0 10px 15px -3px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.12);
}

.benefit-pattern {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.benefit-pattern svg {
    width: 100%;
    height: 100%;
}

.benefit-pattern::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: 20px;
    z-index: -1;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-pattern::before {
    inset: -12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.benefit-card:hover .benefit-title {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.benefit-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #475569;
    font-weight: 400;
}

.guarantee-block {
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: var(--width);
    width: 100%;
}

.guarantee-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.guarantee-block::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.guarantee-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.certification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.certification-badge svg {
    width: 20px;
    height: 20px;
}

.certification-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #a5f3fc;
    letter-spacing: 0.02em;
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.guarantee-text {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.warranty-period {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0.5rem 0;
}

.warranty-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

.guarantee-action {
    position: relative;
    z-index: 1;
}

.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px -8px rgba(37, 99, 235, 0.4);
}

.btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.btn-details svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-details:hover svg {
    transform: translateX(4px);
}



@media (max-width: 1024px) {
    .benefits-grid {
        gap: 1.5rem;
    }

    .benefit-title {
        font-size: 1.25rem;
    }

    .guarantee-title {
        font-size: 1.75rem;
    }

    .warranty-period {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {


    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .benefit-pattern {
        margin: 0;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .benefit-content {
        flex: 1;
    }

    .benefit-title {
        margin-bottom: 0.5rem;
        font-size: 1.125rem;
    }

    .guarantee-block {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }

    .guarantee-info {
        text-align: center;
    }

    .certification-badge {
        margin: 0 auto 1.5rem;
    }

    .warranty-period {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .span-mw span.b{
        font-size:32px;
    }

    .guarantee-title {
        font-size: 1.5rem;
    }

    .btn-details {
        padding: 0.875rem 1.75rem;
        font-size: 0.875rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.benefit-card:nth-child(1) { animation-delay: 0.05s; }
.benefit-card:nth-child(2) { animation-delay: 0.12s; }
.benefit-card:nth-child(3) { animation-delay: 0.19s; }

.guarantee-block {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.26s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@media (prefers-reduced-motion: reduce) {
    .benefit-card,
    .guarantee-block {
        animation: none;
        opacity: 1;
    }
}
.cp-callback {
    background: white;
    border-radius: 40px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cp-callback::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    animation: cp-rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes cp-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cp-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cp-title span {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 28px;
    margin-top: 10px;
}

.cp-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
    position: relative;
    z-index: 2;
}

.cp-input {
    flex: 1;
    min-width: 200px;
    padding: 18px 24px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 60px;
    font-size: 16px;
    color: #0f172a;
    transition: all 0.3s ease;
    outline: none;
}

.cp-input:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.cp-input:hover {
    border-color: #94a3b8;
}

.cp-button {
    padding: 18px 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

.cp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -5px rgba(59, 130, 246, 0.5);
}

.cp-button:active {
    transform: translateY(0);
}

.cp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.cp-benefit-item {
    background: white;
    border-radius: 24px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cp-benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.cp-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cp-benefit-item:hover .cp-benefit-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: scale(1.05) rotate(5deg);
}

.cp-benefit-icon svg {
    width: 36px;
    height: 36px;
    stroke: #3b82f6;
    stroke-width: 1.8;
    fill: none;
    transition: all 0.3s ease;
}

.cp-benefit-item:hover .cp-benefit-icon svg {
    stroke: white;
}
.cp-callback {
    animation: cp-fadeInUp 0.6s ease forwards;
}

.cp-benefit-item {
    animation: cp-fadeInUp 0.5s ease forwards;
    opacity: 0;
}
.cp-benefit-text {
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

@media (max-width: 992px) {
    .cp-callback {
        padding: 40px;
    }

    .cp-title {
        font-size: 30px;
    }

    .cp-title span {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .cp-callback {
        padding: 30px;
    }

    .cp-title {
        font-size: 26px;
    }

    .cp-title span {
        font-size: 20px;
    }

    .cp-form {
        flex-direction: column;
    }

    .cp-input {
        width: 100%;
        padding: 14px 20px;
    }

    .cp-button {
        width: 100%;
        padding: 14px 30px;
    }

    .cp-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cp-benefit-item {
        padding: 20px 15px;
    }

    .cp-benefit-icon {
        width: 55px;
        height: 55px;
    }

    .cp-benefit-icon svg {
        width: 28px;
        height: 28px;
    }

    .cp-benefit-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cp-callback {
        padding: 0;
        border-radius: 0;
        background: unset;
        animation: unset;
        border: unset;
    }

    .cp-title {
        font-size: 22px;
    }

    .cp-title span {
        font-size: 18px;
    }

    .cp-benefits {
        grid-template-columns: 1fr;
    }
}
@keyframes cp-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cp-benefit-item:nth-child(1) { animation-delay: 0.1s; }
.cp-benefit-item:nth-child(2) { animation-delay: 0.15s; }
.cp-benefit-item:nth-child(3) { animation-delay: 0.2s; }
.cp-benefit-item:nth-child(4) { animation-delay: 0.25s; }
.cp-benefit-item:nth-child(5) { animation-delay: 0.3s; }
.cp-benefit-item:nth-child(6) { animation-delay: 0.35s; }
.cp-benefit-item:nth-child(7) { animation-delay: 0.4s; }
.cp-benefit-item:nth-child(8) { animation-delay: 0.45s; }

.mini-notify {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 390px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999999;
    overflow: hidden;
    cursor: pointer;
}

.mini-notify.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
}

.mini-notify-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.mini-notify-close:hover {
    background: #ef4444;
    transform: rotate(90deg);
}

.mini-notify-close svg {
    width: 14px;
    height: 14px;
    stroke: #64748b;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.mini-notify-close:hover svg {
    stroke: white;
}

.mini-notify-content {
    padding: 25px;
    position: relative;
}

.mini-notify-bar {
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
    animation: gradient-shift 2s ease infinite;
    background-size: 200% 100%;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.mini-notify-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    padding-right: 30px;
}

.mini-notify-title span {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mini-notify-subtitle {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.4;
}

.mini-notify-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-notify-input {
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 14px;
    color: #0f172a;
    transition: all 0.3s ease;
    outline: none;
}

.mini-notify-input:focus {
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mini-notify-input:hover {
    border-color: #94a3b8;
}

.mini-notify-row {
    display: flex;
    gap: 12px;
}

.mini-notify-row .mini-notify-input {
    flex: 1;
}

.mini-notify-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    position: relative;
    overflow: hidden;
}

.mini-notify-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.mini-notify-button:hover::before {
    left: 100%;
}

.mini-notify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
}

.mini-notify-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.mini-notify-benefit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #475569;
}

.mini-notify-benefit svg {
    width: 14px;
    height: 14px;
    stroke: #3b82f6;
    stroke-width: 2;
}


@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 640px) {
    .mini-notify {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        top: 20px;
    }

    .mini-notify-row {
        flex-direction: column;
        gap: 12px;
    }

    .content h1 {
        font-size: 32px;
    }

    .content p {
        font-size: 16px;
    }
}

.scroll-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 10px 15px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


/*cart*/

.modal-wrapper-cart {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 999999;
    overflow-y: scroll;
    height: 100%;
}
.modal-wrapper-cart .modal {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 390px;
    border-radius: 24px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.25);
    opacity: unset;
    visibility: unset;
    transform: translateX(50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999999;
    overflow: hidden;
    left: unset;
    bottom: unset;
    cursor: unset;
    background-color: white;
    padding: 20px;
    max-height: 95vh;
    overflow-y: scroll;
}
.modal-wrapper-cart .cart-item .img {
    display: none;
    width: 100%;
    height: 200px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.modal-wrapper-cart .cart-item, .modal-wrapper-cart .cart-item-c {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background: white;
    margin: 8px 0;
    position: relative;
    padding: 8px 0;
    border-bottom: solid 1px #cbcbcb;
}
.modal-wrapper-cart .cart-total {
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
}
.m-na-name {
    display: flex;
    gap: 15px;
    align-items: center;
}
.modal-wrapper-cart .close-modal {
    cursor: pointer;
}

.modal-wrapper-cart .modal:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgb(0 0 0 / 30%);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: opacity 0.3s, visibility 0.3s;
}
.modal-wrapper-cart .modal.loading{
    overflow: hidden;
}
.modal-wrapper-cart .modal.loading .container{
    transform: translateX(100%) scale(.5);
}
.modal-wrapper-cart .modal.loading:before {
    opacity: 1;
    visibility: visible;
}
.modal-wrapper-cart .splay{
    padding-bottom: 10px;
}
.modal-wrapper-cart .splay h2{
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #333;
}
.modal-wrapper-cart .cart-total a{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #0040ff, #853bf6);
    color: white !important;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    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);
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
.quantity_input {
    border: none;
    background: transparent;
    color: black;
    width: 43px;
    text-align: center;
    font-weight: 550;
    padding: 0 0 0 10px;
}
.count_plus,.count_minus {
    background-color: #193ffd;
    border-radius: 8px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border: none;
    color: white;
    font-weight: 900;
}
.add-to-cart-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
#mobile.gm-actions{
    display:flex;
    gap:8px;
}
.modal-wrapper-cart .modal::-webkit-scrollbar-thumb {
    background: #0040ff;
    border-radius: 0;
}
.modal-wrapper-cart .modal::-webkit-scrollbar {
    width: 2px;
}
.cart-item {
    animation: fadeInUp 0.7s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        scale: .4;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        scale: 1;
        transform: translateY(0);
    }
}