/* Wrapper */
.vendor-profile-wrapper {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 0 40px;
    font-family: 'Segoe UI', sans-serif;
    color: #1a1a1a;
}

/* Header */
.vp-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 16px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.vp-back-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s;
}

.vp-back-btn:hover { background: #e0e0e0; }

.vp-header-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.vp-verified-label {
    font-size: 12px;
    color: #888;
}

/* Profile Section */
.vp-profile-section {
    padding: 20px 16px;
}

.vp-profile-top {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.vp-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.vp-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e0e0e0;
}

.vp-verified-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #43a047;
    font-size: 14px;
}

.vp-profile-info { flex: 1; }

.vp-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 2px;
    color: #1a1a1a;
}

.vp-name-check { color: #1e88e5; font-size: 14px; }

.vp-store-name {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px;
}

.vp-stats {
    display: flex;
    gap: 24px;
}

.vp-stat-item { text-align: center; }

.vp-stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.vp-stat-label {
    font-size: 12px;
    color: #888;
}

/* Action Buttons */
.vp-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.vp-btn {
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.vp-btn-outline {
    flex: 1;
    background: #fff;
    border: 1.5px solid #c8d0e0;
    color: #333;
}

.vp-btn-outline:hover {
    background: #f5f5f5;
}

.vp-btn-icon {
    width: 40px;
    background: #fff;
    border: 1.5px solid #c8d0e0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Address */
.vp-address {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #555;
}

.vp-address i { color: #888; }

/* Badges */
.vp-badges {
    display: flex;
    justify-content: space-around;
    padding: 16px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 4px;
}

.vp-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.vp-badge-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.vp-badge-label {
    font-size: 11px;
    color: #555;
    text-align: center;
    font-weight: 500;
}

/* Tabs */
.vp-tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    padding: 0 16px;
}

.vp-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.vp-tab.active {
    color: #1e88e5;
    border-bottom-color: #1e88e5;
}

/* Tab Content */
.vp-tab-pane { display: none; padding: 16px; }
.vp-tab-pane.active { display: block; }

/* Post Card */
.vp-post-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.vp-post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.vp-post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.vp-post-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.vp-post-date {
    font-size: 12px;
    color: #999;
}

.vp-post-body p {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 10px;
}

.vp-post-tags {
    color: #1e88e5;
    font-size: 13px;
}

.vp-empty-text {
    text-align: center;
    color: #aaa;
    padding: 30px 0;
    font-size: 14px;
}

/* Post Header */
.vp-post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.vp-post-header-info { flex: 1; }

.vp-post-more {
    background: none;
    border: none;
    font-size: 18px;
    color: #555;
    cursor: pointer;
    padding: 4px 8px;
}

/* Action Bar */
.vp-post-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 6px;
    border-top: 1px solid #f5f5f5;
    margin-top: 10px;
}

.vp-post-actions-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vp-action-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    padding: 0;
    transition: transform 0.15s;
}

.vp-action-btn span {
    font-size: 13px;
    color: #555;
    font-weight: 600;
}

.vp-action-btn:hover { transform: scale(1.1); }

/* Like Active */
.vp-like-btn.liked i {
    color: #e53935;
    font-weight: 900;
}
.vp-like-btn.liked i::before {
    content: "\f004"; /* solid heart */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Save Active */
.vp-save-btn.saved i {
    font-weight: 900;
    color: #1a1a1a;
}

/* Likes Line */
.vp-likes-line {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #333;
    margin: 6px 0 4px;
}

.vp-likes-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.vp-likes-link {
    cursor: pointer;
    font-weight: 700;
}

.vp-likes-link:hover { text-decoration: underline; }

/* Comments Preview */
.vp-comments-preview { margin-top: 4px; }

.vp-comment-item {
    font-size: 13px;
    color: #333;
    margin-bottom: 3px;
}

.vp-view-all-comments {
    background: none;
    border: none;
    font-size: 13px;
    color: #888;
    cursor: pointer;
    padding: 4px 0;
    display: block;
}

/* Modal */
.vp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.vp-modal {
    background: #fff;
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-width: 780px;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.25s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

.vp-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.vp-modal-header h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.vp-modal-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #555;
}

.vp-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
}

/* Modal User Row */
.vp-modal-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.vp-modal-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.vp-modal-username { font-size: 13px; font-weight: 700; }
.vp-modal-name { font-size: 12px; color: #888; }

.vp-follow-btn {
    margin-left: auto;
    background: none;
    border: 1.5px solid #1e88e5;
    color: #1e88e5;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
}

/* Comment Full */
.vp-comment-full {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.vp-comment-content { flex: 1; font-size: 13px; }

.vp-comment-meta {
    display: flex;
    gap: 12px;
    margin-top: 4px;
    font-size: 11px;
    color: #888;
}

.vp-comment-like,
.vp-reply-btn {
    background: none;
    border: none;
    font-size: 11px;
    color: #888;
    cursor: pointer;
    padding: 0;
}

/* Add Comment */
.vp-add-comment {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-top: 1px solid #f0f0f0;
}

.vp-comment-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
    color: #333;
    background: #f8f8f8;
    border-radius: 20px;
    padding: 8px 14px;
}

.vp-comment-post-btn {
    background: none;
    border: none;
    color: #1e88e5;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}







/* Review Css Start */
/* Header */
.rv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 16px 16px 0;
}

.rv-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.rv-write-btn {
    font-size: 13px;
    font-weight: 600;
    color: #1e88e5;
    text-decoration: none;
}

.rv-write-btn:hover { text-decoration: underline; }

/* Summary */
.rv-summary {
    display: flex;
    gap: 20px;
    padding: 0 16px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.rv-summary-left {
    text-align: center;
    min-width: 90px;
}

.rv-big-score {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 6px;
}

.rv-big-stars {
    color: #f9a825;
    font-size: 16px;
    margin-bottom: 6px;
}

.rv-based-on {
    font-size: 11px;
    color: #888;
}

.rv-summary-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}

.rv-bar-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.rv-bar-label {
    min-width: 10px;
    color: #555;
    font-weight: 600;
}

.rv-bar-track {
    flex: 1;
    height: 7px;
    background: #efefef;
    border-radius: 10px;
    overflow: hidden;
}

.rv-bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s;
}

.rv-bar-gold   { background: #f9a825; }
.rv-bar-yellow { background: #fdd835; }
.rv-bar-gray   { background: #bdbdbd; }

.rv-bar-count {
    min-width: 28px;
    text-align: right;
    color: #888;
    font-size: 11px;
}

/* Filter */
.rv-filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.rv-clear-all {
    font-size: 12px;
    color: #1e88e5;
    text-decoration: none;
    font-weight: 500;
}

.rv-filter-pills {
    display: flex;
    gap: 8px;
    padding: 0 16px 14px;
    flex-wrap: wrap;
}

.rv-pill {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
}

.rv-pill.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.rv-pill:hover:not(.active) { background: #f5f5f5; }

/* Review List */
.rv-list { padding: 0 16px; }

.rv-item {
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
}

.rv-item:last-child { border-bottom: none; }

/* Item Header */
.rv-item-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.rv-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.rv-user-info { flex: 1; }

.rv-user-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.rv-verified-badge {
    font-size: 11px;
    font-weight: 600;
    color: #43a047;
    background: #e8f5e9;
    padding: 2px 7px;
    border-radius: 10px;
}

.rv-item-stars {
    color: #f9a825;
    font-size: 13px;
    margin-top: 3px;
}

.rv-item-date {
    font-size: 11px;
    color: #aaa;
    white-space: nowrap;
}

/* Body */
.rv-item-body {
    font-size: 13px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Product Tag */
.rv-product-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.rv-product-icon {
    width: 36px;
    height: 36px;
    background: #e3f2fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e88e5;
    font-size: 16px;
    flex-shrink: 0;
}

.rv-product-info { flex: 1; }

.rv-product-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

.rv-product-variant {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.rv-product-price {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Images */
.rv-images {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.rv-img-placeholder {
    width: 70px;
    height: 70px;
    background: #f0f0f0;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

/* Actions */
.rv-item-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rv-helpful-btn {
    background: none;
    border: none;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    font-weight: 500;
}

.rv-helpful-btn:hover { color: #1e88e5; }

.rv-reply-btn-2 {
    background: none;
    border: none;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    padding: 0;
    font-weight: 500;
}

.rv-reply-btn-2:hover { color: #1a1a1a; }

.rv-more-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #aaa;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
}

/* Review Css End */


/* About Us Css Start */
/* Section */
.ab-section {
    padding: 16px;
    border-bottom: 8px solid #f5f7fa;
}

.ab-section:last-child { border-bottom: none; }

.ab-section-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
}

/* About Header */
.ab-about-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.ab-about-icon {
    width: 38px;
    height: 38px;
    background: #e3f2fd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e88e5;
    font-size: 16px;
    flex-shrink: 0;
}

.ab-about-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.ab-about-text {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Promise */
.ab-promise-box {
    background: #f8fafc;
    border-left: 3px solid #1e88e5;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 14px;
}

.ab-promise-icon {
    color: #1e88e5;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ab-promise-text {
    font-size: 13px;
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Info List */
.ab-info-list { display: flex; flex-direction: column; gap: 14px; }

.ab-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ab-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.ab-info-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}

.ab-info-value {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Contact */
.ab-contact-list { display: flex; flex-direction: column; gap: 14px; }

.ab-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ab-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.ab-contact-content { flex: 1; }

.ab-contact-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}

.ab-contact-value {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.ab-contact-action {
    font-size: 12px;
    font-weight: 600;
    color: #1e88e5;
    text-decoration: none;
    white-space: nowrap;
}

.ab-contact-action:hover { text-decoration: underline; }

/* Hours */
.ab-hours-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }

.ab-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.ab-hours-day { color: #444; }
.ab-hours-time { font-weight: 600; color: #1a1a1a; }

.ab-open-now {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Policy Cards */
.ab-policy-card {
    background: #f8fafc;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
}

.ab-policy-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ab-policy-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.ab-policy-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.ab-shipping-rows { display: flex; flex-direction: column; gap: 6px; }

.ab-shipping-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #555;
}

.ab-shipping-value { font-weight: 600; color: #1a1a1a; }

.ab-return-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ab-return-list li {
    font-size: 12px;
    color: #555;
    padding-left: 14px;
    position: relative;
}

.ab-return-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #43a047;
    font-weight: 700;
}

/* Terms */
.ab-terms-list { display: flex; flex-direction: column; }

.ab-terms-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.15s;
}

.ab-terms-item:last-child { border-bottom: none; }
.ab-terms-item:hover { color: #1e88e5; }

.ab-terms-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.ab-terms-arrow {
    margin-left: auto;
    color: #bbb;
    font-size: 12px;
}

/* About Us End */


/* Responsive */
@media (max-width: 576px) {
    .vp-stats { gap: 16px; }
    .vp-stat-value { font-size: 16px; }
    .vp-badge-icon { width: 46px; height: 46px; font-size: 17px; }
    .vp-tab { font-size: 13px; padding: 12px 0; }
}