html{font-size:100% !important}

.mqh_wrapper {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    box-sizing: border-box;
    background: transparent;
    margin: 0;
    padding: 0;
}
.mqh_wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.mqh_top_section {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mqh_gallery_container {
    flex: 0 0 45%;
    max-width: 500px;
}

.mqh_main_image_wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mqh_main_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.mqh_main_image:hover {
    transform: scale(1.02);
}

.mqh_nav_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 10;
}

.mqh_nav_btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.mqh_nav_btn.mqh_prev { left: 10px; }
.mqh_nav_btn.mqh_next { right: 10px; }
.mqh_nav_btn i { color: #333; font-size: 16px; }

.mqh_thumbs_container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f1f1f1;
}

.mqh_thumbs_container::-webkit-scrollbar { height: 6px; }
.mqh_thumbs_container::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 3px; }
.mqh_thumbs_container::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

.mqh_thumb_item {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.mqh_thumb_item:hover { opacity: 1; transform: translateY(-3px); }

.mqh_thumb_item.mqh_active {
    border-color: #e53e3e;
    opacity: 1;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.mqh_thumb_item img { width: 100%; height: 100%; object-fit: cover; }

.mqh_product_info { flex: 1; display: flex; flex-direction: column; }

.mqh_product_title {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    line-height: 1.3;
    animation: mqh_fadeInRight 0.6s ease;
}

.mqh_product_desc {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
    animation: mqh_fadeInRight 0.6s ease 0.1s backwards;
}

.mqh_certifications {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    animation: mqh_fadeInRight 0.6s ease 0.2s backwards;
}

.mqh_cert_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #0369a1;
    transition: all 0.3s ease;
}

.mqh_cert_badge:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(3, 105, 161, 0.2); }
.mqh_cert_badge i { font-size: 16px; }

.mqh_model_info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 25px;
    animation: mqh_fadeInRight 0.6s ease 0.3s backwards;
}

.mqh_model_label { font-weight: 600; color: #666; }
.mqh_model_value { color: #333; font-weight: 700; }

.mqh_cta_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #fff !important;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
    position: relative;
    overflow: hidden;
    animation: mqh_fadeInRight 0.6s ease 0.4s backwards;
}

.mqh_cta_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.mqh_cta_button:hover::before { left: 100%; }
.mqh_cta_button:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 10px 30px rgba(229, 62, 62, 0.5); }
.mqh_cta_button:active { transform: translateY(-2px) scale(0.98); }
.mqh_cta_button i { transition: transform 0.3s ease; }
.mqh_cta_button:hover i { transform: translateX(5px); }

.mqh_pulse_ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #e53e3e;
    border-radius: 50px;
    animation: mqh_pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes mqh_pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

.mqh_section { margin-bottom: 40px; animation: mqh_fadeInUp 0.6s ease; }

.mqh_section_title {
    font-size: 26px;
    font-weight: 700;
    color: #1a202c;
    border-bottom: 3px solid #e53e3e;
    padding-bottom: 12px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.mqh_section_title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #1a202c;
}

.mqh_text_content { font-size: 16px; color: #4a5568; line-height: 1.8; }
.mqh_text_content p { margin-bottom: 15px; }

.mqh_table_wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.mqh_params_table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: #fff;
}

.mqh_params_table th, .mqh_params_table td {
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    transition: background 0.3s ease;
}

.mqh_params_table th {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    font-weight: 700;
    width: 25%;
}

