/* ===== HOZPARTNER THEME STYLES ===== */
/* Reset and Base Styles */
.hozpartner-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hozpartner-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.3;
    color: #333;
    background-color: #f9f9f9;
}

.hozpartner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
.hozpartner-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hozpartner-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    gap: 70px;
}

/* Десктоп: 4 колонки равномерно */
.hozpartner-logo-col {
    flex: 1;
    min-width: 25%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hozpartner-logo img {
    height: 90px;
    max-width: 100%;
}

.hozpartner-logo p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
    text-align: center;
}

.hozpartner-contact-cols {
    display: flex;
    flex: 3;
    min-width: 75%;
    justify-content: space-between;
    gap: 10px;
}

.hozpartner-contact-col {
    flex: 1;
    min-width: 0;
    text-align: center;
    font-size: 16px;
    padding: 5px;
    border-left: 1px solid #eee;
}

.hozpartner-contact-col:first-child {
    border-left: none;
}

.hozpartner-phone strong {
    font-size: 16px;
    color: #007BFF;
    display: block;
    margin: 5px 0;
}

.hozpartner-callback {
    display: inline-block;
    margin-top: 8px;
    background: #4CAF50;
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    transition: background 0.3s;
    text-align: center;
    width: 100%;
    max-width: 150px;
    border: none;
    cursor: pointer;
}

.hozpartner-callback:hover {
    background: #45a049;
    color: white;
    text-decoration: none;
}

.hozpartner-social-icons a {
    margin-right: 8px;
    display: inline-block;
}

.hozpartner-social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.hozpartner-social-icons a:hover img {
    transform: scale(1.1);
}

.hozpartner-address .hozpartner-map-link {
    display: inline-block;
    margin-top: 5px;
    color: #007BFF;
    text-decoration: underline;
    font-size: 12px;
}

.hozpartner-phone-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 6px;
    margin: 5px 0;
}

.hozpartner-phone-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.hozpartner-phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hozpartner-phone-numbers strong {
    font-size: 16px;
    color: #007BFF;
    font-weight: bold;
}

/* --- MAIN NAV --- */
.hozpartner-main-nav {
    width: 100%;
    background: #1e73be;
    position: relative;
}

.hozpartner-main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.hozpartner-main-nav li {
    flex: 1;
    text-align: center;
}

.hozpartner-main-nav li a {
    display: block;
    color: white;
    padding: 12px 10px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.hozpartner-main-nav li a:hover {
    background: #1a60a0;
    color: white;
    text-decoration: none;
}

/* Мобильное меню (гамбургер) */
.hozpartner-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: #1e73be;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: none;
}

.hozpartner-menu-toggle div {
    width: 24px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
}

/* --- HERO SLIDER --- */
.hozpartner-hero-slider {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    padding: 20px 0;
}

.hozpartner-slider-container {
    display: flex;
    width: 100%;
}

.hozpartner-slide {
    display: none;
    width: 100%;
    padding: 15px;
}

.hozpartner-slide.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hozpartner-slide-image {
    flex: 1;
    text-align: center;
    width: 100%;
}

.hozpartner-slide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.hozpartner-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.hozpartner-icon {
    background: #e0f7fa;
    padding: 8px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hozpartner-slide-text {
    flex: 1;
    text-align: center;
    padding: 0;
}

.hozpartner-slide-text h2 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
}

.hozpartner-btn-green {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.hozpartner-btn-green:hover {
    background: #45a049;
    color: white;
    text-decoration: none;
}

.hozpartner-slider-dots {
    text-align: center;
    padding: 10px 0;
}

.hozpartner-dot {
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.hozpartner-dot.active {
    background: #4CAF50;
}

/* --- ADVANTAGES SECTION --- */
.hozpartner-advantages {
    padding: 40px 0;
    background: #fff;
}

.hozpartner-advantages h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 24px;
    color: #333;
}

.hozpartner-advantages p.subtitle {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.hozpartner-advantages-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
}

.hozpartner-advantages-list h3 {
    margin: 20px 0 10px;
    color: #1e73be;
    font-size: 18px;
}

.hozpartner-advantages-list ul {
    padding-left: 20px;
    margin: 0;
}

.hozpartner-advantages-list li {
    margin: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hozpartner-advantages-list li::before {
    content: "✅";
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

/* --- CATEGORIES SECTION --- */
.hozpartner-categories {
    padding: 40px 0;
    background: #f5f5f5;
    position: relative;
}

.hozpartner-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4CAF50, transparent);
}

.hozpartner-categories h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #333;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.hozpartner-categories h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #4CAF50;
    border-radius: 2px;
}

