/* System Design Tokens - CSS Variables */
:root {
    --bg-main: #0a0d14;
    --bg-secondary: #0f131a;
    --bg-card: rgba(20, 26, 38, 0.65);
    --bg-card-hover: rgba(28, 36, 51, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-focus: #7c5dfa;
    
    --primary: #7c5dfa;
    --primary-hover: #9277ff;
    --primary-glow: rgba(124, 93, 250, 0.35);
    
    --success: #00e676;
    --success-bg: rgba(0, 230, 118, 0.1);
    --success-border: rgba(0, 230, 118, 0.3);
    
    --error: #ff4a5a;
    --error-bg: rgba(255, 74, 90, 0.1);
    --error-border: rgba(255, 74, 90, 0.3);
    
    --warning: #ffb300;
    --text-main: #f8f9fa;
    --text-muted: #888f9d;
    --text-inverse: #0a0d14;
    
    --sidebar-width: 260px;
    --header-height: 70px;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-main: 0 8px 30px 0 rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 15px 0 rgba(124, 93, 250, 0.2);
    --glass-backdrop: blur(16px);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Scrollbars Customizados */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   ESTILOS DE AUTENTICAÇÃO (LOGIN)
   ========================================================================== */
.auth-body {
    background: radial-gradient(circle at 10% 20%, rgba(124, 93, 250, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 230, 118, 0.08) 0%, transparent 45%),
                var(--bg-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-main);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    animation: fadeInScale 0.4s var(--transition-smooth);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #5b36ff);
    color: var(--text-main);
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-glow);
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.auth-footer {
    text-align: center;
    margin-top: 32px;
    color: var(--text-muted);
    font-size: 12px;
}

/* Formulários */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.input-wrapper input,
.form-group input[type="text"],
.form-group input[type="password"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--text-main);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-fast);
}

.input-wrapper input {
    padding-left: 48px !important;
}

input::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.85;
}

.input-wrapper input:focus,
.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background-color: rgba(20, 26, 38, 0.4);
}

.input-wrapper input:focus + .input-icon {
    color: var(--primary);
}

/* ==========================================================================
   COMPONENTES GENÉRICOS (BOTÕES, ALERTAS, SPINNNER)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-fast);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-main);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 0 20px 0 rgba(124, 93, 250, 0.45);
}

.btn-success {
    background-color: var(--success);
    color: var(--text-inverse);
    font-weight: 700;
}

.btn-danger {
    background-color: var(--error);
    color: var(--text-main);
}

.btn-danger:hover {
    background-color: #ff606e;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: var(--border-radius-sm);
}

/* Alerts */
.alert-message {
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.4;
    animation: slideDown 0.3s var(--transition-smooth);
}

.error-message {
    background-color: var(--error-bg);
    border: 1px solid var(--error-border);
    color: #ff8a95;
}

/* Spinner */
.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

/* ==========================================================================
   ESTILOS DO LAYOUT DO DASHBOARD (INDEX)
   ========================================================================== */
.dashboard-body {
    background-color: var(--bg-main);
    min-height: 100vh;
}

.dashboard-container {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    transition: var(--transition-smooth);
}

.sidebar-brand {
    height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 20px;
    color: var(--text-main);
}

.sidebar-brand svg {
    color: var(--primary);
}

.sidebar-menu {
    flex: 1;
    padding: 24px 16px;
    overflow-y: auto;
}

.sidebar-menu ul {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 6px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
}

.menu-item:hover {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.03);
}

.menu-item.active {
    color: var(--text-main);
    background-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.menu-item svg {
    transition: var(--transition-fast);
}

.menu-item:hover svg {
    transform: translateX(2px);
}

.menu-item.active svg {
    transform: none;
}

/* Sidebar User Info */
.sidebar-user {
    padding: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.15);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #5b36ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
}

.user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-role {
    font-size: 11px;
    color: var(--text-muted);
}

.logout-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.logout-btn:hover {
    color: var(--error);
    background-color: var(--error-bg);
}

/* CONTEÚDO PRINCIPAL */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: var(--transition-smooth);
}

/* HEADER */
.main-header {
    height: var(--header-height);
    background-color: rgba(10, 13, 20, 0.5);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 90;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

.main-header h1 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.date-display {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

/* BODY DAS PÁGINAS */
.content-body {
    padding: 40px;
    flex: 1;
}

/* Painéis de Abas (SPA) */
.content-panel {
    display: none;
    animation: fadeIn 0.3s var(--transition-smooth);
}

.content-panel.active {
    display: block;
}

/* ==========================================================================
   PAINEL: DASHBOARD WIDGETS
   ========================================================================== */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.metric-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-main);
    backdrop-filter: var(--glass-backdrop);
    transition: var(--transition-smooth);
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    background: var(--bg-card-hover);
}

