:root {
    --e-bg: #f4f5f6;
    --e-card: #ffffff;
    --e-text: #111111;
    --e-sub: #555555;
    --e-border: #e4e6eb;
    --e-accent: #ff3b30;
    --e-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
body {
    margin: 0; background: var(--e-bg); color: var(--e-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
}
a { color: var(--e-text); text-decoration: none; }
.drumlin-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--e-card); border-bottom: 1px solid var(--e-border);
    box-shadow: var(--e-shadow);
}
.drumlin-header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    height: 65px; display: flex; align-items: center; justify-content: space-between;
}
.drumlin-logo img { height: 32px; }
.drumlin-nav {
    list-style: none; margin: 0; padding: 0; display: flex; gap: 30px;
}
.drumlin-nav a {
    color: var(--e-text); font-weight: bold; transition: color 0.2s;
}
.drumlin-nav a:hover, .drumlin-nav .drumlin-active {
    color: var(--e-accent);
}
.drumlin-user-zone { display: flex; align-items: center; }
.drumlin-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--e-border);
}
.drumlin-btn-login {
    background: var(--e-accent); color: #fff;
    padding: 6px 16px; border-radius: 4px; font-weight: bold;
}
.drumlin-notice-bar {
    background: #fff3f3; border-bottom: 1px solid #ffcccc; padding: 10px 20px;
}
.drumlin-notice-inner {
    max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 10px;
}
.drumlin-notice-tag {
    background: var(--e-accent); color: #fff; font-size: 11px;
    padding: 2px 6px; border-radius: 2px; font-weight: bold;
}
.drumlin-notice-text { color: var(--e-accent); font-size: 13px; font-weight: bold; }
.drumlin-home-layout {
    display: flex; max-width: 1200px; margin: 30px auto;
    padding: 0 20px; gap: 30px;
}
.drumlin-main-list { flex: 1; }
.drumlin-cat-section { margin-bottom: 40px; }
.drumlin-cat-header {
    font-size: 18px; font-weight: bold; margin-bottom: 20px;
    padding-bottom: 10px; border-bottom: 2px solid var(--e-accent);
}
.drumlin-product-rows { display: flex; flex-direction: column; gap: 15px; }
.drumlin-prod-row {
    background: var(--e-card); border: 1px solid var(--e-border);
    border-radius: 4px; padding: 15px; display: flex; align-items: center;
    gap: 20px; transition: transform 0.2s, box-shadow 0.2s;
}
.drumlin-prod-row:hover {
    transform: translateY(-2px); box-shadow: var(--e-shadow);
}
.drumlin-prod-img-box {
    width: 80px; height: 80px; display: flex; align-items: center;
    justify-content: center; background: #fafafa; border: 1px solid var(--e-border);
    border-radius: 4px; flex-shrink: 0;
}
.drumlin-prod-img-box img { max-width: 90%; max-height: 90%; object-fit: contain; }
.drumlin-prod-info { flex: 1; }
.drumlin-prod-name { font-size: 15px; font-weight: bold; margin: 0 0 8px 0; }
.drumlin-prod-meta { display: flex; gap: 20px; align-items: center; }
.drumlin-prod-price { color: var(--e-accent); font-size: 16px; font-weight: bold; }
.drumlin-prod-stock { color: var(--e-sub); font-size: 12px; }
.drumlin-prod-btn {
    background: var(--e-accent); color: #fff; padding: 6px 18px;
    border-radius: 4px; font-weight: bold; font-size: 13px;
}
.drumlin-sidebar { width: 280px; flex-shrink: 0; }
.drumlin-widget { background: var(--e-card); border: 1px solid var(--e-border); border-radius: 4px; padding: 20px; margin-bottom: 20px; }
.drumlin-widget-title { font-size: 15px; font-weight: bold; margin-bottom: 15px; border-left: 3px solid var(--e-accent); padding-left: 10px; }
.drumlin-cat-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.drumlin-cat-badge { display: block; padding: 6px 12px; background: #fafafa; border: 1px solid var(--e-border); border-radius: 4px; font-size: 12px; font-weight: bold; transition: all 0.2s; }
.drumlin-cat-badge:hover { background: var(--e-accent); color: #fff; border-color: var(--e-accent); }
.drumlin-query-entries { display: flex; flex-direction: column; gap: 10px; }
.drumlin-query-entry-btn { display: block; padding: 10px; background: #fafafa; border: 1px solid var(--e-border); border-radius: 4px; text-align: center; font-size: 13px; font-weight: bold; transition: all 0.2s; }
.drumlin-query-entry-btn:hover { background: var(--e-accent); color: #fff; border-color: var(--e-accent); }
.drumlin-breadcrumb { max-width: 1200px; margin: 20px auto 0; padding: 0 20px; font-size: 13px; color: var(--e-sub); }
.drumlin-breadcrumb a { color: var(--e-sub); }
.drumlin-breadcrumb a:hover { color: var(--e-accent); }
.drumlin-detail-layout { max-width: 1200px; margin: 20px auto; padding: 0 20px; display: flex; gap: 40px; }
.drumlin-detail-main { flex: 1; }
.drumlin-detail-title { font-size: 24px; font-weight: bold; margin: 0 0 10px 0; }
.drumlin-detail-meta { font-size: 12px; color: var(--e-sub); margin-bottom: 25px; }
.drumlin-checkout-panel { background: var(--e-card); border: 1px solid var(--e-border); border-radius: 4px; padding: 30px; margin-bottom: 30px; display: flex; gap: 30px; }
.drumlin-detail-img-box { width: 220px; height: 165px; display: flex; align-items: center; justify-content: center; background: #fafafa; border: 1px solid var(--e-border); border-radius: 4px; flex-shrink: 0; }
.drumlin-detail-img-box img { max-width: 90%; max-height: 90%; object-fit: contain; }
.drumlin-form-box { flex: 1; }
.drumlin-price-row { background: #fafafa; padding: 15px; border-radius: 4px; margin-bottom: 20px; display: flex; align-items: center; gap: 15px; }
.drumlin-price-label { font-size: 13px; color: var(--e-sub); }
.drumlin-price-val { font-size: 26px; color: var(--e-accent); font-weight: bold; }
.drumlin-stock-val { font-size: 12px; color: var(--e-sub); }
.drumlin-form-item { margin-bottom: 15px; }
.drumlin-form-item label { display: block; font-size: 13px; font-weight: bold; margin-bottom: 6px; }
.drumlin-input { width: 100%; height: 38px; border: 1px solid var(--e-border); border-radius: 4px; padding: 0 12px; box-sizing: border-box; outline: none; }
.drumlin-input:focus { border-color: var(--e-accent); }
.drumlin-btn-submit { width: 100%; height: 44px; background: var(--e-accent); color: #fff; border: none; border-radius: 4px; font-size: 14px; font-weight: bold; cursor: pointer; transition: background 0.2s; }
.drumlin-btn-submit:hover { background: #cc2f26; }
.drumlin-btn-submit:disabled { background: #cbd5e1; cursor: not-allowed; }
.drumlin-desc-section { margin-top: 30px; }
.drumlin-desc-title { font-size: 16px; font-weight: bold; margin-bottom: 15px; border-bottom: 1px solid var(--e-border); padding-bottom: 10px; }
.drumlin-desc-content { background: var(--e-card); border: 1px solid var(--e-border); border-radius: 4px; padding: 30px; line-height: 1.8; color: #333; }
.drumlin-detail-sidebar { width: 280px; flex-shrink: 0; }
.drumlin-author-widget { text-align: center; }
.drumlin-author-avatar { width: 50px; height: 50px; line-height: 50px; background: #fafafa; border: 1px solid var(--e-border); border-radius: 50%; margin: 0 auto 15px; font-size: 20px; color: var(--e-sub); }
.drumlin-author-name { font-size: 15px; font-weight: bold; margin-bottom: 8px; }
.drumlin-author-bio { font-size: 12px; color: var(--e-sub); line-height: 1.6; }
.drumlin-mini-search { display: flex; gap: 8px; }
.drumlin-btn-search { background: var(--e-accent); color: #fff; border: none; border-radius: 4px; padding: 0 15px; cursor: pointer; font-weight: bold; }
.drumlin-floating-bar { position: fixed; right: 20px; bottom: 40px; display: flex; flex-direction: column; gap: 10px; z-index: 999; }
.drumlin-float-btn { width: 44px; height: 44px; line-height: 44px; background: var(--e-card); border: 1px solid var(--e-border); border-radius: 50%; text-align: center; color: var(--e-sub); font-size: 18px; box-shadow: var(--e-shadow); transition: all 0.2s; }
.drumlin-float-btn:hover { background: var(--e-accent); color: #fff; border-color: var(--e-accent); }
.drumlin-password-container { max-width: 500px; margin: 40px auto; padding: 0 20px; }
.drumlin-password-card { background: var(--e-card); border: 1px solid var(--e-border); border-radius: 4px; padding: 40px; }
.drumlin-password-title { font-size: 18px; font-weight: bold; margin: 0 0 25px 0; text-align: center; }
.drumlin-wholesale-trigger { color: var(--e-accent); cursor: pointer; font-size: 13px; margin-bottom: 15px; font-weight: bold; }
.drumlin-wholesale-popup { padding: 20px; }
.drumlin-wholesale-popup-title { font-size: 14px; font-weight: bold; margin-bottom: 15px; }
.drumlin-group-wrap { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
.drumlin-group-title { font-size: 18px; font-weight: bold; margin-bottom: 20px; }
.drumlin-group-container { background: var(--e-card); border: 1px solid var(--e-border); border-radius: 4px; overflow: hidden; }
.drumlin-table-header { display: flex; background: #fafafa; border-bottom: 1px solid var(--e-border); padding: 12px 20px; font-weight: bold; color: var(--e-sub); font-size: 13px; }
.drumlin-th-item { flex: 1; }
.drumlin-table-row { display: flex; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--e-border); }
.drumlin-table-row:last-child { border-bottom: none; }
.drumlin-table-row:hover { background: #fafafa; }
.drumlin-td-item { flex: 1; }
.drumlin-item-name a { font-weight: bold; }
.drumlin-item-name a:hover { color: var(--e-accent); }
.drumlin-type-tag { font-size: 11px; background: #f1f5f9; color: #475569; padding: 2px 6px; border-radius: 3px; }
.drumlin-type-auto { background: #e0f2fe; color: #0369a1; }
.drumlin-item-price { font-weight: bold; color: var(--e-accent); }
.drumlin-item-stock { color: var(--e-sub); }
.drumlin-btn-table { background: var(--e-accent); color: #fff; padding: 6px 16px; border-radius: 4px; font-size: 12px; font-weight: bold; }
.drumlin-btn-table:hover { background: #cc2f26; color: #fff; }
.drumlin-btn-disabled { background: #cbd5e1; cursor: not-allowed; }
.drumlin-btn-disabled:hover { background: #cbd5e1; color: #fff; }
.drumlin-checkout-wrap { max-width: 500px; margin: 40px auto; padding: 0 20px; }
.drumlin-checkout-card { background: var(--e-card); border: 1px solid var(--e-border); border-radius: 4px; padding: 30px; margin-bottom: 20px; }
.drumlin-card-header { font-size: 16px; font-weight: bold; margin-bottom: 20px; border-bottom: 1px solid var(--e-border); padding-bottom: 10px; }
.drumlin-checkout-alert { background: #fef2f2; border: 1px solid #fee2e2; color: #ef4444; padding: 15px; border-radius: 4px; font-size: 13px; }
.drumlin-checkout-return { color: var(--e-sub); font-size: 13px; }
.drumlin-checkout-return:hover { color: var(--e-accent); }
.drumlin-checkout-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--e-border); }
.drumlin-checkout-row:last-of-type { border-bottom: none; }
.drumlin-checkout-total { font-weight: bold; font-size: 18px; color: var(--e-accent); border-top: 1px solid var(--e-border); padding-top: 20px; margin-top: 10px; }
.drumlin-success-title { color: #10b981; font-size: 18px; font-weight: bold; margin-bottom: 20px; }
.drumlin-checkout-btn { width: 100%; height: 44px; background: var(--e-accent); color: #fff; border: none; border-radius: 4px; font-size: 14px; font-weight: bold; cursor: pointer; }
.drumlin-pay-select-title { font-size: 14px; font-weight: bold; color: var(--e-sub); text-align: center; margin-bottom: 20px; }
.drumlin-pay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.drumlin-pay-button { background: var(--e-card); border: 1px solid var(--e-border); border-radius: 4px; padding: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.drumlin-pay-button:hover { border-color: var(--e-accent); }
.drumlin-pay-button img { height: 24px; }
.drumlin-query-card { background: var(--e-card); border: 1px solid var(--e-border); border-radius: 4px; padding: 30px; }
.drumlin-query-tip { background: #f0fdf4; border: 1px solid #dcfce7; color: #15803d; padding: 12px; border-radius: 4px; font-size: 13px; margin-bottom: 20px; }
.drumlin-query-table { border: 1px solid var(--e-border); border-radius: 4px; overflow: hidden; }
.drumlin-query-header-row { display: flex; background: #fafafa; border-bottom: 1px solid var(--e-border); padding: 12px 15px; font-weight: bold; color: var(--e-sub); }
.drumlin-query-col { flex: 1; }
.drumlin-query-data-row { display: flex; align-items: center; padding: 15px; }
.drumlin-query-btn { background: var(--e-accent); color: #fff; padding: 6px 16px; border-radius: 4px; font-size: 12px; font-weight: bold; border: none; cursor: pointer; }
.drumlin-query-back { color: var(--e-sub); font-size: 12px; }
.drumlin-query-back:hover { color: var(--e-accent); }
.drumlin-query-empty { text-align: center; padding: 40px 0; color: var(--e-sub); }
.drumlin-query-container { background: var(--e-card); border: 1px solid var(--e-border); border-radius: 4px; overflow: hidden; }
.drumlin-query-tabs { display: flex; background: #fafafa; border-bottom: 1px solid var(--e-border); }
.drumlin-query-tab-link { flex: 1; text-align: center; padding: 15px 0; color: var(--e-sub); font-weight: bold; border-bottom: 2px solid transparent; }
.drumlin-query-tab-link:hover { color: var(--e-accent); }
.drumlin-query-tabs .drumlin-active { color: var(--e-accent); border-bottom-color: var(--e-accent); background: var(--e-card); }
.drumlin-query-body { padding: 30px; }
.drumlin-query-info { background: #f8fafc; border: 1px solid var(--e-border); padding: 12px; border-radius: 4px; font-size: 12px; color: var(--e-sub); margin-bottom: 25px; text-align: center; }
.drumlin-mobile-order-card { border: 1px solid var(--e-border); background: #fafafa; padding: 15px; border-radius: 4px; margin-bottom: 10px; }
.drumlin-mobile-card-title { display: flex; justify-content: space-between; font-weight: bold; cursor: pointer; }
@media (max-width: 900px) {
    .drumlin-home-layout { flex-direction: column-reverse; gap: 20px; }
    .drumlin-sidebar { width: 100%; }
    .drumlin-detail-layout { flex-direction: column; gap: 20px; }
    .drumlin-detail-sidebar { width: 100%; }
    .drumlin-checkout-panel { flex-direction: column; gap: 20px; }
    .drumlin-detail-img-box { width: 100%; }
}
@media (max-width: 600px) {
    .drumlin-footer-inner { flex-direction: column; gap: 15px; }
}
