
/* ============================================
   Product Sidebar - Additional Sections
   ============================================ */

/* Product Specifications Tags */
.product-specs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.spec-tag {
    padding: 6px 12px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

/* Trust Badges Row - Side by Side */
.seller-trust-badges-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.seller-trust-badges-row .trust-badge-item {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.seller-trust-badges-row .trust-badge-item:hover {
    background: #dcfce7;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
}

.seller-trust-badges-row .badge-value {
    font-size: 20px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 4px;
}

.seller-trust-badges-row .badge-value.success {
    color: #059669;
}

.seller-trust-badges-row .badge-label {
    font-size: 11px;
    color: #047857;
    font-weight: 500;
    line-height: 1.3;
}

/* Partner Since Badge */
.partner-since-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    background: #f0fdf4;
    border-left: 3px solid #10b981;
    border-radius: 8px;
    margin: 15px 0;
}

[dir="rtl"] .partner-since-badge {
    border-left: none;
    border-right: 3px solid #10b981;
}

.partner-years {
    font-size: 18px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 2px;
}

.partner-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* Latest Positive Reviews Link */
.latest-reviews-link {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.latest-reviews-link a {
    color: #1a365d;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.latest-reviews-link a:hover {
    color: #f8e404;
    text-decoration: underline;
}

/* Check Other Sellers Section */
.check-other-sellers {
    margin: 15px 0;
    padding: 16px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.check-other-sellers:hover {
    background: #fef3c7;
    border-color: #fbbf24;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

.check-other-sellers a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #92400e;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.check-other-sellers a:hover {
    color: #78350f;
}

.check-other-sellers i {
    font-size: 12px;
    opacity: 0.7;
    flex-shrink: 0;
    margin-left: 8px;
}

[dir="rtl"] .check-other-sellers i {
    margin-left: 0;
    margin-right: 8px;
}

/* RTL Support */
[dir="rtl"] .check-other-sellers a {
    direction: rtl;
}

[dir="rtl"] .product-specs-tags {
    direction: rtl;
}

[dir="rtl"] .latest-reviews-link a {
    direction: rtl;
}
