/**
 * EAIP China Download Service - Main Stylesheet
 * Modern, responsive design with gradient accents
 */

/* ============================================
   Global Styles & Reset
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

/* ============================================
   Container & Layout
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   Header Section
   ============================================ */

.header {
    background: white;
    border-radius: 10px 10px 0 0;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header h1 {
    color: #1f2937;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header p {
    color: #6b7280;
    font-size: 1.2em;
}

/* ============================================
   Controls Section (Language & Currency)
   ============================================ */

.controls {
    background: white;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #e5e7eb;
}

.control-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.control-group label {
    font-weight: 600;
    color: #4b5563;
}

.control-group select,
.control-group a {
    padding: 8px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1em;
    background: white;
    cursor: pointer;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.3s;
}

.control-group select:hover,
.control-group a:hover {
    border-color: #667eea;
}

.control-group a.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* ============================================
   Products Section
   ============================================ */

.products {
    background: white;
    padding: 40px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.products h2 {
    color: #1f2937;
    margin-bottom: 30px;
    font-size: 1.8em;
}

/* ============================================
   Product Grid & Cards
   ============================================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 16px;
}

.product-card {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s;
    background: white;
}

.product-card:hover {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
}

.product-title {
    color: #1f2937;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 6px;
}

.product-meta {
    color: #6b7280;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.product-description {
    color: #4b5563;
    line-height: 1.4;
    margin-bottom: 10px;
}

.product-info {
    background: #f9fafb;
    padding: 6px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.product-info-item {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 0.85em;
}

.product-info-label {
    color: #6b7280;
    font-weight: 600;
}

.product-info-value {
    color: #1f2937;
}

.product-price {
    font-size: 1.3em;
    font-weight: bold;
    color: #667eea;
}

.product-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
}

.product-action-row .product-form {
    flex-grow: 1;
}

.product-action-row .btn {
    width: 100%;
}

/* ============================================
   Buttons
   ============================================ */

.buy-button,
.btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.95em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.buy-button:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #6b7280;
}

.btn-success {
    background: #10b981;
}

.btn-danger {
    background: #ef4444;
}

/* ============================================
   Empty State
   ============================================ */

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.empty-state h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: white;
    padding: 20px;
    text-align: center;
    color: #6b7280;
    border-radius: 0 0 10px 10px;
    margin-top: 2px;
}

.admin-link {
    margin-top: 10px;
    font-size: 0.9em;
}

.admin-link a {
    color: #667eea;
    text-decoration: none;
}

.admin-link a:hover {
    text-decoration: underline;
}

/* ============================================
   Message Boxes
   ============================================ */

