/*
Theme Name: Global Trade Links
Theme URI: https://example.com/
Description: A curated collection of useful English websites for international trade professionals.
Author: Trade Links Directory
Author URI: https://example.com/
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: global-trade-links
Tags: trade, business, directory, responsive, modern
*/

/* 引入外部资源 */
@import url('https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Tailwind CSS 配置通过functions.php加载，此处保留基础样式 */
body {
    font-family: 'Inter', sans-serif;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* 子分类动画 */
.subcategories {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.subcategories.active {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}