.metric-info h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
}

.metric-icon.bg-primary {
    background-color: var(--primary-glow);
    color: var(--primary-hover);
    border: 1px solid var(--border-focus);
}

.metric-icon.bg-success {
    background-color: rgba(0, 230, 118, 0.15);
    color: var(--success);
    border: 1px solid rgba(0, 230, 118, 0.3);
}

/* Gráficos */
.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.chart-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-main);
    backdrop-filter: var(--glass-backdrop);
}

.chart-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-main);
}

.chart-container {
    position: relative;
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   TABELAS E LISTAS DE PRODUTOS
   ========================================================================== */
.table-card, .recent-table-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-main);
    backdrop-filter: var(--glass-backdrop);
    overflow: hidden;
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.table th, .table td {
    padding: 16px 24px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.table th {
    font-weight: 600;
    color: var(--text-muted);
    background-color: rgba(255, 255, 255, 0.01);
}

.table tbody tr {
    transition: var(--transition-fast);
}

.table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* Fotos de produtos na lista */
.product-thumbnail {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.product-thumbnail-placeholder {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-secondary);
    border: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.badge {
    display: inline-flex;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 30px;
}

.badge-primary {
    background-color: var(--primary-glow);
    color: var(--primary-hover);
    border: 1px solid var(--border-focus);
}

.badge-secondary {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

/* Ações nas tabelas */
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.justify-end {
    justify-content: flex-end;
}

.actions-cell {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-sm);
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-icon:hover {
    color: var(--text-main);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-icon-danger:hover {
    color: var(--error);
    background-color: var(--error-bg);
    border-color: var(--error-border);
}

/* ==========================================================================
   BARRA DE FILTROS & PESQUISA
   ========================================================================== */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 280px;
    max-width: 480px;
}

.search-box svg {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
}

.search-box input {
    width: 100%;
    padding: 10px 16px 10px 44px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--text-main);
    font-size: 14px;
    transition: var(--transition-fast);
}

.search-box input:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.filter-options {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-control-inline {
    padding: 10px 16px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--text-main);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
}

.form-control-inline:focus {
    outline: none;
    border-color: var(--border-focus);
}

/* ==========================================================================
   MODAIS (FORMULÁRIOS DE CRIAÇÃO E OVERLAYS)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 520px;
    box-shadow: var(--shadow-main);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 700;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--error);
}

.modal-body {
    padding: 28px;
    overflow-y: auto;
}

.modal-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.col-half {
    flex: 1;
}

.required {
    color: var(--error);
}

/* Área de Upload de Foto e Preview */
.image-upload-wrapper {
    position: relative;
}

.image-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.image-drag-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--bg-card);
    transition: var(--transition-fast);
}

.image-upload-wrapper:hover .image-drag-area {
    border-color: var(--primary);
    background-color: rgba(124, 93, 250, 0.05);
}

.image-drag-area svg {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.image-upload-wrapper:hover .image-drag-area svg {
    color: var(--primary);
    transform: translateY(-2px);
}

.image-drag-area span {
    font-size: 13px;
    font-weight: 500;
}

.image-drag-area .file-info {
    font-size: 11px;
    color: var(--text-muted);
}

.image-preview-container {
    position: relative;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20; /* Fica por cima do input do tipo file */
}

.image-preview-container img {
    max-width: 100%;
    max-height: 180px;
    border-radius: var(--border-radius-sm);
    object-fit: contain;
}

.btn-remove-image {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--error);
    border: none;
    color: var(--text-main);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: var(--transition-fast);
}

.btn-remove-image:hover {
    background-color: #ff606e;
    transform: scale(1.1);
}

.modal-error {
    margin-top: 16px;
    margin-bottom: 0;
}

/* ==========================================================================
   ANIMAÇÕES CSS
   ========================================================================== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   MEDIA QUERIES (DESIGN RESPONSIVO)
   ========================================================================== */
@media (max-width: 992px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --sidebar-width: 240px;
    }
    
    /* Adaptar Sidebar móvel */
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .main-header {
        padding: 0 20px;
    }
    
    .content-body {
        padding: 20px;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: none;
    }
    
    .filter-options {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .auth-card {
        padding: 24px;
    }
    .modal-card {
        max-height: 95vh;
    }
    .modal-body {
        padding: 20px;
    }
}

/* Custom Success Message and Camera Styles */
.success-message {
    background-color: var(--success-bg);
    border: 1px solid var(--success-border);
    color: #00e676;
}

.photo-source-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.camera-container {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 16px;
    background-color: var(--bg-secondary);
}

.camera-container video {
    width: 100%;
    max-height: 240px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    transform: scaleX(-1);
}