.hozpartner-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hozpartner-category-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #4CAF50;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hozpartner-category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.6s;
}

.hozpartner-category-item:hover::before {
    left: 100%;
}

.hozpartner-category-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-left-color: #45a049;
}

.hozpartner-category-item h3 {
    margin-bottom: 15px;
    color: #1e73be;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s;
}

.hozpartner-category-item:hover h3 {
    padding-left: 10px;
}

.hozpartner-category-item h3::before {
    content: '▸';
    position: absolute;
    left: -15px;
    color: #4CAF50;
    opacity: 0;
    transition: all 0.3s;
}

.hozpartner-category-item:hover h3::before {
    opacity: 1;
    left: 0;
}

.hozpartner-category-item p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    color: #666;
}

.hozpartner-category-item ul {
    padding-left: 20px;
    margin-top: 15px;
    margin-bottom: 0;
}

.hozpartner-category-item li {
    margin: 8px 0;
    position: relative;
    color: #555;
    transition: color 0.3s;
}

.hozpartner-category-item li::marker {
    color: #4CAF50;
    font-size: 1.2em;
}

.hozpartner-category-item:hover li {
    color: #333;
}

/* Анимация появления элементов */
.hozpartner-category-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.hozpartner-category-item:nth-child(1) { animation-delay: 0.1s; }
.hozpartner-category-item:nth-child(2) { animation-delay: 0.2s; }
.hozpartner-category-item:nth-child(3) { animation-delay: 0.3s; }
.hozpartner-category-item:nth-child(4) { animation-delay: 0.4s; }
.hozpartner-category-item:nth-child(5) { animation-delay: 0.5s; }
.hozpartner-category-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .hozpartner-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 900px;
    }
    
    .hozpartner-categories h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hozpartner-categories {
        padding: 30px 0;
    }
    
    .hozpartner-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .hozpartner-categories h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .hozpartner-category-item {
        padding: 20px;
    }
    
    .hozpartner-category-item h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hozpartner-categories {
        padding: 25px 0;
    }
    
    .hozpartner-categories-grid {
        padding: 0 15px;
        gap: 15px;
    }
    
    .hozpartner-categories h2 {
        font-size: 22px;
    }
    
    .hozpartner-category-item {
        padding: 18px;
    }
    
    .hozpartner-category-item h3 {
        font-size: 17px;
    }
    
    .hozpartner-category-item p {
        font-size: 14px;
    }
}

/* Темная тема поддержка */
@media (prefers-color-scheme: dark) {
    .hozpartner-categories {
        background: #2d3748;
    }
    
    .hozpartner-categories h2 {
        color: #e2e8f0;
    }
    
    .hozpartner-category-item {
        background: #4a5568;
        color: #e2e8f0;
    }
    
    .hozpartner-category-item h3 {
        color: #90cdf4;
    }
    
    .hozpartner-category-item p {
        color: #cbd5e0;
    }
    
    .hozpartner-category-item li {
        color: #cbd5e0;
    }
    
    .hozpartner-category-item:hover li {
        color: #e2e8f0;
    }
}

/* Дополнительные модификаторы для разных цветовых схем */
.hozpartner-categories.blue-theme .hozpartner-category-item {
    border-left-color: #2196F3;
}

.hozpartner-categories.blue-theme h2::after {
    background: #2196F3;
}

.hozpartner-categories.orange-theme .hozpartner-category-item {
    border-left-color: #FF9800;
}

.hozpartner-categories.orange-theme h2::after {
    background: #FF9800;
}

.hozpartner-categories.purple-theme .hozpartner-category-item {
    border-left-color: #9C27B0;
}

.hozpartner-categories.purple-theme h2::after {
    background: #9C27B0;
}

