/* ================================================================
   spraydryerB2B 首页 v3.0 - jimipower风格样式
   ================================================================ */

/* ---------- Hero Banner V3 ---------- */
.hero-section-v3 {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #1e3a5f 100%);
    background-size: cover;
    background-position: center;
    padding: 100px 0 80px;
    overflow: hidden;
}
.hero-section-v3::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-overlay-v3 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,58,95,0.95) 0%, rgba(45,90,135,0.85) 100%);
}
.hero-section-v3 .container {
    position: relative;
    z-index: 2;
}
.hero-content-v3 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}
.hero-title-v3 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}
.hero-subtitle-v3 {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    font-weight: 400;
}

/* 搜索框 */
.hero-search-box {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.15);
}
.hero-search-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 0 16px;
    gap: 10px;
}
.search-input-wrap svg {
    color: var(--gray-400);
    flex-shrink: 0;
}
.hero-search-input {
    flex: 1;
    border: none;
    background: none;
    padding: 16px 0;
    font-size: 1rem;
    color: var(--gray-800);
    outline: none;
}
.hero-search-input::placeholder {
    color: var(--gray-400);
}
.hero-search-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.hero-search-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.4);
}
.search-hot-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}
.search-hot-tags span {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}
.search-hot-tags a {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 20px;
    transition: all 0.2s ease;
}
.search-hot-tags a:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Hero Stats */
.hero-stats-v3 {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-stat-v3 {
    text-align: center;
}
.stat-num-v3 {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label-v3 {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

/* ---------- 分类导航 ---------- */
.category-nav-section {
    padding: 60px 0;
    background: #fff;
}
.category-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
.category-nav-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}
.category-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.category-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}
.category-nav-card:hover {
    background: #fff;
    border-color: var(--primary-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.cat-nav-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.cat-nav-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.cat-nav-count {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ---------- Section Header V3 ---------- */
.section-header-v3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 20px;
}
.section-header-left {
    flex: 1;
}
.section-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.section-header-left h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.section-header-left p {
    color: var(--text-light);
    font-size: 1rem;
}
.view-all-link {
    font-size: 0.9375rem;
    color: var(--primary);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.view-all-link:hover {
    color: var(--primary-hover);
}

/* ---------- 热门产品 ---------- */
.hot-products-section {
    padding: 80px 0;
    background: var(--gray-50);
}
.products-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card-v3 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}
.product-card-v3:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-border);
}
.product-card-v3-link {
    display: block;
}
.product-thumb-v3 {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--gray-100);
}
.product-thumb-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card-v3:hover .product-thumb-v3 img {
    transform: scale(1.05);
}
.product-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}
.badge-hot-v3 {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-card-v3-body {
    padding: 20px;
}
.product-cat-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary);
    background: var(--primary-light);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-weight: 500;
}
.product-card-v3-body h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-model-v3 {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-bottom: 8px;
}
.product-price-v3 {
    margin-bottom: 10px;
}
.product-price-v3 .price-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: -0.5px;
}
.product-rating-v3 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
}
.product-rating-v3 .stars {
    color: #f59e0b;
    font-weight: 500;
}
.product-rating-v3 .rating-count {
    color: var(--gray-400);
}
.product-card-v3-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    background: var(--gray-50);
}
.supplier-mini {
    font-size: 0.8125rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.supplier-avatar-img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.inquiry-btn-sm {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.inquiry-btn-sm:hover {
    background: var(--primary-hover);
}

/* ---------- 分类楼层 ---------- */
.category-floor-v3 {
    padding: 60px 0;
}
.floor-light {
    background: #fff;
}
.floor-white {
    background: var(--gray-50);
}
.floor-header-v3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}
.floor-title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}
.floor-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    opacity: 0.3;
}
.floor-title-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.floor-title-text p {
    font-size: 0.9375rem;
    color: var(--text-light);
}
.btn-floor-more {
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-floor-more:hover {
    background: var(--primary);
    color: #fff;
}
.floor-grid {
    grid-template-columns: repeat(4, 1fr);
}
.floor-card .product-card-v3-body h3 {
    font-size: 0.875rem;
}

/* ---------- 供应商 ---------- */
.suppliers-section-v3 {
    padding: 80px 0;
    background: #fff;
}
.suppliers-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.supplier-card-v3 {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.25s ease;
}
.supplier-card-v3:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-border);
}
.supplier-card-v3-header {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.supplier-logo-v3 {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}
.supplier-logo-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.supplier-logo-placeholder {
    font-size: 1.5rem;
    color: var(--gray-400);
}
.supplier-badges {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}
.badge-verified-v3 {
    background: #ecfdf5;
    color: #059669;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}
.badge-recommended-v3 {
    background: #fef3c7;
    color: #d97706;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}
.supplier-card-v3-body {
    padding: 20px;
}
.supplier-card-v3-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.supplier-card-v3-body h3 a {
    color: var(--dark);
}
.supplier-card-v3-body h3 a:hover {
    color: var(--primary);
}
.supplier-desc {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.supplier-meta-v3 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text-light);
    text-align: center;
}
.btn-supplier-view {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--gray-50);
    color: var(--primary);
    font-size: 0.9375rem;
    font-weight: 500;
    border-top: 1px solid var(--border);
    transition: all 0.2s ease;
}
.btn-supplier-view:hover {
    background: var(--primary);
    color: #fff;
}

/* ---------- CTA Section ---------- */
.cta-section-v3 {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    position: relative;
    overflow: hidden;
}
.cta-section-v3::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content-v3 {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}
.cta-content-v3 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.cta-content-v3 p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
}
.cta-actions-v3 {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-primary {
    background: #fff;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
}
.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: var(--primary-hover);
}
.btn-cta-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.2s ease;
    display: inline-block;
}
.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* ---------- 行业资讯 ---------- */
.news-section-v3 {
    padding: 80px 0;
    background: var(--gray-50);
}
.news-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
.news-card-v3 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}
.news-card-v3:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary-border);
}
.news-featured {
    grid-column: span 1;
}
.news-thumb-v3 {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-100);
}
.news-thumb-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news-card-v3:hover .news-thumb-v3 img {
    transform: scale(1.05);
}
.news-card-v3-body {
    padding: 20px;
}
.news-meta-v3 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.news-date {
    font-size: 0.8125rem;
    color: var(--gray-400);
}
.news-tag {
    background: var(--primary);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}