.message {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.message.success {
    background: #d1fae5;
    color: #065f46;
    border-left-color: #10b981;
}

.message.error {
    background: #fee2e2;
    color: #991b1b;
    border-left-color: #ef4444;
}

.message.info {
    background: #dbeafe;
    color: #1e40af;
    border-left-color: #3b82f6;
}

.message.warning {
    background: #fef3c7;
    color: #92400e;
    border-left-color: #f59e0b;
}

/* ============================================
   Error Pages
   ============================================ */

.error-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.error-header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.error-header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.error-content {
    padding: 40px;
    text-align: center;
}

.error-icon {
    font-size: 5em;
    margin-bottom: 20px;
}

.error-title {
    font-size: 1.8em;
    color: #1f2937;
    margin-bottom: 15px;
}

.error-message {
    color: #6b7280;
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Download Page Styles
   ============================================ */

.download-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.download-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.download-header h1 {
    font-size: 2em;
    margin-bottom: 5px;
}

.download-content {
    padding: 40px;
}

.download-info {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.download-info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
}

.download-info-row:last-child {
    border-bottom: none;
}

.download-info-label {
    color: #6b7280;
    font-weight: 600;
}

.download-info-value {
    color: #1f2937;
    font-weight: 500;
}

.warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.warning-box strong {
    color: #92400e;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .header p {
        font-size: 1em;
    }

    .header,
    .controls,
    .products {
        padding: 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .controls {
        flex-direction: column;
        align-items: stretch;
    }

    .control-group {
        width: 100%;
        justify-content: space-between;
    }

    .product-title {
        font-size: 1.1em;
    }

    .product-price {
        font-size: 1.2em;
    }

    .error-header h1 {
        font-size: 2em;
    }

    .error-title {
        font-size: 1.4em;
    }

    .error-links {
        flex-direction: column;
    }

    .error-links .btn {
        width: 100%;
    }

    .download-info-row {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5em;
    }

    .product-card {
        padding: 12px;
    }

    .download-content {
        padding: 25px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px;
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    body {
        background: white;
        padding: 0;
    }

    .controls,
    .footer,
    .buy-button,
    .admin-link {
        display: none;
    }

    .container {
        max-width: 100%;
    }

    .product-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ============================================
   Shared Template Styles
   ============================================ */

/* Simple Header (for checkout/payment pages) */
.simple-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.simple-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    text-align: center;
}

.simple-header-brand {
    font-size: 1.5em;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.simple-header-brand:hover {
    color: #764ba2;
}

/* Navigation Bar */
.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand a {
    font-size: 1.3em;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-brand a:hover {
    color: #764ba2;
}

.nav-controls {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-group label {
    font-weight: 600;
    color: #4b5563;
    white-space: nowrap;
}

.nav-link {
    padding: 6px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 0.9em;
    background: white;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    border-color: #667eea;
    color: #667eea;
}

.nav-link.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.nav-link.admin-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.nav-select {
    padding: 6px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 0.9em;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s;
}

.nav-select:hover,
.nav-select:focus {
    border-color: #667eea;
    outline: none;
}

/* Page Header */
.page-header {
    background: white;
    padding: 25px 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-header h1 {
    color: #1f2937;
    font-size: 1.8em;
    margin-bottom: 8px;
}

.page-header .subtitle {
    color: #6b7280;
    font-size: 1em;
}

/* Main Content */
.main-content {
    background: white;
    padding: 25px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-height: 400px;
}

/* Products Section */
.products-section {
    width: 100%;
}

.section-header {
    margin-bottom: 20px;
}

.section-header h2 {
    color: #1f2937;
    font-size: 1.4em;
    margin-bottom: 8px;
}

.product-count {
    color: #6b7280;
    font-size: 1em;
}

/* Product Grid (reusing existing styles with updates) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.product-header {
    margin-bottom: 8px;
}

.product-image {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-version {
    color: #6b7280;
    font-size: 0.9em;
    margin-top: 5px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.85em;
}

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

.info-label {
    color: #6b7280;
    font-weight: 600;
}

.info-value {
    color: #1f2937;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-block {
    width: 100%;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
}

.pagination-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #667eea;
    border-radius: 5px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.pagination-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.pagination-info {
    color: #4b5563;
    font-weight: 600;
}

/* Messages */
.message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
}

.message-icon {
    font-size: 1.2em;
}

.message-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.message-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.message-warning {
    background: #fef3c7;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.message-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

/* Footer */
.main-footer {
    background: white;
    padding: 30px;
    text-align: center;
    color: #6b7280;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin: 5px 0;
}

.footer-contact {
    margin-top: 10px;
}

.footer-contact a {
    color: #667eea;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.empty-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #1f2937;
}

/* Error Page */
.error-page {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.error-container {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.error-header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.error-header .error-icon {
    font-size: 4em;
    margin-bottom: 15px;
}

.error-header h1 {
    font-size: 2em;
    margin: 0;
}

.error-content {
    padding: 40px;
    text-align: center;
}

.error-content .error-message {
    font-size: 1.1em;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.6;
}

.error-details {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
    border-radius: 5px;
    color: #991b1b;
}

.error-actions {
    margin-top: 30px;
}

/* Success Page */
.success-page {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-container {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.success-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.success-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.success-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.success-content {
    padding: 40px;
}

.info-box {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.info-box h2 {
    color: #059669;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #d1fae5;
}

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

.info-label {
    font-weight: 600;
    color: #4b5563;
}

.info-value {
    color: #059669;
    font-weight: bold;
}

.download-section {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.download-section h2 {
    color: #1e40af;
    margin-bottom: 15px;
}

.download-button {
    text-align: center;
    margin: 20px 0;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1em;
}

.notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-size: 0.9em;
}

.notice p {
    color: #856404;
    margin: 5px 0;
}

/* Download Page */
.download-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.download-container {
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.download-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.download-header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.download-content {
    padding: 40px;
}

.product-info {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.product-info h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.product-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* 404 Page Additional Styles */
.error-404 .error-header h1 {
    font-size: 3em;
    margin-bottom: 0;
}

.error-404 .error-header h2 {
    font-size: 1.5em;
    margin-top: 10px;
    font-weight: normal;
}

.error-help {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.error-help p {
    color: #9ca3af;
    font-size: 0.9em;
}

.language-switcher {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.language-switcher a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.language-switcher a:hover,
.language-switcher a.active {
    color: #667eea;
}

.language-switcher span {
    color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .nav-container {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
    }

    .nav-controls {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-group {
        width: 100%;
        justify-content: space-between;
    }

    .page-header {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 1.5em;
    }

    .page-header .subtitle {
        font-size: 0.95em;
    }

    .main-content {
        padding: 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .pagination {
        flex-direction: column;
        gap: 10px;
    }

    .pagination-btn {
        width: 100%;
    }

    .error-container {
        margin: 10px;
    }

    .error-header {
        padding: 30px 20px;
    }

    .error-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 15px;
    }

    .page-header h1 {
        font-size: 1.3em;
    }

    .section-header h2 {
        font-size: 1.2em;
    }

    .error-header h1 {
        font-size: 1.5em;
    }

    .error-header .error-icon {
        font-size: 3em;
    }

    .success-container,
    .download-container {
        margin: 10px;
    }

    .success-header,
    .download-header {
        padding: 30px 20px;
    }

    .success-content,
    .download-content {
        padding: 30px 20px;
    }

    .success-header h1 {
        font-size: 2em;
    }

    .download-header h1 {
        font-size: 1.5em;
    }

    .success-icon {
        font-size: 3em;
    }
}

/* ============================================
   Features Badges Section
   ============================================ */

.features-badges {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 0;
    margin-bottom: 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

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

.badge-icon {
    font-size: 1.3em;
}

.badge-text {
    color: #374151;
    font-weight: 500;
    font-size: 0.95em;
}

.badge-separator {
    color: #9ca3af;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .badges-row {
        flex-direction: column;
        gap: 12px;
    }

    .badge-separator {
        display: none;
    }

    .badge-item {
        font-size: 0.9em;
    }
}