/* --- CONTACT US SECTION --- */
.hozpartner-contact-us {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.hozpartner-contact-us h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.hozpartner-contact-info-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hozpartner-contact-info-box p {
    margin: 10px 0;
    font-size: 16px;
}

.hozpartner-contact-info-box .phone {
    font-size: 18px;
    color: #007BFF;
    font-weight: bold;
    margin: 15px 0;
}

.hozpartner-contact-info-box .email {
    color: #007BFF;
    text-decoration: underline;
    margin: 10px 0;
    display: inline-block;
}

.hozpartner-contact-info-box .hozpartner-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.hozpartner-btn-contact {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-top: 15px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.hozpartner-btn-contact:hover {
    background: #45a049;
    color: white;
    text-decoration: none;
}

/* --- FOOTER --- */
.hozpartner-footer {
    background: #333;
    color: white;
    padding: 25px 0 15px;
    margin-top: 40px;
}

.hozpartner-footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.hozpartner-col h4 {
    margin-bottom: 10px;
    font-size: 14px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 3px;
}

.hozpartner-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hozpartner-col ul li a {
    color: #ddd;
    text-decoration: none;
    display: block;
    padding: 3px 0;
    font-size: 12px;
    transition: color 0.3s;
}

.hozpartner-col ul li a:hover {
    color: #4CAF50;
    text-decoration: none;
}

.hozpartner-contact-col .hozpartner-contact-info p {
    margin: 5px 0;
    font-size: 13px;
}

.hozpartner-subscribe {
    display: flex;
    margin-top: 10px;
    gap: 5px;
}

.hozpartner-subscribe input {
    flex: 1;
    padding: 6px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 12px;
}

.hozpartner-subscribe button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.hozpartner-subscribe button:hover {
    background: #45a049;
}

.hozpartner-copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #555;
    font-size: 11px;
    color: #aaa;
}

/* ===== RESPONSIVE STYLES ===== */

/* --- МОБИЛЬНАЯ ВЕРСИЯ (max-width: 768px) --- */
@media (max-width: 768px) {
    .hozpartner-header-top {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }

    .hozpartner-logo-col {
        flex: 1;
        min-width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hozpartner-logo img {
        height: 50px;
    }

    .hozpartner-logo p {
        font-size: 12px;
    }

    /* Скрыть "Наш адрес" на мобилке */
    .hozpartner-contact-col:nth-child(3) {
        display: none;
    }

    /* Перестроить контакты */
    .hozpartner-contact-cols {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hozpartner-contact-col {
        flex: 1;
        min-width: auto;
        text-align: center;
        padding: 8px;
        border: 1px solid #eee;
        border-radius: 4px;
        background: #f9f9f9;
    }

    .hozpartner-contact-col:first-child {
        border-top: none;
    }

    .hozpartner-phone strong {
        font-size: 14px;
    }

    .hozpartner-callback {
        font-size: 17px;
        padding: 3px 8px;
        max-width: 100%;
    }

    .hozpartner-social-icons img {
        width: 30px;
        height: 30px;
    }

    /* Компактный блок контактов с иконками */
    .hozpartner-contact-col:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        padding: 10px;
    }

    .hozpartner-contact-col:first-child .hozpartner-phone {
        display: flex;
        align-items: center;
        gap: 5px;
        justify-content: center;
        font-size: 14px;
        color: #007BFF;
        margin: 5px 0;
    }

    .hozpartner-contact-col:first-child .hozpartner-phone span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .hozpartner-contact-col:first-child .hozpartner-social-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 5px 0;
    }

    .hozpartner-contact-col:first-child .hozpartner-email {
        display: flex;
        align-items: center;
        gap: 5px;
        justify-content: center;
        color: #007BFF;
        text-decoration: underline;
        font-size: 12px;
        margin: 5px 0;
    }

    .hozpartner-contact-col:first-child .hozpartner-email::before {
        content: "✉";
        font-weight: bold;
    }

    .hozpartner-contact-col:first-child .hozpartner-phone::before {
        content: "📞";
        font-weight: bold;
        margin-right: 5px;
    }

    /* Кнопка гамбургер */
    .hozpartner-menu-toggle {
        display: flex;
        position: absolute;
        top: 10px;
        right: 15px;
        z-index: 1000;
    }

    .hozpartner-main-nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
        background: #1e73be;
        margin-top: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
    }

    .hozpartner-main-nav ul.show {
        display: flex;
    }

    .hozpartner-main-nav li {
        flex: none;
    }

    .hozpartner-main-nav li a {
        padding: 12px 20px;
        text-align: left;
    }

    /* Скрыть слайдер на мобилке */
    .hozpartner-hero-slider {
        display: none;
    }

    /* Mobile adjustments for new sections */
    .hozpartner-advantages-list {
        padding: 15px;
        font-size: 14px;
    }

    .hozpartner-advantages-list h3 {
        font-size: 16px;
    }

    .hozpartner-categories-grid {
        grid-template-columns: 1fr;
    }

    .hozpartner-category-item {
        padding: 15px;
        font-size: 14px;
    }

    .hozpartner-category-item h3 {
        font-size: 16px;
    }

    .hozpartner-contact-info-box {
        padding: 15px;
        font-size: 14px;
    }

    .hozpartner-contact-info-box .phone {
        font-size: 16px;
    }

    .hozpartner-advantages-list li {
        font-size: 14px;
    }

    .hozpartner-container {
        padding: 0 15px;
    }
}

