* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-margin-top: 30px;
}

body {
    background-color: #fff;
    min-height: 100vh;
    font-family: "Poppins-Regular";
    font-size: 17px;
    line-height: 1.6;
    color: #232323;
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins-Medium";
    line-height: 1.2;
}

h1 {
    font-size: 3.7rem;
}

@media (max-width: 575px) {
    h1 {
        font-size: 2.3rem;
    }
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.75px;
}

@media (max-width: 575px) {
    h2 {
        font-size: 2rem;
    }
}

h3 {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
}

h4 {
    font-size: 1.5rem;
}

ul {
    padding: 0;
    margin: 0;
}

p a {
    color: #04c7d8;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

strong,
b {
    font-family: "Poppins-Medium", sans-serif;
}

@font-face {
    font-family: "Poppins-Regular";
    src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: "Poppins-Light";
    src: url("../fonts/Poppins-Light.ttf");
}

@font-face {
    font-family: "Poppins-Medium";
    src: url("../fonts/Poppins-Medium.ttf");
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url("../fonts/Poppins-SemiBold.ttf");
}

@font-face {
    font-family: "Poppins-Bold";
    src: url("../fonts/Poppins-Bold.ttf");
}

@media (min-width: 1601px) {
    .container {
        max-width: 1400px !important;
    }
}

@media (min-width: 1601px) {
    .container-lg {
        max-width: 1400px !important;
    }
}

@media (min-width: 1601px) {
    .container-xl {
        max-width: 1400px !important;
    }
}

@media (min-width: 1601px) {
    .container-xxl {
        max-width: 1400px !important;
    }
}

.header {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.header .header-nav {
    min-height: 25px;
    padding: 25px;
    z-index: 2;
}

@media (max-width: 575px) {
    .header .header-nav {
        padding: 12px;
    }
}

.header .header-nav .header-logo img {
    height: 100%;
    width: 240px;
}

@media (max-width: 991px) {
    .header .header-nav .header-logo img {
        width: 100%;
        max-width: 150px;
    }
}

@media (max-width: 991px) {
    .header .header-nav .header-logo {
        padding-right: 70px;
    }
}

.header .header-nav #nav {
    width: 100%;
    justify-content: center;
    column-gap: 40px;
}

@media (max-width: 1399px) {
    .header .header-nav #nav {
        column-gap: 20px;
    }
}

@media (max-width: 991px) {
    .header .header-nav #nav {
        margin-top: 15px;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(12px);
        border-radius: 10px;
        padding-bottom: 20px;
    }
}

.header .header-nav .navbar-nav {
    width: 100%;
    justify-content: right;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .header .header-nav .navbar-nav {
        padding: 20px 0;
    }
}

.header .header-nav .navbar-nav .nav-item {
    position: relative;
}

.header .header-nav .navbar-nav .nav-item .nav-link {
    font-family: "Poppins-Medium";
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    text-decoration: none;
    position: relative;
}

.header .header-nav .navbar-nav .nav-item .nav-link::before {
    content: "";
    width: calc(100% - 30px);
    height: 2px;
    position: absolute;
    left: 15px;
    bottom: 0.25rem;
    background: #04c7d8;
    transition: 0.3s transform ease;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 50%;
}

@media (min-width: 992px) {
    .header .header-nav .navbar-nav .nav-item .nav-link:hover::before {
        transform: scale3d(1, 1, 1);
    }
}

.header .header-nav .navbar-nav .nav-item.active .nav-link,
.header .header-nav .navbar-nav .nav-item .nav-link:hover {
    color: #04c7d8;
}

@media (max-width: 991px) {
    .header .header-nav .navbar-nav .nav-item {
        width: 100%;
        margin: 0 auto;
    }
}

.header .header-nav .navbar-nav .nav-item .active {
    color: #04c7d8;
}

.header .header-nav .navbar-nav .nav-item-border {
    border: 2px solid #04c7d8;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.header .header-nav .navbar-nav .nav-item-border:hover {
    box-shadow: inset 300px 0 0 0 #04c7d8;
}

.header .header-nav .navbar-nav .nav-item-border:hover .nav-link {
    color: #fff;
}

.header .header-nav .navbar-nav .nav-item-border:hover .nav-link::before {
    display: none;
}

.header .header-nav .navbar-nav .nav-item-border .nav-link {
    color: #04c7d8;
}

@media (max-width: 991px) {
    .header .header-nav .navbar-nav .nav-item-border {
        border: none;
    }
}

.header .header-nav .header-right-box {
    display: flex;
    flex-direction: row;
    column-gap: 25px;
    margin-right: 35px;
}

@media (max-width: 1399px) {
    .header .header-nav .header-right-box {
        margin-right: 0;
        column-gap: 20px;
        justify-content: space-between;
        margin: 0 20px;
    }
}

@media (max-width: 575px) {
    .header .header-nav .header-right-box {
        flex-wrap: wrap;
        column-gap: 12px;
        row-gap: 12px;
    }
}

.header .header-nav .header-right-box .header-languages {
    display: inline-block;
}

.header .header-nav .header-right-box .header-languages ul {
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 120px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 54px;
}

.header .header-nav .header-right-box .header-languages ul li {
    list-style: none;
}

