:root {
    --primary: #323232;
    --secondary: #ffffff;
    --accent: #4a4a4a;
    --gray: #f5f5f5;
    --dark-gray: #e0e0e0;
    --text: #323232;
    --text-light: #666666;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
}

[data-theme="dark"] {
    --primary: #ffffff;
    --secondary: #1a1a1a;
    --accent: #6c6c6c;
    --gray: #2a2a2a;
    --dark-gray: #3a3a3a;
    --text: #ffffff;
    --text-light: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}
input{
    outline: none !important;
}

/* Custom Cursor */
.cursor, .cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transition: transform 0.2s ease;
    display: none !important;
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    top: -4px;
    left: -4px;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    top: -20px;
    left: -20px;
    transition: all 0.2s ease-out;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--secondary);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

[data-theme="dark"] .header {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
}

.logo-icon {
    width: 40px;
    height: 40px;

}
.logo-icon img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.logo-text {
    color: var(--text);
}

.logo-highlight {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text);
    transition: var(--transition);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg .circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), transparent);
    opacity: 0.05;
    animation: float 20s infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -200px;
    animation-delay: -5s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--accent), 0.1);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.category-card {
    width: 16%;
    background: var(--secondary);
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-card i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 16px;
    color: var(--text);
}

/* Products Grid */
.products-section {
    padding: 80px 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.search-box {
    display: flex;
    gap: 10px;
    background: var(--gray);
    padding: 5px 15px;
    border-radius: 50px;
}

.search-box input {
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text);
    outline: none;
    min-width: 200px;

}

.search-box button {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    color: var(--accent);
}

.filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--dark-gray);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.product-category {
    font-size: 12px;
    color: var(--text-light);
    background: var(--gray);
    padding: 4px 10px;
    border-radius: 50px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 15px;
}

.price-currency {
    font-size: 14px;
    font-weight: 400;
}

/* Product Detail Page */
.product-name{
    padding: 120px 0 0 0;
    position: relative;
}
.product-name-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-detail {
    padding: 40px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}
.product-detail-list{
    padding: 20px;
}
.product-detail-list-item{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.product-detail-list-item+.product-detail-list-item{
    margin-top: 10px;
    border-top: 1px solid var(--primary);
    padding-top: 10px;
}
.product-detail-list-item-icon{
    font-size: 18px;
    width: 24px;
    text-align: center;
}
.product-detail-list-item-title{
    width: calc( 100% - 24px );
    padding-left: 10px;
    font-size: 18px;
    font-weight: 700;
}
.product-detail-list-slogan{
    margin: 10px 0;
    font-weight: 700;
}
.product-detail-list-item-price{
    margin-left: auto;
    font-weight: 700;
}



.product-detail-info h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.product-price-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-left: 20px;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-features {
    margin: 30px 0;
}

.product-features h3 {
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--accent);
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    position: fixed;
    left: 50%;
    bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    background: var(--secondary);
}

/* Services Section */
.services {
    background: var(--gray);

    border-radius: 20px;

}

