/* Bách hóa xanh - Clean Soft Green Theme */
:root {
    --primary: #059669;
    --primary-light: #10b981;
    --primary-subtle: #ecfdf5;
    --primary-border: #a7f3d0;
    
    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --bg-surface: #f1f5f9;
    --bg-surface-hover: #e2e8f0;
    
    --border-light: #e2e8f0;
    --border-subtle: #edf2f7;
    
    --text-main: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-subtle: #94a3b8;
    
    --red-alert: #e11d48;
    --amber-promo: #d97706;
    
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    --shadow-card: 0 1px 3px 0 rgba(15, 23, 42, 0.05), 0 1px 2px -1px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 4px 12px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-floating: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
    
    --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body.bhx-watch-page {
    background: var(--bg-page);
}

.bhx-watch-page .content.bhx-content {
    display: block;
    padding: 64px 0 0;
}

.bhx-watch-page .topbar {
    top: 64px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

/* ==================== Topbar ==================== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 9px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    color: var(--primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-border);
    flex-shrink: 0;
}

.brand-title {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 0;
    line-height: 1.2;
}

.brand-title-row {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.legend-help-btn {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #047857;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.legend-help-btn:hover {
    color: #ffffff;
    background: #059669;
    border-color: #059669;
}

.run-meta-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px var(--primary-subtle);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Button Base */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.icon-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.15s ease;
}

.icon-btn:hover {
    color: var(--text-main);
    background: #eef2f7;
}

.push-btn.enabled {
    color: #baffea;
    background: #02af5e;
    border-color: var(--primary-border);
    box-shadow: 0 0 0 2px rgba(2, 175, 94, 0.14);
}

.push-btn.denied {
    color: #ebcece;
    background: #e52828;
    border-color: #fecaca;
    box-shadow: 0 0 0 2px rgba(229, 40, 40, 0.14);
}

.push-btn.unsupported {
    opacity: 0.55;
    cursor: not-allowed;
}

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

.btn-primary:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.btn-primary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.legend-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

body.modal-open {
    overflow: hidden;
}

.legend-modal.open {
    display: flex;
}

.legend-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.legend-modal-panel {
    position: relative;
    width: min(480px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.18);
}

.legend-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
    border-bottom: 1px solid var(--border-light);
}

.legend-modal-head h2 {
    margin: 0;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0;
}

.legend-close-btn {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--text-muted);
    background: #f8fafc;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.legend-close-btn:hover {
    color: var(--text-main);
    background: #eef2f7;
}

.legend-list {
    display: grid;
    gap: 0;
    padding: 8px 16px 16px;
}

.legend-row {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: start;
    padding: 11px 0;
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.45;
    border-bottom: 1px solid #eef2f7;
}

.legend-row:last-child {
    border-bottom: 0;
}

.legend-icon {
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
}

.spinning {
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* ==================== Main Container ==================== */
.container {
    max-width: 1200px;
    margin: 14px auto 36px;
    padding: 0 20px;
}

/* ==================== Toolbar (Tabs & Search) ==================== */
.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    background: var(--bg-card);
    padding: 9px 10px 9px 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.tabs-wrap {
    position: relative;
    min-width: 0;
}

.tabs-hint {
    display: none;
}

.tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.tab:hover {
    color: var(--text-main);
    background: var(--bg-surface);
}

.tab.active {
    background: var(--primary-subtle);
    color: var(--primary);
    border-color: var(--primary-border);
}

.tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 18px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    background: var(--bg-surface);
    color: var(--text-muted);
    transition: all 0.15s ease;
}

.tab.active .tab-badge {
    background: #ffffff;
    color: var(--primary);
    border: 1px solid var(--primary-border);
}

/* Search Box */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 220px;
    flex: 1;
    max-width: 340px;
}

.search-icon {
    position: absolute;
    left: 10px;
    color: var(--text-subtle);
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 7px 28px 7px 32px;
    font-family: inherit;
    font-size: 13px;
    color: var(--text-main);
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.15s ease;
}

.search-box input:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.search-box input::placeholder {
    color: var(--text-subtle);
}

