/* Shopee Clone - Main Styles */

/* Reset / base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

:root {
    --shopee-orange: #ff5722;
    --shopee-orange-alt: #ff6a00;
    --shopee-light: #ffe6d5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
    padding-bottom: 70px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

/* Navbar */
.navbar {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--shopee-orange) !important;
}

/* Buttons */
.btn-primary,
.btn-warning {
    background-color: var(--shopee-orange);
    border-color: var(--shopee-orange);
}

.btn-primary:hover,
.btn-warning:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
}

.btn-outline-primary {
    color: var(--shopee-orange);
    border-color: var(--shopee-orange);
}

.btn-outline-primary:hover {
    background-color: var(--shopee-orange);
    border-color: var(--shopee-orange);
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--shopee-light);
}

.product-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin: 0.75rem 0;
    line-height: 1.4;
    min-height: 2.8em;
}

.product-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--shopee-orange);
    margin: 0.5rem 0;
}

.product-description {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.75rem;
}

/* Home page (index.php) */
.home-page {
    background-color: #f5f5f5;
}

.home-hero {
    background-color: var(--shopee-light);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .home-hero {
        padding: 3.5rem 0;
    }
}

.home-hero-illustration {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--shopee-orange-alt) 0%, var(--shopee-light) 100%);
}

.home-hero-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--shopee-orange-alt);
}

.home-hero-subtitle {
    font-size: 0.95rem;
    color: #555;
}

.home-hero-cta {
    padding-inline: 2rem;
    font-weight: 600;
}

.home-features {
    border-bottom: 1px solid #f0f0f0;
}

.home-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.home-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #fff7f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 1.3rem;
}

.home-feature-label {
    font-size: 0.7rem;
    color: #555;
}

