/*
 * Vik Trust Badge + Free Shipping Banner
 * shop.hkras.com (2026-08-09)
 * 加载方式: mu-plugins/vik-trust-badge.php wp_enqueue_scripts
 * 卸载方式: 删除 .php 文件即可（CSS 自动失效）
 */

/* === FREE SHIPPING 顶部横幅 === */
.vik-fs-banner {
    background: linear-gradient(90deg, #2d6a4f 0%, #40916c 100%);
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 9999;
    position: relative;
}
.vik-fs-banner .vik-truck {
    margin-right: 6px;
    font-style: normal;
}

/* === Trust Badge Sidebar Widget === */
.vik-trust-badge {
    border: 2px solid #2d6a4f;
    border-radius: 8px;
    padding: 18px;
    margin: 20px 0;
    background: #f8fff8;
    font-family: var(--wp--preset--font-family--system, -apple-system, BlinkMacSystemFont, sans-serif);
}
.vik-trust-badge h4 {
    color: #2d6a4f;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-align: center;
}
.vik-trust-badge ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vik-trust-badge li {
    padding: 8px 0;
    border-bottom: 1px solid #d8e2dc;
    font-size: 14px;
    color: #1b4332;
    display: flex;
    align-items: center;
}
.vik-trust-badge li:last-child {
    border-bottom: none;
}
.vik-trust-badge li .vik-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #2d6a4f;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* === Mobile responsive === */
@media (max-width: 768px) {
    .vik-fs-banner {
        font-size: 12px;
        padding: 8px 10px;
    }
    .vik-trust-badge {
        padding: 14px;
        margin: 14px 0;
    }
    .vik-trust-badge li {
        font-size: 13px;
    }
}