.clear-btn {
    position: absolute;
    right: 6px;
    background: transparent;
    border: none;
    font-size: 16px;
    color: var(--text-subtle);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

/* ==================== Status Banner ==================== */
.status-banner {
    padding: 10px 14px;
    margin-bottom: 14px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border-light);
    background: #ffffff;
}

.status-banner.error {
    background: #fff1f2;
    color: var(--red-alert);
    border-color: #fecdd3;
}

.status-banner.info {
    background: var(--primary-subtle);
    color: var(--primary);
    border-color: var(--primary-border);
}

.bulk-bar {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    color: var(--text-main);
    font-size: 12.5px;
    font-weight: 700;
    box-shadow: var(--shadow-floating);
    backdrop-filter: blur(8px);
}

.bulk-copy-btn,
.bulk-clear-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 36px;
    padding: 0 12px;
    font: inherit;
    font-size: 12.5px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transition: all 0.15s ease;
}

.bulk-copy-btn:hover {
    background: #047857;
    border-color: #047857;
    color: #ffffff;
}

.bulk-clear-btn {
    width: 36px;
    padding: 0;
    background: var(--bg-surface);
    border-color: var(--border-light);
    color: var(--text-muted);
}

.bulk-clear-btn:hover {
    background: #fff1f2;
    border-color: #fecdd3;
    color: var(--red-alert);
}

/* ==================== Panels & Layout ==================== */
.panel {
    display: none;
}

.panel.active {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 13.5px;
}

/* ==================== Product Card ==================== */
.product-card {
    position: relative;
    display: grid;
    grid-template-columns: 78px minmax(320px, 1fr) 310px 76px;
    align-items: center;
    gap: 18px;
    padding: 11px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: all 0.18s ease;
}

.product-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

.product-card.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.16), var(--shadow-card);
}

.select-btn {
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: 2;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    touch-action: none;
    user-select: none;
    transition: all 0.15s ease;
}

.select-btn:hover,
.product-card.selected .select-btn {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.select-icon-check {
    display: none;
}

.product-card.selected .select-icon-plus {
    display: none;
}

.product-card.selected .select-icon-check {
    display: block;
}

/* Thumbnail Column */
.thumb-col {
    width: 76px;
    height: 76px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.thumb {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.product-card:hover .thumb {
    transform: scale(1.04);
}

/* Info Column */
.info-col {
    min-width: 0;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.brand-tag {
    display: inline-block;
    padding: 1px 6px;
    font-size: 11px;
    font-weight: 700;
    background: var(--primary-subtle);
    color: var(--primary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--primary-border);
}

.unit-tag {
    display: inline-block;
    padding: 1px 5px;
    font-size: 11px;
    font-weight: 500;
    background: var(--bg-surface);
    color: var(--text-muted);
    border-radius: var(--radius-sm);
}

.product-name {
    display: block;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.15s ease;
    word-break: break-word;
}

.product-name:hover {
    color: var(--primary);
}

.promo-text {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--amber-promo);
    line-height: 1.3;
}

.change-note {
    margin-top: 5px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.deal-log-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 6px;
}

.deal-log-group + .deal-log-group {
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.deal-log-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 2px 2px;
}

.deal-log-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-main);
}

.deal-log-meta {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.deal-log-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Numbers Column */
.numbers-col {
    display: grid;
    grid-template-columns: 70px 112px 112px;
    gap: 8px;
    text-align: right;
    align-items: center;
}

.num-cell {
    min-width: 0;
}

.num-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--text-subtle);
    margin-bottom: 2px;
    white-space: nowrap;
}

.discount {
    font-size: 16px;
    font-weight: 800;
    color: var(--red-alert);
}

.price {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
}

.sys-price {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-subtle);
    text-decoration: line-through;
}

