/*
Theme Name: Botari Marketplace
Theme URI: https://botari.net
Author: Botari Team
Author URI: https://botari.net
Description: 하이브리드 마켓플레이스 테마 (WordPress + React)
Version: 0.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: botari
*/

:root {
    --primary: #000;
    --bg: #fff;
    --text: #000;
    --text-light: #666;
    --border: #e5e5e5;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
}

.btn-primary:hover {
    opacity: 0.8;
}

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 20px;
}

.card:hover {
    border-color: var(--text-light);
}