.header .header-nav .header-right-box .header-languages ul li:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.header .header-nav .header-right-box .header-languages ul li a {
    text-decoration: none;
    color: #fff;
    font-family: "Poppins-Medium";
    font-size: 16px;
    padding: 11px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.header .header-nav .header-right-box .header-languages ul li a.active {
    color: #04c7d8;
}

.header .header-nav .header-right-box .header-languages ul li a:hover {
    color: #04c7d8;
}

.header .header-nav .header-right-box .header-button {
    display: inline-block;
    max-height: 54px;
}

.header .header-nav .header-right-box .header-button a {
    background-color: #fff;
    display: flex;
    color: #000;
    font-family: "Poppins-Medium";
    font-size: 16px;
    padding: 14px 50px;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid #fff;
    border-radius: 54px;
    transition: all 0.3s ease;
}

@media (max-width: 1399px) {
    .header .header-nav .header-right-box .header-button a {
        padding: 14px 20px;
    }
}

.header .header-nav .header-right-box .header-button a:hover {
    color: #04c7d8;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    position: absolute;
    right: 25px;
    top: 35px;
}

@media (max-width: 991px) {
    .header .navbar-toggler {
        top: 28px;
    }
}

@media (max-width: 575px) {
    .header .navbar-toggler {
        right: 10px;
        top: 20px;
    }
}

.header .navbar-toggler .animated-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    cursor: pointer;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.header .navbar-toggler .animated-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    background: #04c7d8;
}

.header .navbar-toggler .animated-icon span:nth-child(1) {
    top: 0px;
}

.header .navbar-toggler .animated-icon span:nth-child(2) {
    top: 10px;
}

.header .navbar-toggler .animated-icon span:nth-child(3) {
    top: 20px;
}

.header .navbar-toggler .animated-icon.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.header .navbar-toggler .animated-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.header .navbar-toggler .animated-icon.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.header-subpage .header {
    background-color: #fff;
    position: relative;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.025);
}

.header-subpage .header .header-nav .navbar-nav .nav-item .nav-link {
    color: #222;
}

.header-subpage .header .header-nav .navbar-nav .nav-item .nav-link.active {
    color: #04c7d8;
}

.header-subpage .header .header-nav .navbar-nav .nav-item.active .nav-link {
    color: #04c7d8;
}

.header-subpage .header .header-nav .header-languages ul {
    background-color: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
}

.header-subpage .header .header-nav .header-languages ul li:first-child {
    border-right-color: rgba(0, 0, 0, 0.12);
}

.header-subpage .header .header-nav .header-languages ul li a {
    color: #222;
}

.header-subpage .header .header-nav .header-languages ul li a.active {
    color: #04c7d8;
}

.header-subpage .header .header-nav .header-languages ul li a:hover {
    color: #04c7d8;
}

.header-subpage .header .header-nav .header-button a {
    background-color: #04c7d8;
    color: #fff;
    border-color: #04c7d8;
}

.header-subpage .header .header-nav .header-button a:hover {
    background-color: #0093c4;
    border-color: #0093c4;
    color: #fff;
}

.header-subpage .header .navbar-toggler .animated-icon span {
    background: #222;
}

@media (max-width: 991px) {
    .header-subpage .header #nav {
        background-color: #fff;
        border: 1px solid #e8e8e8;
    }

    .header-subpage .header .navbar-nav .nav-item .nav-link {
        color: #222;
    }
}

.subpage {
    background-color: #f5f5f5;
}

.subpage-intro {
    background-color: #f5f5f5;
    padding: 60px 0;
}

@media (max-width: 767px) {
    .subpage-intro {
        padding: 35px 0;
    }
}

.subpage-intro .breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    list-style: none;
}

@media (max-width: 767px) {
    .subpage-intro .breadcrumb-nav {
        display: none;
    }
}

