.cho-vendor-card {
    border: 1px solid #ebebeb;
    border-radius: 15px;
    padding: 30px 25px;
    background: #ffffff;
    margin: 25px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    max-width: 100%;
    text-align: center;
    /* Căn giữa nội dung văn bản */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Căn giữa các flex items */
}

.cho-vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.vendor-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #888;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vendor-card-header {
    margin-bottom: 20px;
    width: 100%;
}

.vendor-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f8f8f8;
    padding: 4px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vendor-avatar:hover {
    transform: rotate(5deg) scale(1.05);
}

.vendor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.vendor-name {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.vendor-name a {
    color: #111;
    text-decoration: none;
}

.vendor-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.vendor-actions {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.wcfm-message-button {
    width: 100%;
    max-width: 250px;
}

.wcfm-message-button .wcfm_msg_btn,
.wcfm-message-button .wcfm_shop_direct_message,
.wcfm-message-button {
    display: inline-block;
    background: #3b5998;
    /* Professional Blue */
    color: #fff !important;
    padding: 14px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    width: 100%;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(59, 89, 152, 0.2);
    text-decoration: none;
    text-align: center;
}

.wcfm-message-button:hover,
.wcfm-message-button .wcfm_msg_btn:hover {
    background: #2d4373;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 89, 152, 0.3);
}

.vendor-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #eee;
    width: 100%;
}

.stat-item {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f9f9f9;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.stat-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.stat-item i {
    color: #666;
    font-size: 14px;
}

.stat-item.best-seller {
    background: #fff8e1;
}

.stat-item.best-seller .badge {
    color: #ffa000;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    width: auto;
    height: auto;
}

.vendor-meta {
    text-align: center;
    /* Đổi sang căn giữa */
    margin-bottom: 25px;
    background: #fafafa;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-item span {
    color: #777;
    font-weight: 500;
}

.meta-item strong {
    color: #111;
    font-weight: 600;
}

.vendor-footer {
    width: 100%;
}

.vendor-footer .btn-go-store {
    display: block;
    background: #111;
    border: 2px solid #111;
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.vendor-footer .btn-go-store:hover {
    background: #333;
    border-color: #333;
    transform: scale(1.02);
}

.vendor-note {
    margin-top: 20px;
    font-size: 12px;
    color: #aaa;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .cho-vendor-card {
        padding: 20px;
    }
}