*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f6f4;
            color: #1a1a1a;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: #1a1a1a;
            padding: 10px 0;
        }

        .top-bar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .top-bar-link {
            color: #8a8a8a;
            font-size: 13px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .top-bar-link:hover { color: #fff; }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .top-bar-phone {
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            transition: opacity 0.2s;
        }

        .top-bar-phone:hover { opacity: 0.8; }

        .top-bar-email {
            color: #6fcf6f;
            font-size: 13px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .top-bar-email:hover { color: #fff; }

        .top-bar-sep {
            width: 1px;
            height: 16px;
            background: #333;
        }

        /* ===== MAIN HEADER ===== */
        .main-header {
            background: #fff;
            border-bottom: 1px solid #e5e5e5;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s;
        }

        .main-header.scrolled {
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        }

        .main-header-inner {
            display: flex;
            align-items: center;
            height: 76px;
            gap: 24px;
        }

        .logo-link {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            transition: transform 0.2s;
        }

        .logo-link:hover { transform: scale(1.03); }
        .logo-link img { height: 50px; width: auto; }

        .catalog-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            background: linear-gradient(135deg, #2d8c3c, #3ba54e);
            color: #fff;
            border: none;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            box-shadow: 0 2px 12px rgba(45,140,60,0.3);
        }

        .catalog-btn:hover {
            background: linear-gradient(135deg, #1f6b2c, #2d8c3c);
            box-shadow: 0 4px 20px rgba(45,140,60,0.4);
            transform: translateY(-1px);
        }

        .burger-lines {
            display: flex;
            flex-direction: column;
            gap: 4px;
            width: 18px;
        }

        .burger-lines span {
            display: block;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .burger-lines span:nth-child(1) { width: 100%; }
        .burger-lines span:nth-child(2) { width: 70%; }
        .burger-lines span:nth-child(3) { width: 100%; }

        .catalog-btn.active .burger-lines span:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
        .catalog-btn.active .burger-lines span:nth-child(2) { opacity: 0; }
        .catalog-btn.active .burger-lines span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

        .search-wrapper { flex: 1; position: relative; }

        .search-input {
            width: 100%;
            height: 50px;
            padding: 0 130px 0 20px;
            border: 2px solid #e0e0e0;
            border-radius: 14px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            color: #1a1a1a;
            background: #fafafa;
            transition: all 0.3s;
            outline: none;
        }

        .search-input::placeholder { color: #aaa; }

        .search-input:focus {
            border-color: #3ba54e;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(59,165,78,0.12);
        }

        .search-right {
            position: absolute;
            right: 6px;
            top: 6px;
            bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .search-btn {
            width: 38px;
            height: 38px;
            background: #3ba54e;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .search-btn:hover { background: #2d8c3c; }
        .search-btn svg { width: 18px; height: 18px; color: #fff; }

        .search-category-btn {
            padding: 8px 14px;
            background: #f0f0f0;
            border: none;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            color: #555;
            cursor: pointer;
            transition: background 0.2s;
            white-space: nowrap;
        }

        .search-category-btn:hover { background: #e0e0e0; }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .action-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            padding: 8px 14px;
            color: #555;
            border-radius: 12px;
            transition: all 0.2s;
            position: relative;
        }

        .action-link:hover { background: #f0f7f1; color: #2d8c3c; }
        .action-link svg { width: 22px; height: 22px; }
        .action-link .label { font-size: 11px; font-weight: 600; }

        .action-link .badge {
            position: absolute;
            top: 2px;
            right: 6px;
            background: #e53935;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            min-width: 18px;
            height: 18px;
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
            border: 2px solid #fff;
        }

        .request-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            background: linear-gradient(135deg, #ff9500, #ff6f00);
            color: #fff;
            border: none;
            border-radius: 14px;
            font-size: 14px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 12px rgba(255,149,0,0.3);
            white-space: nowrap;
        }

        .request-btn:hover {
            background: linear-gradient(135deg, #ff6f00, #e65100);
            box-shadow: 0 4px 20px rgba(255,149,0,0.4);
            transform: translateY(-1px);
        }

        .request-btn svg { width: 18px; height: 18px; }

        /* ===== MOBILE MENU BUTTON ===== */
        .mobile-menu-btn {
            display: none;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: none;
            background: none;
            cursor: pointer;
            padding: 0;
        }

        .mobile-menu-btn svg { width: 24px; height: 24px; color: #333; }

        /* ===== MOBILE MENU ===== */
        .mobile-nav-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .mobile-nav-overlay.active { opacity: 1; visibility: visible; }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            max-width: 85vw;
            height: 100vh;
            background: #fff;
            z-index: 2001;
            transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            padding: 24px;
        }

        .mobile-nav.active { right: 0; }

        .mobile-nav-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid #eee;
        }

        .mobile-nav-close {
            width: 36px;
            height: 36px;
            border: none;
            background: #f5f5f5;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-nav-close svg { width: 18px; height: 18px; color: #666; }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-bottom: 24px;
        }

        .mobile-nav-link {
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 500;
            color: #333;
            transition: background 0.2s;
        }

        .mobile-nav-link:hover { background: #f0f7f1; color: #2d8c3c; }

        .mobile-nav-divider {
            height: 1px;
            background: #eee;
            margin: 16px 0;
        }

        .mobile-nav-contacts {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-nav-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            color: #333;
        }

        .mobile-nav-contact svg { width: 18px; height: 18px; color: #3ba54e; flex-shrink: 0; }

        /* ===== MEGA MENU ===== */
        .mega-menu-overlay {
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.45);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(3px);
        }

        .mega-menu-overlay.active { opacity: 1; visibility: visible; }

        .mega-menu {
            position: fixed;
            top: 77px;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: 1376px;
            max-height: calc(100vh - 110px);
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 24px 64px rgba(0,0,0,0.18);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            display: flex;
        }

        .mega-menu.active { opacity: 1; visibility: visible; }

        .mega-sidebar {
            width: 280px;
            background: #fafbfa;
            border-right: 1px solid #e8e8e8;
            overflow-y: auto;
            flex-shrink: 0;
            padding: 12px 0;
        }

        .mega-sidebar::-webkit-scrollbar { width: 3px; }
        .mega-sidebar::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

        .sidebar-group-title {
            padding: 10px 20px 8px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            color: #aaa;
        }

        .sidebar-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            cursor: pointer;
            transition: all 0.15s;
            border-left: 3px solid transparent;
        }

        .sidebar-item:hover { background: #eef7ef; }
        .sidebar-item.active { background: #e8f5e9; border-left-color: #3ba54e; }
        .sidebar-item-label { font-size: 13.5px; font-weight: 500; color: #333; }
        .sidebar-item.active .sidebar-item-label { font-weight: 600; }

        .sidebar-arrow {
            margin-left: auto;
            color: #ccc;
            transition: all 0.2s;
            flex-shrink: 0;
        }

        .sidebar-item:hover .sidebar-arrow,
        .sidebar-item.active .sidebar-arrow { color: #3ba54e; transform: translateX(3px); }

        .sidebar-divider { height: 1px; background: #eee; margin: 8px 20px; }

        .mega-content {
            flex: 1;
            padding: 32px 36px;
            overflow-y: auto;
        }

        .mega-content::-webkit-scrollbar { width: 3px; }
        .mega-content::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

        .content-title-bar {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
            padding-bottom: 14px;
            border-bottom: 2px solid #e8f5e9;
        }

        .content-title-bar h3 { font-size: 20px; font-weight: 700; color: #1a1a1a; }
        .content-title-bar p { font-size: 13px; color: #888; margin-top: 2px; }

        .sub-items-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }

        .sub-item {
            display: block;
            padding: 14px 18px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s;
            border: 1px solid transparent;
        }

        .sub-item:hover {
            background: #f0f7f1;
            border-color: #c8e6c9;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(59,165,78,0.08);
        }

        .sub-item-name { font-size: 14px; font-weight: 500; color: #333; }
        .sub-item:hover .sub-item-name { color: #1b7a2b; }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .brand-item {
            display: block;
            padding: 12px 16px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s;
            border: 1px solid #eee;
            background: #fafafa;
        }

        .brand-item:hover {
            border-color: #3ba54e;
            background: #f0f7f1;
            transform: translateY(-1px);
        }

        .brand-item-name { font-size: 13px; font-weight: 500; color: #333; }
        .brand-item:hover .brand-item-name { color: #1b7a2b; }

        /* Welcome Panel with Promo Cards */
        .welcome-panel {
            padding: 0;
            min-height: 400px;
        }

        .welcome-header {
            text-align: center;
            margin-bottom: 28px;
        }

        .welcome-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
        }

        .welcome-icon svg { width: 24px; height: 24px; color: #2d8c3c; }

        .welcome-header h3 { font-size: 20px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
        .welcome-header p { font-size: 13px; color: #888; }

        .welcome-promos {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .promo-card {
            border-radius: 16px;
            padding: 24px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 180px;
        }

        .promo-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }

        .promo-card-1 {
            background: linear-gradient(135deg, #145214, #2d9a3f);
            color: #fff;
        }

        .promo-card-2 {
            background: linear-gradient(135deg, #e65100, #ff9800);
            color: #fff;
        }

        .promo-card-3 {
            background: linear-gradient(135deg, #1565c0, #42a5f5);
            color: #fff;
        }

        .promo-card-4 {
            background: linear-gradient(135deg, #4a148c, #7e57c2);
            color: #fff;
        }

        .promo-card::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .promo-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 10px;
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 10px;
            width: fit-content;
        }

        .promo-title {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 4px;
        }

        .promo-desc {
            font-size: 12px;
            opacity: 0.8;
            line-height: 1.4;
        }

        /* ===== SLIDER ===== */
        .slider-section { margin-top: 24px; }

        .slider-container {
            position: relative;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease;
            display: flex;
            align-items: center;
        }

        .slide.active { opacity: 1; }

        .slide-bg {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
        }

        .slide-content {
            position: relative;
            z-index: 2;
            padding: 40px 48px;
            max-width: 600px;
        }

        .slide-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            background: rgba(59,165,78,0.85);
            border-radius: 16px;
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .slide-title {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .slide-text {
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            line-height: 1.5;
            margin-bottom: 22px;
        }

        .slide-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: #3ba54e;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.2s;
        }

        .slide-btn:hover {
            background: #2d8c3c;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(59,165,78,0.4);
        }

        .slide-btn svg { width: 16px; height: 16px; }

        .slider-nav {
            position: absolute;
            bottom: 16px;
            left: 48px;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            padding: 0;
        }

        .slider-dot.active {
            background: #fff;
            width: 28px;
            border-radius: 5px;
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            right: 20px;
            z-index: 3;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .slider-arrow {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.3);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }

        .slider-arrow:hover { background: rgba(255,255,255,0.35); }
        .slider-arrow svg { width: 16px; height: 16px; }

        /* ===== SECTIONS ===== */
        .section { margin-top: 40px; }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .section-title { font-size: 24px; font-weight: 800; color: #1a1a1a; }

        .section-link {
            font-size: 14px;
            font-weight: 600;
            color: #3ba54e;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }

        .section-link:hover { gap: 10px; }

        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .catalog-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            border: 1px solid #e8e8e8;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .catalog-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #3ba54e, #2d8c3c);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .catalog-card:hover::before { opacity: 1; }

        .catalog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.08);
            border-color: #c8e6c9;
        }

        .catalog-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, #e8f5e9, #d4edda);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
        }

        .catalog-card-icon svg { width: 26px; height: 26px; color: #2d8c3c; }
        .catalog-card-title { font-size: 15px; font-weight: 600; color: #333; line-height: 1.3; }

        .catalog-card-arrow {
            margin-top: 10px;
            color: #ccc;
            transition: all 0.2s;
        }

        .catalog-card:hover .catalog-card-arrow { color: #3ba54e; transform: translateX(4px); }

        /* Tabs */
        .tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }

        .tab-btn {
            padding: 10px 24px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            background: #fff;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            color: #666;
            cursor: pointer;
            transition: all 0.2s;
        }

        .tab-btn:hover { border-color: #3ba54e; color: #3ba54e; }

        .tab-btn.active {
            background: #3ba54e;
            border-color: #3ba54e;
            color: #fff;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .product-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #e8e8e8;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.08);
            border-color: #c8e6c9;
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
        .product-card:hover .product-image img { transform: scale(1.05); }

        .product-badge {
            position: absolute;
            top: 12px; left: 12px;
            padding: 4px 10px; border-radius: 8px;
            font-size: 11px; font-weight: 700; color: #fff;
        }
        .badge-sale { background: #e53935; }
        .badge-new  { background: #3ba54e; }
        .badge-hit  { background: #ff9800; }

        .product-wishlist {
            position: absolute; top: 12px; right: 12px;
            width: 32px; height: 32px;
            background: rgba(255,255,255,0.9); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.2s; border: none;
        }
        .product-wishlist:hover { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
        .product-wishlist svg { width: 16px; height: 16px; color: #ccc; }
        .product-wishlist.active svg { color: #e53935; fill: #e53935; }

        .product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }

        .product-brand {
            font-size: 11px; font-weight: 700; color: #3ba54e;
            text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
        }

        .product-name { font-size: 14px; font-weight: 600; color: #1a1a1a; line-height: 1.35; margin-bottom: 6px; }
        .product-name a { color: inherit; text-decoration: none; transition: color 0.2s; }
        .product-name a:hover { color: #3ba54e; }
        .product-sku { font-size: 12px; color: #999; margin-bottom: 10px; }

        .product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
        .product-stars { display: flex; gap: 2px; }
        .product-stars svg { width: 14px; height: 14px; }
        .star-filled { color: #ffc107; }
        .star-empty  { color: #ddd; }
        .product-rating-count { font-size: 12px; color: #999; }

        .product-availability { display: flex; align-items: center; gap: 6px; font-size: 12px; margin-bottom: 10px; }
        .availability-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
        .in-stock .availability-dot { background: #3ba54e; }
        .in-stock { color: #3ba54e; font-weight: 500; }
        .out-stock .availability-dot { background: #e53935; }
        .out-stock { color: #e53935; font-weight: 500; }

        .product-price-row { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 14px; }
        .product-price { font-size: 20px; font-weight: 800; color: #1a1a1a; }
        .product-old-price { font-size: 14px; color: #bbb; text-decoration: line-through; }
        .product-discount {
            font-size: 12px; font-weight: 700; color: #e53935;
            background: #ffebee; padding: 2px 8px; border-radius: 6px;
        }

        .product-actions { display: flex; gap: 8px; margin-top: auto; }

        .product-btn-cart {
            flex: 1; padding: 10px;
            background: linear-gradient(135deg, #3ba54e, #2d8c3c);
            color: #fff; border: none; border-radius: 10px;
            font-size: 13px; font-weight: 700; font-family: 'Inter', sans-serif;
            cursor: pointer; transition: all 0.2s;
        }
        .product-btn-cart:hover {
            background: linear-gradient(135deg, #2d8c3c, #1f6b2c);
            box-shadow: 0 2px 8px rgba(59,165,78,0.3);
        }

        .product-btn-details {
            padding: 10px 14px; background: #f5f5f5; border: none;
            border-radius: 10px; font-size: 12px; font-weight: 600;
            font-family: 'Inter', sans-serif; color: #666;
            cursor: pointer; transition: all 0.2s; white-space: nowrap;
        }
        .product-btn-details:hover { background: #e8f5e9; color: #2d8c3c; }

        /* Brands Section */
        .brands-section {
            background: #fff;
            border-radius: 20px;
            padding: 32px;
            border: 1px solid #e8e8e8;
            margin-top: 40px;
        }

        .brands-showcase {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .brand-showcase-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            border-radius: 14px;
            border: 1px solid #eee;
            transition: all 0.3s;
            cursor: pointer;
        }

        .brand-showcase-card:hover {
            border-color: #c8e6c9;
            background: #f8fdf8;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.05);
        }

        .brand-showcase-logo {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 11px;
            font-weight: 800;
            color: #555;
            border: 1px solid #e0e0e0;
            transition: all 0.2s;
        }

        .brand-showcase-card:hover .brand-showcase-logo {
            background: #e8f5e9;
            border-color: #c8e6c9;
            color: #2d8c3c;
        }

        .brand-showcase-name { font-size: 14px; font-weight: 700; color: #1a1a1a; }
        .brand-showcase-count { font-size: 12px; color: #999; margin-top: 2px; }

        /* Advantages Bar */
        .advantages-bar {
            margin-top: 40px;
            background: #fff;
            border-radius: 20px;
            border: 1px solid #e8e8e8;
            overflow: hidden;
        }

        .advantages-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

        .advantage-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 28px 32px;
            border-right: 1px solid #f0f0f0;
            transition: background 0.2s;
        }

        .advantage-item:last-child { border-right: none; }
        .advantage-item:hover { background: #f8fdf8; }

        .advantage-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, #e8f5e9, #d4edda);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .advantage-icon svg { width: 22px; height: 22px; color: #2d8c3c; }
        .advantage-title { font-size: 14px; font-weight: 700; color: #1a1a1a; margin-bottom: 2px; }
        .advantage-desc { font-size: 12px; color: #888; }

        /* Cooperation Section */
        .cooperation-section { margin-top: 40px; margin-bottom: 48px; }

        .cooperation-card {
            background: linear-gradient(135deg, #145214 0%, #1e7a2a 50%, #2d9a3f 100%);
            border-radius: 24px;
            padding: 48px;
            display: flex;
            align-items: center;
            gap: 48px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cooperation-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cooperation-text { flex: 1; position: relative; z-index: 1; }

        .cooperation-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            background: rgba(255,255,255,0.15);
            border-radius: 14px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .cooperation-title { font-size: 28px; font-weight: 800; line-height: 1.25; margin-bottom: 14px; }
        .cooperation-desc { font-size: 15px; opacity: 0.8; line-height: 1.6; margin-bottom: 24px; max-width: 500px; }

        .cooperation-contacts { display: flex; gap: 24px; flex-wrap: wrap; }

        .cooperation-contact {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: rgba(255,255,255,0.12);
            border-radius: 12px;
            backdrop-filter: blur(4px);
            transition: background 0.2s;
        }

        .cooperation-contact:hover { background: rgba(255,255,255,0.22); }
        .cooperation-contact svg { width: 18px; height: 18px; opacity: 0.8; }
        .cooperation-contact a { color: #fff; font-size: 14px; font-weight: 600; }

        .cooperation-photo { position: relative; z-index: 1; flex-shrink: 0; }

        .cooperation-photo-img {
            width: 180px;
            height: 180px;
            border-radius: 20px;
            object-fit: cover;
            border: 4px solid rgba(255,255,255,0.2);
        }

        .cooperation-photo-name { text-align: center; margin-top: 12px; font-size: 16px; font-weight: 700; }
        .cooperation-photo-role { text-align: center; font-size: 13px; opacity: 0.7; margin-top: 2px; }

        /* ===== FOOTER ===== */
        .footer {
            background: #1a1a1a;
            color: #ccc;
            padding-top: 56px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
            gap: 40px;
            padding-bottom: 48px;
        }

        .footer-brand {}

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
        }

        .footer-logo img { height: 44px; width: auto; }

        .footer-brand-desc {
            font-size: 14px;
            color: #888;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-socials {
            display: flex;
            gap: 10px;
        }

        .footer-social {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: #2a2a2a;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            cursor: pointer;
        }

        .footer-social:hover { background: #3ba54e; }
        .footer-social svg { width: 18px; height: 18px; color: #888; }
        .footer-social:hover svg { color: #fff; }

        .footer-col-title {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-link {
            font-size: 14px;
            color: #888;
            transition: color 0.2s;
        }

        .footer-link:hover { color: #3ba54e; }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 16px;
        }

        .footer-contact-item svg {
            width: 18px;
            height: 18px;
            color: #3ba54e;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-contact-text {
            font-size: 14px;
            color: #888;
            line-height: 1.5;
        }

        .footer-contact-text a {
            color: #fff;
            font-weight: 600;
            transition: color 0.2s;
        }

        .footer-contact-text a:hover { color: #3ba54e; }

        .footer-bottom {
            border-top: 1px solid #2a2a2a;
            padding: 24px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-copyright {
            font-size: 13px;
            color: #666;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-link {
            font-size: 13px;
            color: #666;
            transition: color 0.2s;
        }

        .footer-bottom-link:hover { color: #3ba54e; }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .sub-item { animation: fadeUp 0.25s ease forwards; }
        .sub-item:nth-child(1) { animation-delay: 0.02s; }
        .sub-item:nth-child(2) { animation-delay: 0.04s; }
        .sub-item:nth-child(3) { animation-delay: 0.06s; }
        .sub-item:nth-child(4) { animation-delay: 0.08s; }
        .sub-item:nth-child(5) { animation-delay: 0.10s; }
        .sub-item:nth-child(6) { animation-delay: 0.12s; }

        .brand-item { animation: fadeUp 0.2s ease forwards; }
        .brand-item:nth-child(n+5) { animation-delay: 0.04s; }
        .brand-item:nth-child(n+10) { animation-delay: 0.08s; }
        .brand-item:nth-child(n+15) { animation-delay: 0.12s; }
        .brand-item:nth-child(n+20) { animation-delay: 0.16s; }
        .brand-item:nth-child(n+25) { animation-delay: 0.20s; }
        .brand-item:nth-child(n+30) { animation-delay: 0.24s; }
        .brand-item:nth-child(n+35) { animation-delay: 0.28s; }

        .product-card { animation: fadeUp 0.3s ease forwards; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .catalog-grid { grid-template-columns: repeat(3, 1fr); }
            .products-grid { grid-template-columns: repeat(3, 1fr); }
            .brands-showcase { grid-template-columns: repeat(3, 1fr); }
            .footer-main { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 900px) {
            .container { padding: 0 20px; }
            .top-bar-left { display: none; }
            .top-bar-right { justify-content: center; width: 100%; }

            .mobile-menu-btn { display: flex; }
            .catalog-btn { display: none; }

            .main-header-inner { gap: 12px; height: 64px; }

            .search-input { height: 42px; padding: 0 50px 0 14px; font-size: 13px; }
            .search-category-btn { display: none; }
            .search-right { right: 4px; }
            .search-btn { width: 34px; height: 34px; }

            .request-btn .req-text { display: none; }
            .action-link .label { display: none; }
            .action-link { padding: 8px 10px; }

            .slider-container { height: 260px; border-radius: 16px; }
            .slide-content { padding: 24px 28px; }
            .slide-title { font-size: 22px; }
            .slide-text { font-size: 13px; margin-bottom: 16px; }
            .slide-btn { padding: 10px 22px; font-size: 13px; }
            .slider-nav { left: 28px; bottom: 14px; }
            .slider-arrows { right: 14px; }

            .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .catalog-card { padding: 18px; }

            .section-title { font-size: 20px; }

            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .product-image { height: 150px; }
            .product-body { padding: 12px; }
            .product-name { font-size: 13px; }
            .product-sku { font-size: 11px; margin-bottom: 8px; }
            .product-rating { margin-bottom: 8px; }
            .product-availability { font-size: 11px; margin-bottom: 8px; }
            .product-price { font-size: 16px; }
            .product-old-price { font-size: 12px; }
            .product-btn-cart { padding: 8px; font-size: 11px; }
            .product-btn-details { padding: 8px 10px; font-size: 10px; }
            .product-badge { font-size: 10px; padding: 3px 8px; }
            .product-wishlist { width: 28px; height: 28px; }
            .product-wishlist svg { width: 14px; height: 14px; }

            .brands-showcase { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .brands-section { padding: 24px; }

            .advantages-grid { grid-template-columns: repeat(2, 1fr); }
            .advantage-item { border-bottom: 1px solid #f0f0f0; padding: 20px 24px; }
            .advantage-item:nth-child(2) { border-right: none; }

            .cooperation-card { flex-direction: column; text-align: center; padding: 32px 24px; }
            .cooperation-desc { margin: 0 auto 24px; }
            .cooperation-contacts { justify-content: center; }
            .cooperation-photo-img { width: 140px; height: 140px; }

            .footer-main { grid-template-columns: repeat(2, 1fr); gap: 32px; }
            .footer-brand { grid-column: 1 / -1; }

            /* Mega menu responsive */
            .mega-menu {
                width: 100%;
                max-width: 100%;
                top: 0;
                border-radius: 0;
                flex-direction: column;
                max-height: 100vh;
            }
            .mega-sidebar {
                width: 100%;
                max-height: 200px;
                border-right: none;
                border-bottom: 1px solid #e8e8e8;
                display: flex;
                overflow-x: auto;
                padding: 0;
            }
            .sidebar-group-title { display: none; }
            .sidebar-divider { display: none; }
            .sidebar-item {
                padding: 10px 14px;
                flex-direction: column;
                min-width: 100px;
                border-left: none;
                border-bottom: 3px solid transparent;
                text-align: center;
                gap: 4px;
            }
            .sidebar-item:hover, .sidebar-item.active {
                border-left-color: transparent;
                border-bottom-color: #3ba54e;
            }
            .sidebar-arrow { display: none; }

            .mega-content { padding: 20px; }
            .content-title-bar h3 { font-size: 17px; }
            .sub-items-grid { grid-template-columns: repeat(2, 1fr); }
            .brands-grid { grid-template-columns: repeat(2, 1fr); }
            .welcome-promos { grid-template-columns: 1fr; }
            .welcome-header { margin-bottom: 20px; }
            .promo-card { min-height: 120px; padding: 18px; }
            .promo-title { font-size: 14px; }
        }

        @media (max-width: 600px) {
            .container { padding: 0 14px; }
            .top-bar { padding: 8px 0; }
            .top-bar-inner { padding: 0 14px; }
            .top-bar-right { gap: 16px; }
            .top-bar-phone { font-size: 13px; }
            .top-bar-email { font-size: 11px; }

            .main-header-inner { padding: 0 14px; height: 58px; }
            .logo-link img { height: 38px; }

            .search-input { height: 40px; padding-right: 44px; font-size: 12px; }
            .search-btn { width: 32px; height: 32px; }

            .slider-container { height: 220px; border-radius: 12px; }
            .slide-content { padding: 20px; }
            .slide-title { font-size: 18px; }
            .slide-text { font-size: 12px; margin-bottom: 14px; }
            .slide-btn { padding: 8px 18px; font-size: 12px; border-radius: 10px; }
            .slider-nav { left: 20px; bottom: 12px; }
            .slider-dot { width: 8px; height: 8px; }
            .slider-dot.active { width: 22px; }
            .slider-arrows { right: 10px; }
            .slider-arrow { width: 30px; height: 30px; }

            .section { margin-top: 28px; }
            .section-header { margin-bottom: 16px; }
            .section-title { font-size: 18px; }
            .section-link { font-size: 13px; }

            .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .catalog-card { padding: 14px; border-radius: 12px; }
            .catalog-card-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 10px; }
            .catalog-card-icon svg { width: 20px; height: 20px; }
            .catalog-card-title { font-size: 13px; }
            .catalog-card-arrow { display: none; }

            .tabs { gap: 6px; }
            .tab-btn { padding: 8px 16px; font-size: 13px; border-radius: 10px; }

            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .product-image { height: 120px; }
            .product-body { padding: 10px; }
            .product-brand { font-size: 10px; }
            .product-name { font-size: 12px; margin-bottom: 4px; }
            .product-sku { font-size: 10px; margin-bottom: 6px; }
            .product-rating { margin-bottom: 6px; }
            .product-stars svg { width: 12px; height: 12px; }
            .product-rating-count { font-size: 10px; }
            .product-availability { font-size: 10px; margin-bottom: 6px; }
            .product-price { font-size: 15px; }
            .product-old-price { font-size: 11px; }
            .product-discount { font-size: 10px; }
            .product-btn-cart { padding: 7px; font-size: 10px; }
            .product-btn-details { padding: 7px 8px; font-size: 9px; }
            .product-badge { font-size: 9px; padding: 3px 7px; }
            .product-wishlist { width: 26px; height: 26px; }
            .product-wishlist svg { width: 13px; height: 13px; }

            .brands-section { padding: 16px; border-radius: 14px; margin-top: 28px; }
            .brands-showcase { grid-template-columns: 1fr; gap: 8px; }
            .brand-showcase-card { padding: 14px; }
            .brand-showcase-logo { width: 44px; height: 44px; }

            .advantages-bar { border-radius: 14px; margin-top: 28px; }
            .advantages-grid { grid-template-columns: 1fr; }
            .advantage-item { border-right: none; padding: 16px 20px; }
            .advantage-item:last-child { border-bottom: none; }

            .cooperation-section { margin-top: 28px; margin-bottom: 32px; }
            .cooperation-card { padding: 24px 18px; border-radius: 16px; }
            .cooperation-title { font-size: 22px; }
            .cooperation-desc { font-size: 13px; margin-bottom: 18px; }
            .cooperation-contacts { flex-direction: column; gap: 10px; }
            .cooperation-photo-img { width: 120px; height: 120px; border-radius: 16px; }

            .footer { padding-top: 36px; }
            .footer-main { grid-template-columns: 1fr; gap: 28px; }
            .footer-brand { grid-column: auto; }
            .footer-col-title { margin-bottom: 14px; }
            .footer-bottom { flex-direction: column; text-align: center; padding: 20px 0; }
            .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
        }/* WordPress admin bar compatibility */
body.admin-bar .main-header { top: 32px; }
body.admin-bar .mega-menu { top: 109px; }
@media (max-width: 782px) {
    body.admin-bar .main-header { top: 46px; }
    body.admin-bar .mega-menu { top: 0; }
}

.products-empty {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px dashed #d8d8d8;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    color: #777;
    font-size: 14px;
    font-weight: 600;
}

/* ===================================================================
   REQUEST MODAL — всплывающее окно с формой CF7
   =================================================================== */
.myagro-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.myagro-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.myagro-modal {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.25s ease;
}
.myagro-modal-overlay.active .myagro-modal {
    transform: translateY(0) scale(1);
}
.myagro-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 20px;
    border-bottom: 1px solid #efefef;
}
.myagro-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}
.myagro-modal-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: background 0.2s, color 0.2s;
    margin-left: 12px;
}
.myagro-modal-close:hover {
    background: #e8e8e8;
    color: #222;
}
.myagro-modal-body {
    padding: 24px 28px 28px;
}
.myagro-modal-no-form {
    color: #999;
    font-size: 14px;
    text-align: center;
    padding: 28px 0;
    line-height: 1.7;
    margin: 0;
}
.myagro-modal-no-form strong { color: #555; }
.myagro-modal-no-form em { font-style: normal; font-weight: 600; color: #2d8c3c; }

/* CF7 поля внутри модального окна */
.myagro-modal-body .wpcf7 { margin: 0; }
.myagro-modal-body .wpcf7-form { display: flex; flex-direction: column; gap: 12px; }
.myagro-modal-body .wpcf7-form > p,
.myagro-modal-body .wpcf7-form > div { margin: 0; }
.myagro-modal-body .wpcf7-form input[type="text"],
.myagro-modal-body .wpcf7-form input[type="email"],
.myagro-modal-body .wpcf7-form input[type="tel"],
.myagro-modal-body .wpcf7-form input[type="number"],
.myagro-modal-body .wpcf7-form input[type="url"],
.myagro-modal-body .wpcf7-form textarea,
.myagro-modal-body .wpcf7-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    box-sizing: border-box;
}
.myagro-modal-body .wpcf7-form input[type="text"]:focus,
.myagro-modal-body .wpcf7-form input[type="email"]:focus,
.myagro-modal-body .wpcf7-form input[type="tel"]:focus,
.myagro-modal-body .wpcf7-form input[type="number"]:focus,
.myagro-modal-body .wpcf7-form input[type="url"]:focus,
.myagro-modal-body .wpcf7-form textarea:focus,
.myagro-modal-body .wpcf7-form select:focus {
    border-color: #3ba54e;
    box-shadow: 0 0 0 4px rgba(59, 165, 78, 0.12);
    background: #fff;
}
.myagro-modal-body .wpcf7-form textarea { min-height: 100px; resize: vertical; }
.myagro-modal-body .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2d8c3c, #3ba54e);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 2px 12px rgba(45, 140, 60, 0.28);
    letter-spacing: 0.01em;
}
.myagro-modal-body .wpcf7-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #1f6b2c, #2d8c3c);
    box-shadow: 0 4px 20px rgba(45, 140, 60, 0.38);
    transform: translateY(-1px);
}
.myagro-modal-body .wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .myagro-modal { border-radius: 16px; }
    .myagro-modal-header { padding: 18px 18px 14px; }
    .myagro-modal-body { padding: 18px 18px 22px; }
    .myagro-modal-title { font-size: 16px; }
}