.news-card-v3-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-card-v3-body h3 a {
    color: var(--dark);
}
.news-card-v3-body h3 a:hover {
    color: var(--primary);
}
.news-card-v3-body p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-read-more {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}
.news-read-more:hover {
    color: var(--primary-hover);
}

/* ---------- Animations ---------- */
.anim-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-0 { transition-delay: 0s; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .products-grid-v3,
    .suppliers-grid-v3,
    .floor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title-v3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section-v3 {
        min-height: auto;
        padding: 80px 0 60px;
    }
    .hero-title-v3 {
        font-size: 1.875rem;
    }
    .hero-subtitle-v3 {
        font-size: 1rem;
    }
    .hero-search-form {
        flex-direction: column;
    }
    .hero-search-btn {
        width: 100%;
    }
    .hero-stats-v3 {
        gap: 24px;
    }
    .stat-num-v3 {
        font-size: 1.75rem;
    }
    .products-grid-v3,
    .suppliers-grid-v3,
    .floor-grid,
    .news-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .category-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .section-header-v3 {
        flex-direction: column;
        align-items: flex-start;
    }
    .floor-header-v3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .cta-content-v3 h2 {
        font-size: 1.75rem;
    }
    .cta-actions-v3 {
        flex-direction: column;
    }
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ================================================================
   搜索框 V2 - 加大增强版
   ================================================================ */
.hero-search-box-v2 {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 48px;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.2);
}
.hero-search-form-v2 {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}
.search-input-wrap-v2 {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 0 24px;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-input-wrap-v2:focus-within {
    border-color: var(--primary);
    box-shadow: 0 2px 16px rgba(37,99,235,0.12);
}
.search-input-wrap-v2 svg {
    color: var(--gray-400);
    flex-shrink: 0;
}
.hero-search-input-v2 {
    flex: 1;
    border: none;
    background: none;
    padding: 20px 0;
    font-size: 1.125rem;
    color: var(--gray-800);
    outline: none;
}
.hero-search-input-v2::placeholder {
    color: var(--gray-400);
    font-size: 1.05rem;
}
.hero-search-btn-v2 {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    padding: 18px 44px;
    border-radius: 14px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.hero-search-btn-v2:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.45);
}
.hero-search-btn-v2 svg {
    flex-shrink: 0;
}
.search-hot-tags-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.75);
}
.search-hot-tags-v2 span {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
}
.search-hot-tags-v2 a {
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.12);
    padding: 6px 16px;
    border-radius: 24px;
    transition: all 0.2s ease;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
}
.search-hot-tags-v2 a:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

@media (max-width: 480px) {
    .products-grid-v3,
    .suppliers-grid-v3,
    .floor-grid,
    .news-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section {
        padding: 48px 0;
    }
    .hero-search-box-v2 {
        padding: 20px;
        border-radius: 16px;
    }
    .hero-search-form-v2 {
        flex-direction: column;
    }
    .hero-search-btn-v2 {
        width: 100%;
        justify-content: center;
    }
    .hero-search-input-v2 {
        font-size: 1rem;
        padding: 16px 0;
    }
    .search-input-wrap-v2 {
        padding: 0 16px;
    }
}
