#ecoship-app {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px;
    font-family: inherit;
}

/* Tabs danh muc */
.ecoship-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.ecoship-tab {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #d8dce1;
    background: #fff;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.15s ease;
}
.ecoship-tab:hover { border-color: #16a34a; color: #16a34a; }
.ecoship-tab.active { background: #16a34a; border-color: #16a34a; color: #fff; }

/* Thanh tim kiem */
.ecoship-search-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    max-width: 480px;
}
.ecoship-search-bar input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #d8dce1;
    border-radius: 8px;
    font-size: 14px;
}
.ecoship-search-bar button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: #16a34a;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}
.ecoship-search-bar button:hover { background: #15803d; }

/* Luoi san pham */
.ecoship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.ecoship-loading, .ecoship-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    padding: 40px 0;
}

.ecoship-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.ecoship-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.ecoship-card-img-wrap {
    aspect-ratio: 1 / 1;
    background: #f3f4f6;
    overflow: hidden;
    position: relative;
}
.ecoship-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ecoship-countdown-row {
    font-size: 12px;
    color: #b45309;
    background: #fffbeb;
    border: 1px solid #fde68a;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    width: fit-content;
}
.ecoship-countdown-row.ended { color: #6b7280; background: #f3f4f6; border-color: #e5e7eb; }
.ecoship-card-body {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ecoship-card-title {
    font-size: 13.5px;
    line-height: 1.4;
    color: #1f2937;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 37px;
}
.ecoship-card-price-vnd {
    font-size: 17px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 2px;
}
.ecoship-card-price-jpy {
    font-size: 12.5px;
    color: #888;
    margin-bottom: 12px;
}
.ecoship-card-actions {
    margin-top: auto;
    display: flex;
    gap: 6px;
}
.ecoship-btn-primary {
    flex: 1;
    background: #16a34a;
    color: #fff;
    border: none;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
}
.ecoship-btn-primary:hover { background: #15803d; }
.ecoship-btn-outline {
    background: #fff;
    color: #16a34a;
    border: 1px solid #16a34a;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
}
.ecoship-btn-outline:hover { background: #f0fdf4; }

.ecoship-loadmore-wrap {
    text-align: center;
    margin-top: 28px;
}

/* Modal */
.ecoship-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
}
.ecoship-modal {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    max-width: 420px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.ecoship-modal h3 {
    margin: 0 0 6px;
    font-size: 19px;
}
.ecoship-modal-note {
    color: #888;
    font-size: 13px;
    margin: 0 0 18px;
}
.ecoship-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}
.ecoship-modal form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin: 14px 0 6px;
}
.ecoship-modal form input,
.ecoship-modal form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d8dce1;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}
.ecoship-modal form button[type="submit"] {
    width: 100%;
    margin-top: 20px;
    padding: 11px;
}
.ecoship-error {
    background: #fef2f2;
    color: #b91c1c;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 10px;
}
.ecoship-bid-product-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    background: #f9fafb;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 6px;
}
.ecoship-bid-product-preview img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.ecoship-bid-product-preview span {
    font-size: 13px;
    line-height: 1.4;
    color: #374151;
}
.ecoship-bid-price-note {
    grid-column: 1 / -1;
    font-size: 12px;
    color: #16a34a;
    margin-top: 4px;
    width: 100%;
}

/* Toast thong bao */
.ecoship-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    z-index: 10000;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.ecoship-toast.error { background: #b91c1c; }