.subpage-intro .breadcrumb-nav .breadcrumb-link {
    text-decoration: none;
    color: #999;
    font-family: "Poppins-Regular";
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.subpage-intro .breadcrumb-nav .breadcrumb-link:hover {
    color: #04c7d8;
}

.subpage-intro .breadcrumb-nav .breadcrumb-sep {
    color: #bbb;
    font-size: 0.72rem;
}

.subpage-intro .breadcrumb-nav .breadcrumb-current {
    color: #04c7d8;
    font-family: "Poppins-Medium";
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.subpage-intro .subpage-title {
    font-family: "Poppins-Medium";
    color: #232323;
    font-size: 3.3rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0;
}

@media (max-width: 767px) {
    .subpage-intro .subpage-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
}

.subpage-wrapper {
    padding-top: 30px;
    padding-bottom: 110px;
}

@media (max-width: 991px) {
    .subpage-wrapper {
        padding-top: 20px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .subpage-wrapper {
        padding-top: 0;
    }
}

.subpage-layout {
    display: flex;
    align-items: flex-start;
    gap: 45px;
}

@media (max-width: 991px) {
    .subpage-layout {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .subpage-layout {
        gap: 35px;
    }
}

.subpage-sidebar {
    width: 320px;
    min-width: 320px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .subpage-sidebar {
        width: 100%;
        min-width: unset;
        padding-top: 35px;
    }
}

.subpage-sidebar-toggle {
    display: none;
}

@media (max-width: 991px) {
    .subpage-sidebar-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 13px 18px;
        outline: 1px solid #04c7d8;
        border: none;
        border-radius: 5px;
        background-color: #fff;
        font-family: "Poppins-Medium";
        font-size: 0.95rem;
        color: #111;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .subpage-sidebar-toggle svg {
        stroke: #04c7d8;
        width: 20px;
        flex-shrink: 0;
        transition: transform 0.25s ease;
    }

    .subpage-sidebar-toggle.is-open svg {
        transform: rotate(180deg);
    }
}

.subpage-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

@media (max-width: 991px) {
    .subpage-sidebar-list {
        display: none;
        margin-top: 8px;
    }

    .subpage-sidebar-list.is-open {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .subpage-sidebar-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.subpage-sidebar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 18px;
    outline: 1px solid #04c7d8;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.subpage-sidebar-item:hover,
.subpage-sidebar-item.active {
    background-color: #04c7d8;
}

.subpage-sidebar-item:hover img,
.subpage-sidebar-item.active img {
    filter: brightness(0) invert(1);
}

.subpage-sidebar-item:hover span,
.subpage-sidebar-item.active span {
    color: #fff;
}

.subpage-sidebar-item:hover svg,
.subpage-sidebar-item.active svg {
    fill: #fff !important;
}

.subpage-sidebar-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

.subpage-sidebar-item span {
    flex-grow: 1;
    color: #111;
    font-family: "Poppins-Medium";
    font-size: 0.92rem;
    line-height: 1.3;
}

.subpage-sidebar-item svg {
    flex-shrink: 0;
    fill: #04c7d8;
    width: 10px;
}

.subpage-sidebar-list-subcategory {
    display: none;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin-top: 12px;
    padding-left: 20px;
}

@media (max-width: 991px) {
    .subpage-sidebar-list-subcategory {
        padding-left: 15px;
    }
}

.subpage-sidebar-list-subcategory .subpage-sidebar-item {
    padding: 8px 16px;
}

.subpage-sidebar-list-subcategory .subpage-sidebar-item img {
    width: 28px;
    height: 28px;
}

.subpage-sidebar-list-subcategory .subpage-sidebar-item span {
    font-size: 0.88rem;
}

.subpage-sidebar-list-subcategory .subpage-sidebar-item svg {
    width: 9px;
}

li.open-subcategory>.subpage-sidebar-list-subcategory {
    display: flex;
}

.subpage-section {
    margin-bottom: 70px;
}

@media (max-width: 767px) {
    .subpage-section {
        margin-bottom: 55px;
    }
}

.subpage-section-title {
    font-size: 2.15rem;
    letter-spacing: -0.75px;
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .subpage-section-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
        margin-bottom: 25px;
    }
}

.subpage-content {
    flex: 1;
    min-width: 0;
}

.subpage-content h1,
.subpage-content h2,
.subpage-content h3,
.subpage-content h4,
.subpage-content h5,
.subpage-content h6 {
    margin-bottom: 1rem;
}

.subpage-content ul,
.subpage-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.footer {
    background-color: #232323;
    padding-top: 55px;
}

.footer .footer-top {
    padding-bottom: 25px;
}

.footer .footer-top .border-line {
    border-right: 1px solid #383838;
}

@media (max-width: 1199px) {
    .footer .footer-top .border-line:first-child {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .footer .footer-top .border-line {
        border-right: none;
    }
}

.footer .footer-top .footer-logo img {
    height: 67px;
    width: auto;
    object-fit: contain;
}

.footer .footer-top .footer-contact-box {
    padding: 0 50px;
    padding-bottom: 35px;
}

@media (max-width: 1399px) {
    .footer .footer-top .footer-contact-box {
        padding: 0 20px;
    }
}

.footer .footer-top .footer-contact-box .footer-contact {
    display: flex;
    flex-direction: column;
}

.footer .footer-top .footer-contact-box .footer-contact .footer-contact-email,
.footer .footer-top .footer-contact-box .footer-contact .footer-contact-tel {
    display: inline-block;
    text-decoration: none;
}

.footer .footer-top .footer-contact-box .footer-contact .footer-contact-email {
    color: #04c7d8;
    font-family: "Poppins-Medium";
    font-size: 1.5rem;
    word-break: break-word;
}

.footer .footer-top .footer-contact-box .footer-contact .footer-contact-email:hover {
    text-decoration: underline;
}

.footer .footer-top .footer-contact-box .footer-contact .footer-contact-tel {
    color: #fff;
    font-family: "Poppins-Medium";
    font-size: 1.5rem;
}

.footer .footer-top .footer-contact-box .footer-contact .footer-contact-tel:hover {
    text-decoration: underline;
}

.footer .footer-top .footer-contact-box .footer-address p {
    color: #d2d2d2;
    font-size: 0.9rem;
    font-family: "Poppins-Regular";
    margin-bottom: 5px;
}

.footer .footer-top .footer-contact-box .footer-address p strong {
    font-family: "Poppins-Bold";
}

.footer .footer-top .footer-products-menu {
    padding: 0 50px;
    padding-bottom: 35px;
}

@media (max-width: 1399px) {
    .footer .footer-top .footer-products-menu {
        padding: 0 20px;
    }
}

.footer .footer-top .footer-products-menu .footer-products-menu-item {
    display: block;
    color: #d2d2d2;
    font-size: 0.9rem;
    font-family: "Poppins-Regular";
    margin-bottom: 5px;
    text-decoration: none;
}

.footer .footer-top .footer-products-menu .footer-products-menu-item:hover {
    text-decoration: underline;
}

.footer .footer-copyright {
    font-size: 0.8rem;
    color: #bbb;
    font-family: "Poppins-Regular";
    text-transform: uppercase;
    text-align: center;
    padding: 40px 0 60px 0;
    border-top: 1px solid #383838;
}

@media (max-width: 575px) {
    .footer .footer-copyright {
        padding: 20px 0;
    }
}

.footer .footer-copyright a {
    font-size: 0.8rem;
    color: #bbb;
    font-family: "Poppins-Regular";
    text-transform: uppercase;
    text-decoration: none;
}

.footer .footer-copyright a:hover {
    text-decoration: underline;
}

.footer .footer-col-title {
    display: block;
    color: #777;
    font-size: 0.9rem;
    font-family: "Poppins-SemiBold";
    text-transform: uppercase;
    margin-bottom: 25px;
}

.section-hp-banner .hp-banner {
    position: relative;
}

.section-hp-banner .hp-banner .hp-banner-item {
    position: relative;
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-img {
    width: 100%;
    height: 100%;
    max-height: 890px;
    object-fit: cover;
    aspect-ratio: 1.75/1;
}

@media only screen and (min-width: 1900px) and (max-width: 2561px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-img {
        height: 100vh;
        max-height: unset;
    }
}

@media only screen and (min-width: 1921px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-img {
        max-height: 1350px;
    }
}

@media (max-width: 991px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-img {
        min-height: 750px;
        height: 100vh;
        object-position: center;
    }
}

@media (max-width: 575px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-item-img {
        min-height: 650px;
    }
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 1400px;
    height: 100%;
    padding: 0 12px;
}

@media (max-width: 1600px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
        width: 1320px;
    }
}

@media (max-width: 1399px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
        width: 1140px;
    }
}

@media (max-width: 1199px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
        width: 960px;
    }
}

@media (max-width: 991px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
        width: 720px;
    }
}

@media (max-width: 767px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
        width: 540px;
    }
}

@media (max-width: 575px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-container {
        width: 320px;
    }
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align {
    position: absolute;
    top: 210px;
    left: 12px;
}

@media (max-width: 1199px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align {
        top: 150px;
    }
}

@media (max-width: 575px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align {
        top: 120px;
    }
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align .hp-banner-title {
    font-family: "Poppins-Regular";
    color: #fff;
    width: 600px;
    margin-bottom: 0;
    line-height: 65px;
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align .hp-banner-title span {
    display: block;
    color: #04c7d8;
}

@media (max-width: 767px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align .hp-banner-title {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-title-align .hp-banner-title {
        line-height: 40px;
    }
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-text-align {
    position: absolute;
    bottom: 90px;
    left: 12px;
}

@media (max-width: 991px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-text-align {
        top: 400px;
        bottom: unset;
    }
}

@media (max-width: 575px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-text-align {
        top: 280px;
    }
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-text-align .hp-banner-text {
    width: 100%;
    max-width: 600px;
    color: #fff;
    font-size: 1.6rem;
    line-height: 35px;
    font-family: "Poppins-Regular";
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-text-align .hp-banner-text {
        font-size: 1.3rem;
        line-height: 28px;
    }
}

@media (max-width: 767px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-text-align .hp-banner-text {
        max-width: 550px;
    }
}

@media (max-width: 575px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-text-align .hp-banner-text {
        max-width: 550px;
    }
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-tag-align {
    position: absolute;
    right: 12px;
    bottom: 70px;
}

@media (max-width: 575px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-tag-align {
        right: 0;
        left: 12px;
        bottom: 40px;
    }
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-tag-align .hp-banner-tag {
    display: flex;
    column-gap: 60px;
    max-width: 760px;
    border: 1px solid #68696c;
    border-radius: 10px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 1399px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-tag-align .hp-banner-tag {
        max-width: 550px;
    }
}

@media (max-width: 1199px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-tag-align .hp-banner-tag {
        max-width: 400px;
        flex-direction: column;
        row-gap: 20px;
    }
}

@media (max-width: 575px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-tag-align .hp-banner-tag {
        max-width: 296px;
    }
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-tag-align .hp-banner-tag .hp-banner-tag-col {
    position: relative;
    padding-left: 50px;
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-tag-align .hp-banner-tag svg {
    position: absolute;
    left: 0;
    top: 10px;
    max-width: 35px;
}

@media (max-width: 1199px) {
    .section-hp-banner .hp-banner .hp-banner-item .hp-banner-tag-align .hp-banner-tag svg {
        top: 0;
    }
}

.section-hp-banner .hp-banner .hp-banner-item .hp-banner-tag-align .hp-banner-tag p {
    color: #fff;
    font-size: 1rem;
    line-height: 24px;
    margin-bottom: 0;
}

.star-btn {
    position: relative;
    color: #fff;
    font-family: "Poppins-Medium";
    text-decoration: none;
    padding-left: 25px;
    margin: 30px 0;
    transition: all 0.3s ease;
}

.star-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    background-image: url("../img/star-ico.svg");
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.star-btn:hover {
    text-decoration: underline;
}

.star-btn:hover::before {
    transform: rotate(45deg);
}

.star-btn-black {
    color: #000;
}

.black-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background-color: #1a1a1a;
    color: #fff;
    font-family: "Poppins-Medium";
    font-size: 0.95rem;
    padding: 12px 34px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    cursor: pointer;
}

.black-btn,
.black-btn svg {
    transition: all 0.25s ease;
}

.black-btn svg {
    fill: #fff;
    width: 13px;
    height: 11px;
}

.black-btn:hover {
    background-color: transparent;
    color: #1a1a1a;
}

.black-btn:hover svg {
    fill: #1a1a1a;
}

.black-btn.blue-arrow svg {
    fill: #04c7d8;
}

.black-btn.blue-arrow:hover {
    background-color: #04c7d8;
    border-color: #04c7d8;
    color: #fff;
}

.black-btn.blue-arrow:hover svg {
    fill: #fff;
}

.blue-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background-color: #04c7d8;
    color: #fff;
    font-family: "Poppins-Medium";
    font-size: 0.95rem;
    padding: 12px 34px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #04c7d8;
    cursor: pointer;
}

.blue-btn,
.blue-btn svg {
    transition: all 0.25s ease;
}

.blue-btn svg {
    fill: #fff;
    width: 13px;
    height: 11px;
}

.blue-btn:hover {
    background-color: #0093c4;
    border-color: #0093c4;
    color: #fff;
}

.blue-btn:hover svg {
    fill: #fff;
}

.products-items .row {
    row-gap: 25px;
}

.products-items .products-item {
    height: 100%;
    display: block;
    position: relative;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.products-items .products-item:hover {
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
}

.products-items .products-item a {
    text-decoration: none;
}

.products-items .products-item .products-item-img {
    display: block;
}

.products-items .products-item .products-item-img img {
    padding: 15px;
    width: 100%;
    max-width: 100%;
    height: 250px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.products-items .products-item .products-item-text-content {
    margin-bottom: 55px;
}

.products-items .products-item .products-item-text-content .products-item-title {
    display: block;
    color: #000;
    font-size: 1rem;
    line-height: 25px;
    font-family: "Poppins-Medium";
    margin: 15px 0;
    text-decoration: none;
    transition: all 0.15s ease;
}

.products-items .products-item .products-item-text-content .products-item-title:hover {
    color: #0093c4;
}

.products-items .products-item .products-item-text-content p {
    font-size: 0.9rem;
    line-height: 22px;
    color: #888;
    font-family: "Poppins-Light";
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.products-items .products-item .products-item-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #f9f9f9;
    border-radius: 40px;
    position: absolute;
    bottom: 25px;
    right: 25px;
}

.products-items .products-item .products-item-btn,
.products-items .products-item .products-item-btn svg path {
    transition: all 0.3s ease;
}

.products-items .products-item .products-item-btn:hover {
    background-color: #0093c4;
}

.products-items .products-item .products-item-btn:hover svg path {
    fill: #fff !important;
}

.products-items .products-item:hover .products-item-img img {
    transform: scale(1.05);
}

.products-items .products-item:hover .products-item-btn {
    transform: scale(1.3);
}

.contact {
    gap: 1.5rem 0;
}

@media (max-width: 575px) {
    .contact {
        gap: 0.75rem 0;
    }
}

.contact-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    height: 100%;
}

.contact-item:not(:last-child) {
    margin-bottom: 1.5rem;
}

@media (max-width: 575px) {
    .contact-item {
        padding: 20px;
    }

    .contact-item:not(:last-child) {
        margin-bottom: 0.75rem;
    }
}

.contact-item-icon {
    background-color: #04c7d8;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    padding: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-item p {
    margin-bottom: 0.25rem;
}

.contact-map {
    border-radius: 10px;
    display: block;
    width: fit-content;
    overflow: hidden;
}

.section-pad {
    padding-top: 85px;
}

.section-pad:last-child {
    padding-bottom: 150px;
}

@media (max-width: 991px) {
    .section-pad {
        padding-top: 50px;
    }

    .section-pad:last-child {
        padding-bottom: 80px;
    }
}

@media (max-width: 575px) {
    .section-pad {
        padding-top: 25px;
    }

    .section-pad:last-child {
        padding-bottom: 40px;
    }
}

.section-product-menu .product-menu-items {
    row-gap: 25px;
}

@media (max-width: 575px) {
    .section-product-menu .product-menu-items {
        row-gap: 10px;
        padding: 0 12px;
    }
}

@media (max-width: 575px) {
    .section-product-menu .product-menu-items div {
        padding: 0 5px;
    }
}

.section-product-menu .product-menu-items .product-menu-item {
    height: 100%;
    min-height: 160px;
    padding: 22px;
    outline: 1px solid #04c7d8;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-product-menu .product-menu-items .product-menu-item.no-image {
    gap: 24px;
    min-height: unset;
}

.section-product-menu .product-menu-items .product-menu-item:hover {
    background-color: #04c7d8;
}

.section-product-menu .product-menu-items .product-menu-item img {
    width: auto;
    max-width: 45px;
    height: 100%;
    max-height: 30px;
    object-fit: contain;
}

.section-product-menu .product-menu-items .product-menu-item span {
    color: #000;
    font-size: 1.25rem;
    line-height: 1.4;
    font-family: "Poppins-SemiBold";
}

@media (max-width: 575px) {
    .section-product-menu .product-menu-items .product-menu-item span {
        font-size: 1rem;
    }
}

.section-product-menu .product-menu-items .product-menu-item svg {
    fill: #04c7d8;
}

.section-product-menu .product-menu-items .product-menu-item:hover img {
    filter: brightness(0) invert(1);
}

.section-product-menu .product-menu-items .product-menu-item:hover span {
    color: #fff;
}

.section-product-menu .product-menu-items .product-menu-item:hover svg {
    fill: #fff !important;
}

.section-about .about-box {
    padding: 85px 90px;
    border-radius: 15px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
}

@media (max-width: 575px) {
    .section-about .about-box {
        padding: 40px;
    }
}

.section-about .about-box span {
    font-size: 0.9rem;
    font-family: "Poppins-SemiBold";
    color: #a9a9a9;
    margin-bottom: 10px;
}

.section-about .about-box h2 {
    color: #04c7d8;
    font-family: "Poppins-Medium";
    font-size: 3.7rem;
}

@media (max-width: 575px) {
    .section-about .about-box h2 {
        font-size: 2.3rem;
    }
}

.section-about .about-box h3 {
    color: #fff;
    font-family: "Poppins-Medium";
    margin-bottom: 40px;
}

.section-about .about-box p {
    font-size: 1rem;
    line-height: 30px;
    color: #a9a9a9;
    font-family: "Poppins-Regular";
    margin-bottom: 40px;
}

.section-products {
    position: relative;
}

.section-products::before {
    content: "";
    position: absolute;
    top: -90px;
    left: 0;
    width: 100%;
    height: calc(100% + 90px);
    background-color: #f9f9f9;
    z-index: -1;
}

.section-products .section-products-title-align {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-products .products-items {
    margin-top: 40px;
}

.section-products-title {
    font-family: "Poppins-Medium";
    color: #000;
}

@media (max-width: 991px) {
    .section-products-title {
        padding: 25px 0;
    }
}

.catalog-category-subcategories {
    margin-bottom: 45px;
}

.catalog-category-intro {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    margin-bottom: 45px;
}

.catalog-category-intro .catalog-category-icon-circle {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background-color: #04c7d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .catalog-category-intro .catalog-category-icon-circle {
        display: none;
    }
}

.catalog-category-intro .catalog-category-icon-circle img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.catalog-category-intro p {
    font-family: "Poppins-Regular";
    margin: 0;
}

.catalog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 50px;
}

@media (max-width: 575px) {
    .catalog-pagination {
        margin-top: 30px;
    }
}

.catalog-pagination .catalog-page-item {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: "Poppins-Medium";
    font-size: 0.9rem;
    color: #777;
    text-decoration: none;
    transition: all 0.2s ease;
}

.catalog-pagination .catalog-page-item:hover,
.catalog-pagination .catalog-page-item.active {
    background-color: #04c7d8;
    color: #fff;
}

.catalog-pagination .catalog-page-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #bbb;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.catalog-pagination .catalog-page-arrow:first-child img {
    transform: rotate(180deg);
}

.catalog-pagination .catalog-page-arrow:hover {
    color: #04c7d8;
}

.section-product-detail {
    margin-bottom: 70px;
}

@media (max-width: 767px) {
    .section-product-detail {
        margin-bottom: 55px;
    }
}

.section-product-detail .product-detail-main {
    display: flex;
    gap: 45px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .section-product-detail .product-detail-main {
        flex-direction: column;
        gap: 30px;
    }
}

.section-product-detail .product-detail-main .product-detail-image {
    flex: 1;
    border-radius: 10px;
    padding: 25px;
    background: #fff;
}

.section-product-detail .product-detail-main .product-detail-image img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
}

.section-product-detail .product-detail-main .product-detail-info {
    flex: 1;
}

.section-product-detail .product-detail-main .product-detail-info-description {
    margin-bottom: 30px;
}

.section-product-detail .product-detail-main .product-detail-info p {
    font-family: "Poppins-Regular";
    margin-bottom: 20px;
}

.section-product-detail .product-detail-main .product-detail-info-custom {
    color: #222;
    display: block;
    margin-bottom: 30px;
}

.section-price-table {
    margin-bottom: 70px;
}

@media (max-width: 767px) {
    .section-price-table {
        margin-bottom: 55px;
    }
}

.section-price-table .price-table-wrap {
    overflow-x: auto;
    border: 0;
    border-radius: 8px;
}

.section-price-table .price-table {
    width: 100%;
    min-width: 560px;
    text-align: center;
}

@media (max-width: 767px) {
    .section-price-table .price-table {
        min-width: 0;
    }
}

.section-price-table .price-table .price-table-header .price-table-row {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.section-price-table .price-table .price-table-header .price-table-row:first-child {
    background-color: #e8e8e8;
}

.section-price-table .price-table .price-table-header .price-table-row:last-child .price-table-th {
    background-color: #f5f5f5;
    font-family: "Poppins-Regular";
    font-size: 0.82rem;
}

.section-price-table .price-table .price-table-header .price-table-th {
    flex: 1;
    padding: 12px 18px;
    font-family: "Poppins-SemiBold";
    font-size: 0.88rem;
    border-bottom: 1px solid #ebebeb;
}

.section-price-table .price-table .price-table-header .price-table-th.colspan-3 {
    flex: 3;
}

@media (max-width: 767px) {
    .section-price-table .price-table .price-table-header {
        display: none;
    }
}

.section-price-table .price-table .price-table-body .price-table-row {
    display: flex;
    border-bottom: 1px solid #ebebeb;
    transition: background-color 0.2s ease;
}

.section-price-table .price-table .price-table-body .price-table-row:hover {
    background-color: #fafafa;
}

@media (max-width: 767px) {
    .section-price-table .price-table .price-table-body .price-table-row {
        flex-direction: column;
        margin-bottom: 12px;
        border: 1px solid #ebebeb;
        border-radius: 8px;
        padding: 15px;
        background-color: #fff;
    }

    .section-price-table .price-table .price-table-body .price-table-row:hover {
        background-color: #fff;
    }
}

.section-price-table .price-table .price-table-body .price-table-cell {
    flex: 1;
    padding: 12px 18px;
    font-family: "Poppins-Regular";
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .section-price-table .price-table .price-table-body .price-table-cell {
        padding: 8px 8px;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
    }

    .section-price-table .price-table .price-table-body .price-table-cell:last-child {
        border-bottom: none;
    }

    .section-price-table .price-table .price-table-body .price-table-cell::before {
        content: attr(data-label);
        font-family: "Poppins-Medium";
        color: #888;
        font-size: 0.82rem;
        text-align: left;
        margin-right: auto;
    }

    .section-price-table .price-table .price-table-body .price-table-cell:first-child {
        font-family: "Poppins-Medium";
        background-color: #e8e8e8;
        border-radius: 8px;
        padding: 8px 16px;
        margin-bottom: 8px;
        font-size: 1rem;
        justify-content: center;
    }

    .section-price-table .price-table .price-table-body .price-table-cell:first-child::before {
        margin-right: 4px;
        color: #232323;
    }
}

.section-price-table .price-table .price-table-body .price-cell {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .section-price-table .price-table .price-table-body .price-cell {
        white-space: normal;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

.section-price-table .price-table .price-table-body .price-cell .price-val {
    font-family: "Poppins-SemiBold";
    color: #222;
}

.section-price-table .price-table .price-table-body .price-cell .price-cart-btn {
    background: none;
    border: none;
    padding: 0;
    margin-left: 6px;
    cursor: pointer;
    vertical-align: middle;
    color: #04c7d8;
    transition: color 0.2s ease;
}

.section-price-table .price-table .price-table-body .price-cell .price-cart-btn svg {
    fill: #04c7d8;
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.section-price-table .price-table .price-table-body .price-cell .price-cart-btn:hover svg {
    fill: #0093c4;
}

.section-price-table .price-table-note {
    font-size: 16px;
    font-family: "Poppins-Regular";
    margin-top: 14px;
}

@media (max-width: 767px) {
    .section-price-table .price-table-note {
        font-size: 14px;
        margin: 0px;
    }
}

.section-inquiry-form .inquiry-form-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.025);
}

@media (max-width: 575px) {
    .section-inquiry-form .inquiry-form-box {
        padding: 20px;
    }
}

.section-inquiry-form .inquiry-form-box .row {
    row-gap: 0;
}

.section-inquiry-form .inquiry-form-box .form-control {
    border: 0;
    border-radius: 7px;
    padding: 16px 20px;
    font-family: "Poppins-Regular";
    font-size: 0.92rem;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    color: #707070;
}

.section-inquiry-form .inquiry-form-box .form-control:focus {
    box-shadow: 0 0 0 0.18rem rgba(4, 199, 216, 0.18);
    outline: none;
}

.section-inquiry-form .inquiry-form-box .form-control::placeholder {
    color: #707070;
}

.section-inquiry-form .inquiry-form-box textarea.form-control {
    height: calc(100% - 15px);
    min-height: 145px;
    resize: none;
}

.poptavka-steps {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

@media (max-width: 993px) {
    .poptavka-steps {
        padding-top: 35px;
    }
}

@media (max-width: 575px) {
    .poptavka-steps {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 35px;
    }
}

.poptavka-steps .poptavka-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: "Poppins-Medium";
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid #04c7d8;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .poptavka-steps .poptavka-step {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

.poptavka-steps .poptavka-step.active {
    background-color: #04c7d8;
    color: #fff;
}

.poptavka-steps .poptavka-step:not(.active) {
    background-color: transparent;
    color: #04c7d8;
}

.poptavka-steps .poptavka-step:not(.active):hover {
    background-color: rgba(4, 199, 216, 0.08);
}

.poptavka-steps .poptavka-steps-arrow {
    width: 51px;
    height: auto;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .poptavka-steps .poptavka-steps-arrow {
        display: none;
    }
}

.poptavka-section {
    margin-bottom: 70px;
}

@media (max-width: 767px) {
    .poptavka-section {
        margin-bottom: 55px;
    }
}

.poptavka-table-wrap {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.poptavka-table {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.poptavka-table-header {
    display: none !important;
    background-color: #e8e8e8;
    border-radius: 8px;
}

@media (min-width: 992px) {
    .poptavka-table-header {
        display: flex !important;
    }
}

.poptavka-table-header .poptavka-table-cell {
    padding: 15px 20px;
    font-family: "Poppins-SemiBold";
    font-size: 0.88rem;
    text-align: left;
    white-space: nowrap;
}

.poptavka-table-header .poptavka-table-cell.poptavka-img-cell {
    flex: 0.5;
    padding: 15px 20px;
}

.poptavka-table-header .poptavka-table-cell:nth-child(2) {
    flex: 2.5;
}

.poptavka-table-header .poptavka-table-cell:nth-child(3) {
    flex: 0.7;
}

.poptavka-table-header .poptavka-table-cell:nth-child(4),
.poptavka-table-header .poptavka-table-cell:nth-child(5) {
    flex: 0.7;
    text-align: center;
}

.poptavka-table-header .poptavka-table-cell:last-child {
    flex: 0.1;
}

.poptavka-table-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.15s ease;
    position: relative;
}

@media (min-width: 992px) {
    .poptavka-table-row {
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .poptavka-table-row {
        padding: 24px;
        gap: 12px;
    }
}

.poptavka-table-row:last-child {
    border-bottom: none;
}

.poptavka-table-row.poptavka-table-header {
    border-bottom: none;
}

.poptavka-table-cell {
    padding: 15px 20px;
    font-family: "Poppins-Regular";
    font-size: 0.92rem;
    color: #333;
    vertical-align: middle;
    position: relative;
}

.poptavka-table-cell:nth-child(4),
.poptavka-table-cell:nth-child(5) {
    flex: 0.8;
    text-align: center;
    font-family: "Poppins-SemiBold";
    color: #222;
}

@media (min-width: 992px) {
    .poptavka-table-cell {
        padding: 18px 20px;
    }
}

@media (max-width: 991px) {
    .poptavka-table-cell {
        padding: 0;
    }

    .poptavka-table-cell[data-label]:not([data-label=""]) {
        padding-left: 20px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .poptavka-table-cell[data-label]:not([data-label=""])::before {
        content: attr(data-label) ":";
        position: static;
        transform: none;
        font-family: "Poppins-Regular";
    }

    .poptavka-table-cell[data-label=""] {
        display: flex;
        justify-content: flex-end;
        padding: 10px 20px;
    }

    .poptavka-table-cell:nth-child(4),
    .poptavka-table-cell:nth-child(5) {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .poptavka-table-cell.poptavka-img-cell {
        flex: 0.5;
        padding: 18px 20px;
    }

    .poptavka-table-cell:nth-child(2) {
        flex: 2.5;
    }

    .poptavka-table-cell:nth-child(3) {
        flex: 0.7;
    }

    .poptavka-table-cell:nth-child(4),
    .poptavka-table-cell:nth-child(5) {
        flex: 0.7;
    }

    .poptavka-table-cell:last-child {
        flex: 0.1;
        justify-content: center;
    }
}

.poptavka-img-cell img {
    width: 125px;
    height: 75px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .poptavka-img-cell img {
        margin: 0;
        object-position: left;
    }
}

.poptavka-product-name {
    font-family: "Poppins-Medium";
    font-size: 0.88rem;
    color: #222;
    display: block;
}

.poptavka-qty {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.poptavka-qty .qty-input {
    width: 50px;
    padding: 6px 10px;
    border: 0;
    height: 44px;
    background-color: #f9f9f9;
    border-radius: 4px;
    font-size: 0.92rem;
    text-align: center;
    font-family: "Poppins-Regular";
    order: 1;
}

.poptavka-qty .qty-input:focus {
    outline: none;
    border-color: #04c7d8;
}

.poptavka-qty .qty-input::-webkit-outer-spin-button,
.poptavka-qty .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.poptavka-qty .qty-input[type=number] {
    -moz-appearance: textfield;
}

.poptavka-qty .qty-controls {
    display: flex;
    flex-direction: column;
    gap: 2px;
    order: 2;
}

.poptavka-qty .qty-btn {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 3px;
    background: #999;
    cursor: pointer;
    font-size: 0.75rem;
    color: #fff;
    line-height: 1;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.poptavka-qty .qty-btn:hover {
    background: #777;
}

.poptavka-qty .qty-btn.qty-btn-plus {
    order: 1;
}

.poptavka-qty .qty-btn.qty-btn-minus {
    order: 2;
}

.poptavka-price {
    font-family: "Poppins-Medium";
    font-size: 0.92rem;
    color: #333;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .poptavka-price {
        text-align: center;
    }
}

@media (max-width: 991px) {
    .poptavka-price {
        padding: 0 !important;
        text-align: left;
        display: block;
        width: 100%;
    }
}

.poptavka-remove-btn {
    width: auto;
    height: auto;
    border-radius: 0;
    border: none;
    background: transparent;
    color: #04c7d8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.poptavka-remove-btn:hover {
    opacity: 0.7;
}

.poptavka-remove-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .poptavka-remove-cell {
        position: absolute;
        top: 16px;
        right: 16px;
        padding: 0 !important;
    }
}

.poptavka-summary {
    display: flex;
    justify-content: flex-end;
    gap: 0;
    padding: 40px;
    border-top: 1px solid #e8e8e8;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .poptavka-summary {
        gap: 25px;
        padding: 24px;
    }
}

@media (max-width: 991px) {
    .poptavka-summary {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
    }
}

.poptavka-summary .summary-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 155px;
}

@media (max-width: 991px) {
    .poptavka-summary .summary-col {
        text-align: left;
        align-items: flex-start;
    }
}

.poptavka-summary .summary-col .summary-label {
    font-family: "Poppins-Regular";
    font-size: 14px;
}

.poptavka-summary .summary-col .summary-value {
    font-family: "Poppins-SemiBold";
    font-size: 1rem;
    line-height: 28px;
}

.poptavka-summary .summary-col.summary-total .summary-value {
    color: #04c7d8;
    font-family: "Poppins-Bold";
    font-size: 1.5rem;
}

/*# sourceMappingURL=main.css.map */