/* 西班牙语页面手机版适配样式 */

@media (max-width: 768px) {
    /* 导航菜单手机版 */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
        list-style: none;
    }
    
    .nav-menu a {
        color: var(--primary-color);
        text-decoration: none;
        font-size: 16px;
    }
    
    .hamburger {
        display: flex !important;
        cursor: pointer;
    }
    
    .nav-cta {
        display: none;
    }
    
    /* 下拉菜单手机版 */
    .dropdown {
        display: none;
        padding-left: 20px;
        margin-top: 10px;
    }
    
    .has-dropdown.active .dropdown {
        display: block;
    }
    
    .dropdown-category {
        font-weight: bold;
        color: var(--text-dark);
        margin-top: 10px;
        margin-bottom: 5px;
    }
    
    /* 语言选择器手机版 */
    .language-selector {
        top: 10px;
        right: 10px;
    }
    
    .lang-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    /* 产品系列标题手机版 */
    .series-section {
        margin-bottom: 40px;
    }
    
    .series-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    /* 产品卡片手机版 */
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .product-card {
        display: block !important;
        width: 100% !important;
        margin-bottom: 30px !important;
    }
    
    .product-image {
        height: 250px !important;
        margin-bottom: 15px !important;
    }
    
    .product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
    
    .product-info-card {
        padding: 20px !important;
    }
    
    .model-badge {
        font-size: 0.75rem !important;
        padding: 5px 12px !important;
    }
    
    .product-info-card h4 {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }
    
    .model-desc {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
    }
    
    .model-features {
        font-size: 0.85rem !important;
        margin-bottom: 20px !important;
    }
    
    .model-features li {
        padding: 6px 0 !important;
    }
    
    .product-info-card .btn {
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }
    
    /* 特性网格手机版 */
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* 统计网格手机版 */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 产品详情手机版 */
    .product-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-gallery {
        grid-template-columns: 1fr;
    }
    
    /* 规格卡片手机版 */
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    /* 页脚手机版 */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* WhatsApp 按钮手机版 */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    /* 小屏幕优化 */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* 统计网格单列 */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* 特性卡片 */
    .feature-box {
        padding: 20px;
    }
    
    /* 产品图片更小 */
    .product-image {
        height: 200px !important;
    }
}