.services h3 {
    font-size: 24px;
    margin: 20px 0;
    text-align: center;
}
.services-slogan{
    text-align: center;
    margin-bottom: 10px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-item {
    margin: 10px;
    height: 100%;
    background: var(--secondary);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-item h4 {
    font-size: 20px;
    margin: 5px 0;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin: 5px 0;
}
@media screen and (max-width: 768px){
    .product-name-title{
        font-size: 12px;
    }
    .product-name-price .product-price-large{
        margin: 0;
        font-size: 30px;
    }

}
@media screen and (max-width: 574px){
    .product-name-title{
        font-size: 9px;
    }
    .product-name-price .product-price-large{
        margin: 0;
        font-size: 25px;
    }
    .product-detail-list{
        text-align: center;
    }
    .product-detail-list-item{
        justify-content: center;

    }
    .product-detail-list-item-decription{
        font-size: 14px;
        width: 100%;
    }
    .product-detail-list-item-price{
        margin-left: 0;

        width: 100%;
    }
    .product-detail-list-item-title{
        width: auto;
    }

}



/* Demo Page */
.demo-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.demo-header {
    background: var(--secondary);
    padding: 15px 0;
    border-bottom: 1px solid var(--dark-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.demo-controls {
    display: flex;
    gap: 15px;
}

.demo-btn {
    padding: 8px 20px;
    border: 1px solid var(--dark-gray);
    background: var(--secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.demo-btn.active {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.demo-frame {
    flex: 1;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}

.demo-frame.desktop {
    width: 100%;
}

.demo-frame.mobile {
    width: 375px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border-radius: 20px;
}

/* Contact Page */
.contact-section {
    padding: 120px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
}

.contact-form {
    background: var(--gray);
    padding: 30px;
    border-radius: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--dark-gray);
    border-radius: 12px;
    background: var(--secondary);
    color: var(--text);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #323232 !important;
    color: white;
    padding: 60px 0 0 0;

}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    background: #fff;
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 10px;
    .logo-text{
        color: #323232 ;
    }
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: inline-flex;
    border-radius: 10px;
    gap: 15px;
    background: #323232 !important;
    padding: 10px;

}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    position: relative;
    margin-bottom: 20px;
}
.footer-multi img{
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;

}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px){
    .category-card{
        width: 31%;
        margin: 1%;
    }
}
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .product-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-detail-image{
        .service-item{
            padding: 5px;
            .fas{
                display: none;
            }
        }
    }
    .product-actions{
        width: 100%;
        justify-content: center;
        left: 0;
        bottom: 0;
        border-radius: 10px 10px 0 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .products-header {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contacts li {
        justify-content: center;
    }
    .category-card{
        width: 48%;
    }
    .footer-logo .logo{
        justify-content: center;
    }
    .search-box,
    .search-box form{
        width: 100%;
    }
    .products-header{
        gap: 0;
    }
    .search-box{
        padding: 2px 10px;
    }
    .search-box form{
        padding: 0 15px;
    }
    .search-box input{
        padding: 0 !important;
        height: 100%;
    }

}

@media (max-width: 574px){
    .product-actions{
        display: block;
    }
    .btn{
        width: 100%;
        margin: 5px 0;
    }
}

/* ========== PRELOADER ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-wrapper {
    text-align: center;
    position: relative;
}

.preloader-logo {
    margin-bottom: 30px;
    animation: pulseLogo 1.5s ease-in-out infinite;
}

.preloader-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 20px;
    font-size: 48px;
    font-weight: 800;
    line-height: 80px;
    color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@keyframes pulseLogo {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Анімовані кільця */
.preloader-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: rotateRing 2s linear infinite;
}

.ring:nth-child(1) {
    border-top-color: var(--accent);
    animation-duration: 1.2s;
}

.ring:nth-child(2) {
    border-right-color: var(--primary);
    animation-duration: 1.5s;
    animation-direction: reverse;
}

.ring:nth-child(3) {
    border-bottom-color: var(--accent);
    animation-duration: 1.8s;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Анімований текст */
.preloader-text {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

.preloader-text span {
    color: var(--text);
    animation: bounceText 0.8s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

.preloader-text span:nth-child(1) { --i: 1; }
.preloader-text span:nth-child(2) { --i: 2; }
.preloader-text span:nth-child(3) { --i: 3; }
.preloader-text span:nth-child(4) { --i: 4; }
.preloader-text span:nth-child(5) { --i: 5; }
.preloader-text span:nth-child(6) { --i: 6; }
.preloader-text span:nth-child(7) { --i: 7; }
.preloader-text span:nth-child(8) { --i: 8; }

.preloader-text .dot {
    color: var(--accent);
    animation: none;
}

@keyframes bounceText {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
        color: var(--accent);
    }
}

/* Прогрес-бар */
.preloader-progress {
    width: 250px;
    height: 4px;
    background: var(--gray);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto 15px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 4px;
    transition: width 0.1s linear;
}

.preloader-percent {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
}

/* Темна тема */
[data-theme="dark"] #preloader {
    background: var(--secondary);
}

[data-theme="dark"] .preloader-text span {
    color: var(--text);
}


.h-modal{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba( 0,0,0,0.9 );
    z-index: 2;
    display: none;
    padding: 200px 15px 15px 15px;
}
.h-modal-content{
    width: 500px;
    max-width: 100%;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 10px;
    padding: 80px 20px 20px 20px;
    text-align: center;
    position: relative;
    margin: auto;
}
.h-modal-content-close{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--secondary);
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: var(--transition);
}
.h-modal-content-close:hover{
    transform: scale(1.08);
}
.h-modal-content-item-title{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}
.h-modal-content-item-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.h-modal-content-item-btn-item{
    margin: 5px;
}