.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border: none;
    border-radius: 14px;
    font: inherit;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.cta-button:hover {
    transform: translateY(-1px);
    filter: saturate(1.04);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.22);
}

.cta-button:focus-visible {
    outline: 3px solid rgba(13, 141, 255, 0.22);
    outline-offset: 3px;
}

.cta-button:disabled {
    opacity: 0.75;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.cta-button-lg {
    padding: 18px 22px;
    font-size: 18px;
}

.cta-button-sm {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 12px;
}

.cta-button-inline {
    width: auto;
    min-width: 180px;
}

.cta-button-block {
    width: 100%;
}

.cta-button-hotline {
    background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
}

.cta-button-chat {
    background: linear-gradient(135deg, #0d8dff 0%, #0068d6 100%);
}

.cta-button-cart {
    background: linear-gradient(135deg, #d32f2f 0%, #a31212 100%);
}

.cta-button-neutral {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.cta-button-success {
    background: linear-gradient(135deg, #2eae60 0%, #1f8a4a 100%);
}

.cta-button-error {
    background: linear-gradient(135deg, #ef5350 0%, #c62828 100%);
}

.sidebar-search-shell {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.sidebar-search-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    box-sizing: border-box;
}

.sidebar-section-title {
    margin: 0;
    padding-bottom: 8px;
    color: #972f17;
    border-bottom: 2px solid #972f17;
}

.sidebar-section-title-spaced {
    margin-top: 30px;
}

.sidebar-stable-card {
    margin: 20px 0;
    padding: 18px;
    background: #fff5f3;
    border-left: 4px solid #972f17;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(151, 47, 23, 0.08);
}

.sidebar-card-title {
    margin: 0 0 15px;
    color: #972f17;
    font-size: 15px;
    font-weight: bold;
}

.sidebar-card-title-sm {
    margin-bottom: 12px;
    font-size: 14px;
}

.sidebar-contact-group + .sidebar-contact-group {
    margin-top: 14px;
}

.sidebar-contact-region {
    margin: 0 0 8px;
    font-size: 13px;
    color: #4a2f22;
}

.sidebar-contact-links {
    display: grid;
    gap: 8px;
}

.sidebar-contact-link {
    justify-content: flex-start;
}

.sidebar-info-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: #5b4636;
}

.sidebar-divider {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #ead7d0;
}

.sidebar-category-list {
    padding: 15px;
    background: #fff5f3;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(151, 47, 23, 0.08);
}

.sidebar-category-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.sidebar-category-item:last-child {
    border-bottom: 0;
}

.sidebar-category-link {
    flex: 1;
    color: #972f17;
    text-decoration: none;
}

.sidebar-category-count {
    min-width: 22px;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
}