/* Action Column */
.action-col {
    display: flex;
    justify-content: flex-end;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 8px 9px;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 600;
    background: var(--bg-surface);
    color: var(--text-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.15s ease;
}

.copy-btn:hover {
    background: var(--primary-subtle);
    color: var(--primary);
    border-color: var(--primary-border);
}

.copy-btn.copied {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* ==================== Infinite Scroll & Sentinel ==================== */
.infinite-scroll-state {
    padding: 20px 0 28px;
    text-align: center;
}

.loading-state {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loaded-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 12.5px;
    font-weight: 500;
}

.loaded-all svg {
    color: var(--primary);
}

/* ==================== Back To Top Button ==================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 13px;
    background: #ffffff;
    color: var(--primary);
    border: 1px solid var(--primary-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-floating);
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -4px rgba(5, 150, 105, 0.25);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

body.bulk-copy-active .back-to-top {
    bottom: 82px;
}

/* ==================== Toast Feedback ==================== */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text-main);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-floating);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ==================== RESPONSIVE / MOBILE ==================== */
@media (max-width: 900px) {
    .product-card {
        grid-template-columns: 76px 1fr 72px;
        grid-template-areas: 
            "thumb info action"
            "numbers numbers numbers";
        gap: 10px 12px;
    }

    .thumb-col { grid-area: thumb; }
    .info-col { grid-area: info; }
    .action-col { grid-area: action; align-self: start; }
    .numbers-col { 
        grid-area: numbers;
        background: var(--bg-surface);
        padding: 6px 10px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-subtle);
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }
}

@media (max-width: 640px) {
    .bhx-watch-page .content.bhx-content {
        padding: 64px 0 0;
    }

    .topbar-inner {
        padding: 8px 12px;
    }

    .brand-icon {
        width: 32px;
        height: 32px;
    }

    .brand-title {
        font-size: 15px;
    }

    .run-meta-wrap {
        font-size: 11px;
    }

    .btn-primary {
        padding: 6px 10px;
        font-size: 12px;
    }

    .container {
        padding: 0 10px;
        margin-top: 10px;
        margin-bottom: 24px;
    }

    .toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: 8px;
        gap: 8px;
        margin-bottom: 10px;
    }

    .tabs {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        padding: 0 18px 2px;
        scrollbar-width: none;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tabs-wrap {
        min-width: 0;
        overflow: hidden;
    }

    .tabs-hint {
        position: absolute;
        top: 43%;
        z-index: 3;
        display: none;
        align-items: center;
        justify-content: center;
        width: 15px;
        height: 34px;
        margin-top: -17px;
        border: 0;
        background: rgb(211 211 211 / 88%) !important;
        color: var(--text-body);
        font-size: 18px;
        font-weight: 400;
        line-height: 1;
        cursor: pointer;
        pointer-events: auto;
    }

    .tabs-hint-left {
        left: 0;
        background: linear-gradient(90deg, #ffffff 56%, rgba(255, 255, 255, 0));
    }

    .tabs-hint-right {
        right: 0;
        background: linear-gradient(270deg, #ffffff 56%, rgba(255, 255, 255, 0));
    }

    .tabs-wrap.can-scroll-left .tabs-hint-left,
    .tabs-wrap.can-scroll-right .tabs-hint-right {
        display: inline-flex;
    }

    .tab {
        padding: 6px 10px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .search-box {
        max-width: 100%;
        min-width: 100%;
    }

    .product-card {
        grid-template-columns: 68px 1fr;
        grid-template-areas: 
            "thumb info"
            "numbers numbers";
        padding: 10px;
    }

    .thumb-col {
        width: 68px;
        height: 68px;
    }

    .product-name {
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .numbers-col {
        position: relative;
        grid-template-columns: repeat(4, 1fr);
        padding: 6px 4px;
        gap: 4px;
    }

    .num-label {
        font-size: 9px;
    }

    .discount {
        font-size: 13.5px;
    }

    .price {
        font-size: 13.5px;
    }

    .sys-price {
        font-size: 11px;
    }

    .action-col {
        position: absolute;
        right: 14px;
        bottom: 16px;
        z-index: 2;
        width: calc(25% - 3px);
        pointer-events: none;
    }

    .copy-btn {
        width: 100%;
        min-height: 26px;
        padding: 5px 4px;
        font-size: 12px;
        pointer-events: auto;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
        padding: 8px 10px;
    }

    .btt-text {
        display: none;
    }
}