.home-shop-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.home-product-card {
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Bottom Navigation */
.bottom-nav {
    background-color: #fff !important;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.bottom-nav .nav-link {
    flex: 1;
    border-radius: 0;
    padding: 0.5rem 0 !important;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.2s ease;
}

.bottom-nav .nav-link:hover {
    background-color: #f9f9f9;
}

.bottom-nav .nav-link.active-tab {
    color: var(--shopee-orange) !important;
}

.bottom-nav .nav-label {
    font-size: 0.65rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.nav-link {
    flex: 1;
    border-radius: 0;
}

.nav-link .small {
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

.nav-link.text-warning {
    color: var(--shopee-orange) !important;
}

/* Main content padding for bottom nav */
main {
    padding-bottom: 0;
}

@media (max-width: 991px) {
    main {
        padding-bottom: 70px;
    }
}

/* Forms */
.form-control:focus,
.form-select:focus {
    border-color: var(--shopee-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Cards */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: var(--shopee-light);
    border-bottom: 1px solid #ffe0d0;
}

/* Order Status Badge */
.badge-pending {
    background-color: #ffc107;
    color: #000;
}

.badge-shipping {
    background-color: #17a2b8;
}

.badge-completed {
    background-color: #28a745;
}

.badge-recycle {
    background-color: #6c757d;
}

.badge-cancelled {
    background-color: #dc3545;
}

/* Withdraw Status Badge */
.badge-approved {
    background-color: #28a745;
}

.badge-rejected {
    background-color: #dc3545;
}

/* Account Card */
.account-header-card {
    background: linear-gradient(135deg, var(--shopee-orange) 0%, #ff8555 100%);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.account-stat {
    text-align: center;
    padding: 1rem;
}

.account-stat-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.account-stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Menu Items */
.menu-item {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.menu-item:hover {
    background-color: var(--shopee-light);
    text-decoration: none;
    color: var(--shopee-orange);
}

.menu-item:last-child {
    border-bottom: none;
}

/* Home product list (index.php) */
.product-list-item {
    gap: 0.5rem;
}

.product-list-thumb {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    object-fit: cover;
    background-color: var(--shopee-light);
}

.product-list-text {
    flex: 1;
    min-width: 0;
}

.product-list-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.product-list-subtitle {
    font-size: 0.8rem;
    color: #999;
    margin-top: 2px;
}

.product-list-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--shopee-orange);
}

.product-list-cta {
    font-size: 0.75rem;
    color: #999;
}

/* Agent Panel */
.sidebar {
    background-color: #2c3e50;
    min-height: 100vh;
    padding-top: 1rem;
}

.sidebar .nav-link {
    color: #ecf0f1;
    padding: 0.75rem 1.5rem;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: rgba(255, 107, 53, 0.1);
    border-left-color: var(--shopee-orange);
    color: var(--shopee-orange);
}

.sidebar .nav-link i {
    margin-right: 0.75rem;
}

/* Agent Dashboard */
.dashboard-header {
    background-color: var(--shopee-light);
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--shopee-orange);
}

.dashboard-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dashboard-card h5 {
    color: var(--shopee-orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Tables */
.table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

.table thead th {
    background-color: var(--shopee-light);
    border-bottom: 2px solid #ffe0d0;
    font-weight: 600;
    color: #333;
}

.table tbody tr:hover {
    background-color: #fafafa;
}

/* Editable table cells */
.editable-cell {
    cursor: pointer;
    position: relative;
}

.editable-cell input {
    width: 100%;
    padding: 0.25rem 0.5rem;
}

/* Alerts */
.alert {
    border-radius: 8px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 1rem;
    }

    .account-header-card {
        padding: 1.5rem;
    }

    .account-stat {
        padding: 0.75rem;
    }

    .account-stat-value {
        font-size: 1.25rem;
    }

    .table {
        font-size: 0.9rem;
    }

    .table th,
    .table td {
        padding: 0.5rem;
    }
}

/* Loading spinner */
.spinner-border {
    color: var(--shopee-orange);
}

/* Utility classes */
.text-orange {
    color: var(--shopee-orange);
}

.bg-orange {
    background-color: var(--shopee-orange);
}

.border-orange {
    border-color: var(--shopee-orange);
}

/* Quantity selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-selector button {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* ===== NEW SHOPEE LAYOUT STYLES ===== */

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    background: #f5f5f5;
    color: #333;
}

/* Layout helpers */
.main {
    padding: 80px 16px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top bar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo__icon {
    font-size: 20px;
}

.logo__text {
    font-weight: 700;
    font-size: 18px;
    color: #ff5722;
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.lang-selector {
    position: relative;
}

.lang-select {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
    appearance: none;
    padding-right: 24px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 6px center;
    background-size: 16px;
    padding-right: 28px;
}

.lang-select:hover {
    border-color: #ff5722;
}

.lang-select:focus {
    outline: none;
    border-color: #ff5722;
    box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.1);
}

.lang-pill {
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #fff;
    padding: 2px 10px;
    font-size: 11px;
    cursor: pointer;
}

.lang-pill--active {
    background: #ff5722;
    color: #fff;
    border-color: #ff5722;
}

.btn {
    border-radius: 4px;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn--sm {
    padding: 6px 10px;
    font-size: 12px;
}

.btn--primary {
    background: #ff5722;
    color: #fff;
}

.btn--outline {
    background: #fff;
    color: #ff5722;
    border: 1px solid #ff5722;
}

.btn--full {
    width: 100%;
}

/* Hero section */
.hero {
    background: #ffe9dd;
    border-radius: 12px;
    padding: 24px 20px;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.hero__content h1 {
    font-size: 26px;
    color: #ff5722;
    margin-bottom: 8px;
}

.hero__content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-phone {
    width: 130px;
    height: 240px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone__screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff8a65, #ffcc80);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-phone__bag {
    font-size: 40px;
}

.hero-cart {
    position: absolute;
    right: -8px;
    bottom: 6px;
}

.hero-cart__bag {
    font-size: 46px;
}

/* Quick actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 24px;
}

.quick-actions__item {
    background: #fff;
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quick-actions__item:hover {
    background: #fff3e0;
    border-color: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.15);
}

.quick-actions__item:active {
    transform: translateY(0);
}

.quick-actions__icon {
    font-size: 20px;
    margin-bottom: 4px;
}

/* Sections */
.section {
    margin-bottom: 32px;
}

.section__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section__footer {
    margin-top: 12px;
    text-align: right;
}

.link-more {
    font-size: 14px;
    color: #ff5722;
    text-decoration: none;
}

/* Products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 12px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.product-card__image-wrap {
    width: 100%;
    padding-top: 80%;
    position: relative;
    overflow: hidden;
}

.product-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__body {
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-card__title {
    font-size: 14px;
    font-weight: 600;
    min-height: 36px;
}

.product-card__desc {
    font-size: 12px;
    color: #777;
    min-height: 32px;
}

.product-card__price {
    color: #ff5722;
    font-weight: 700;
    margin: 4px 0;
}

/* Bottom nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    border-top: 1px solid #e6e6e6;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.bottom-nav__item {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #777;
    font-size: 11px;
    padding-top: 4px;
}

.bottom-nav__icon {
    display: block;
    font-size: 20px;
    margin-bottom: 2px;
}

.bottom-nav__item--active {
    color: #ff5722;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }

    .hero__image {
        justify-content: flex-start;
    }

    .topbar__right {
        gap: 4px;
    }

    .topbar__user {
        display: none;
    }
}

@media (min-width: 1024px) {
    .bottom-nav {
        max-width: 1200px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 8px;
        border-radius: 999px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
}

/* Activity list */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.activity-item__icon {
    font-size: 24px;
    flex-shrink: 0;
}

.activity-item__content {
    flex: 1;
    min-width: 0;
}

.activity-item__title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.activity-item__desc {
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
}

.activity-item__date {
    font-size: 11px;
    color: #999;
}

.activity-item__value {
    font-weight: 700;
    color: #ff5722;
    font-size: 14px;
    flex-shrink: 0;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-state__icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.empty-state__text {
    font-size: 14px;
    color: #999;
}

/* Account page */
.account-header {
    margin-bottom: 20px;
}

.account-header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.account-header__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.btn-refresh {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-refresh:hover {
    transform: rotate(180deg);
}

.refresh-icon {
    display: inline-block;
}

.account-info {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.account-info__item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.account-info__label {
    color: #666;
}

.account-info__value {
    font-weight: 600;
    color: #333;
}

.account-info__value--highlight {
    color: #ff5722;
    font-weight: 700;
}

/* Account menu */
.account-menu {
    display: flex;
    flex-direction: column;
}

.menu-item {
    background: #fff;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.2s;
}

.menu-item:hover {
    background-color: #f9f9f9;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-icon {
    font-size: 18px;
}

.menu-arrow {
    color: #ccc;
    font-size: 18px;
}

/* Orders page */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.order-card__header {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.order-card__title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.order-card__meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 2px;
}

.order-card__date {
    font-size: 11px;
    color: #ccc;
}

.order-card__body {
    margin-bottom: 12px;
}

.order-card__info {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
}

.order-card__label {
    color: #666;
}

.order-card__value {
    font-weight: 600;
    color: #333;
}

.order-card__value--price {
    color: #ff5722;
    font-weight: 700;
}

.order-card__badge {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #666;
}

.order-card__footer {
    display: flex;
    gap: 8px;
}

.order-card__status-badge {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
}

/* Product Detail Page */
.page-product {
    background: #f5f5f5;
}

.product-detail__image {
    width: 100%;
    height: 300px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
}

.product-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__info {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 80px;
}

.product-detail__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.product-detail__short-desc {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.product-detail__price {
    font-size: 28px;
    font-weight: 700;
    color: #ff5722;
    margin-bottom: 16px;
}

.product-detail__description {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.product-detail__description h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.product-detail__description p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.product-detail__quantity {
    margin-bottom: 16px;
}

.product-detail__quantity label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s;
}

.qty-btn:hover {
    border-color: #ff5722;
    color: #ff5722;
}

.quantity-selector input {
    width: 50px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.product-detail__seller {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.seller-item {
    flex: 1;
    text-align: center;
}

.seller-item .label {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
}

.seller-item .value {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}