.mqh_params_table td { color: #333; }
.mqh_params_table tr:hover td { background: #f8fafc; }
.mqh_params_table tr:nth-child(even) td { background: #fafafa; }
.mqh_params_table tr:nth-child(even):hover td { background: #f1f5f9; }

.mqh_features_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.mqh_feature_card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mqh_feature_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e53e3e, #fc8181);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mqh_feature_card:hover::before { transform: scaleX(1); }
.mqh_feature_card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }

.mqh_feature_icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mqh_feature_card:hover .mqh_feature_icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.mqh_feature_icon i { font-size: 26px; color: #e53e3e; }
.mqh_feature_title { font-size: 18px; font-weight: 700; color: #1a202c; margin-bottom: 10px; }
.mqh_feature_desc { font-size: 14px; color: #4a5568; line-height: 1.6; }

.mqh_gallery_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.mqh_gallery_item { text-align: center; }
.mqh_gallery_item h3 { font-size: 18px; font-weight: 700; color: #2d3748; margin-bottom: 15px; }

.mqh_gallery_img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border: 4px solid #fff;
    transition: all 0.4s ease;
}

.mqh_gallery_img:hover { transform: scale(1.02) rotate(1deg); box-shadow: 0 15px 40px rgba(0,0,0,0.18); }

.mqh_center_image { text-align: center; margin-bottom: 40px; }
.mqh_center_image img { max-width: 100%; width: 600px; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.12); transition: all 0.4s ease; }
.mqh_center_image img:hover { transform: scale(1.02); box-shadow: 0 15px 40px rgba(0,0,0,0.18); }

.mqh_management_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.mqh_management_card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid #e53e3e;
    border-radius: 0 12px 12px 0;
    padding: 20px;
    transition: all 0.3s ease;
}

.mqh_management_card:hover { transform: translateX(5px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.mqh_management_title { font-size: 16px; font-weight: 700; color: #1a202c; margin-bottom: 8px; }
.mqh_management_desc { font-size: 14px; color: #4a5568; }

.mqh_comparison_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.mqh_comparison_table th, .mqh_comparison_table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.mqh_comparison_table thead th {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}

.mqh_comparison_table tbody th {
    background: #f8fafc;
    color: #333;
    font-weight: 600;
    width: 20%;
}

.mqh_comparison_table tbody tr:hover { background: #fef2f2; }
.mqh_comparison_table .mqh_highlight { color: #e53e3e; font-weight: 700; }

.mqh_comparison_table .mqh_subheader th {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    text-align: center;
    font-size: 16px;
}

.mqh_faq_list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 40px; }

.mqh_faq_item {
    background: #fff;
    border-left: 4px solid #e53e3e;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.mqh_faq_item:hover { transform: translateX(5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }

.mqh_faq_question {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    transition: all 0.3s ease;
}

.mqh_faq_question:hover { background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%); }
.mqh_faq_question i { color: #e53e3e; transition: transform 0.3s ease; }
.mqh_faq_item.mqh_active .mqh_faq_question i { transform: rotate(180deg); }

.mqh_faq_answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8fafc;
}

.mqh_faq_item.mqh_active .mqh_faq_answer { padding: 15px 25px 20px; max-height: 500px; }
.mqh_faq_answer p { font-size: 15px; color: #4a5568; line-height: 1.7; }

.mqh_bottom_cta {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fff 50%, #fef2f2 100%);
    border-radius: 16px;
    margin-bottom: 30px;
}

.mqh_bottom_cta h3 { font-size: 24px; font-weight: 700; color: #1a202c; margin-bottom: 20px; }

@keyframes mqh_fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes mqh_fadeInRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 992px) {
    .mqh_top_section { flex-direction: column; }
    .mqh_gallery_container { flex: none; max-width: 100%; }
    .mqh_product_title { font-size: 22px; }
}

@media (max-width: 768px) {
    .mqh_gallery_grid { grid-template-columns: 1fr; }
    .mqh_section_title { font-size: 22px; }
    .mqh_cta_button { width: 100%; max-width: 300px; }
    .mqh_params_table { min-width: 500px; }
    .mqh_comparison_table { font-size: 13px; }
    .mqh_comparison_table th, .mqh_comparison_table td { padding: 12px 15px; }
}

@media (max-width: 480px) {
    .mqh_top_section { padding: 15px; }
    .mqh_product_title { font-size: 18px; }
    .mqh_certifications { flex-wrap: wrap; }
    .mqh_cert_badge { font-size: 12px; padding: 6px 12px; }
    .mqh_thumb_item { width: 60px; height: 60px; flex: 0 0 60px; }
    .mqh_feature_card { padding: 20px; }
}