/* --- Очень маленькие экраны (max-width: 480px) --- */
@media (max-width: 480px) {
    .hozpartner-phone-contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hozpartner-phone-icon img {
        width: 24px;
        height: 24px;
    }

    .hozpartner-phone-numbers strong {
        font-size: 14px;
    }
    
    .hozpartner-logo img {
        height: 45px;
    }

    .hozpartner-logo p {
        font-size: 11px;
    }

    .hozpartner-contact-info {
        font-size: 11px;
    }

    .hozpartner-phone strong {
        font-size: 14px;
    }

    .hozpartner-main-nav li a {
        padding: 6px 10px;
        font-size: 12px;
    }

    .hozpartner-slide-text h2 {
        font-size: 16px;
    }

    .hozpartner-btn-green {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hozpartner-footer-columns {
        grid-template-columns: 1fr;
    }

    .hozpartner-advantages-list {
        font-size: 13px;
    }

    .hozpartner-categories-grid {
        grid-template-columns: 1fr;
    }

    .hozpartner-category-item {
        padding: 12px;
        font-size: 13px;
    }

    .hozpartner-contact-info-box {
        font-size: 13px;
    }
}

/* --- Планшеты (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .hozpartner-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Улучшения для очень маленьких экранов (max-width: 360px) --- */
@media (max-width: 360px) {
    .hozpartner-container {
        padding: 0 10px;
    }
    
    .hozpartner-logo img {
        height: 40px;
    }
    
    .hozpartner-phone-numbers strong {
        font-size: 13px;
    }
    
    .hozpartner-advantages-list {
        padding: 10px;
        font-size: 12px;
    }
    
    .hozpartner-category-item {
        padding: 10px;
    }
    
    .hozpartner-contact-info-box {
        padding: 10px;
    }
}

/* ===== OPEN CART SPECIFIC OVERRIDES ===== */
/* Чтобы наши стили не конфликтовали с базовыми стилями OpenCart */
.hozpartner-theme-wrapper * {
    box-sizing: border-box;
}

/* Убедимся, что наши элементы имеют приоритет */
.hozpartner-header,
.hozpartner-main-nav,
.hozpartner-hero-slider,
.hozpartner-advantages,
.hozpartner-categories,
.hozpartner-contact-us,
.hozpartner-footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

/* Сброс стилей для контейнеров внутри наших секций */
.hozpartner-container .container,
.hozpartner-container .container-fluid {
    max-width: none;
    padding: 0;
}

/* Адаптация для форм OpenCart внутри нашего дизайна */
.hozpartner-contact-info-box form {
    margin: 20px 0;
}

.hozpartner-contact-info-box .form-group {
    margin-bottom: 15px;
}

.hozpartner-contact-info-box .form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Стили для интеграции с OpenCart меню */
.hozpartner-main-nav .navbar {
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
}

.hozpartner-main-nav .navbar-nav {
    display: flex;
    width: 100%;
    flex-direction: row;
}

.hozpartner-main-nav .nav-item {
    flex: 1;
    text-align: center;
}

.hozpartner-main-nav .nav-link {
    color: white !important;
    padding: 12px 10px !important;
    font-size: 14px;
    transition: background 0.3s;
}

.hozpartner-main-nav .nav-link:hover {
    background: #1a60a0 !important;
    color: white !important;
}

/* Анимации */
@keyframes hozpartnerFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hozpartner-category-item,
.hozpartner-advantages-list,
.hozpartner-contact-info-box {
    animation: hozpartnerFadeIn 0.6s ease-out;
}

/* Утилитарные классы */
.hozpartner-text-center { text-align: center; }
.hozpartner-text-left { text-align: left; }
.hozpartner-text-right { text-align: right; }
.hozpartner-mt-20 { margin-top: 20px; }
.hozpartner-mb-20 { margin-bottom: 20px; }
.hozpartner-p-20 { padding: 20px; }
.hozpartner-hidden { display: none; }
.hozpartner-visible { display: block; }

/* Print Styles */
@media print {
    .hozpartner-hero-slider,
    .hozpartner-menu-toggle,
    .hozpartner-callback,
    .hozpartner-btn-contact {
        display: none !important;
    }
    
    .hozpartner-header,
    .hozpartner-footer {
        background: white !important;
        color: black !important;
    }
}