/* Estilos para el carrito de compras - Versión Premium */
/* Importar fuentes */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Gradientes principales */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Bordes redondeados */
    --border-radius-xl: 24px;
    --border-radius-lg: 20px;
    --border-radius-md: 16px;
    --border-radius-sm: 12px;
    --border-radius-xs: 8px;
    
    /* Sombras mejoradas */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    
    /* Sombras coloridas */
    --shadow-purple: 0 20px 40px rgba(102, 126, 234, 0.3);
    --shadow-pink: 0 20px 40px rgba(245, 87, 108, 0.3);
    --shadow-blue: 0 20px 40px rgba(79, 172, 254, 0.3);
    
    /* Colores */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #cbd5e0;
    --bg-primary: #ffffff;
    --bg-secondary: #f7fafc;
    --bg-glass: rgba(255, 255, 255, 0.25);
    --border-light: rgba(255, 255, 255, 0.18);
    
    /* Transiciones */
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-elastic: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset y base */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Layout principal */
.cart-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

.cart-items {
    flex: 1;
    margin-right: 2rem;
}

.cart-items h1 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-container {
        padding: 1.5rem;
    }
}

/* Título principal */
.cart-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Tarjetas de productos */
.cart-item {
    background: var(--glass-gradient);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    will-change: transform, box-shadow, border-color;
    margin-bottom: 1.5rem;
}

.cart-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transition: var(--transition-slow);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.cart-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transition: var(--transition-slow);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.cart-item:hover::before {
    left: 0;
}

.cart-item:hover::after {
    right: 0;
}

.cart-item:hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-2xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.product-image {
    width: 140px;
    height: 140px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: var(--transition-elastic);
    border: 2px solid rgba(255, 255, 255, 0.2);
    will-change: transform, box-shadow, border-color;
}

.cart-item:hover .product-image {
    transform: scale(1.08) rotate(3deg);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 255, 255, 0.6);
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.product-name {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: var(--transition-smooth);
    will-change: transform;
}

.product-name a {
    color: inherit;
    text-decoration: none;
    background: linear-gradient(135deg, var(--text-primary) 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-smooth);
    display: inline-block;
}

.product-name a:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    opacity: 1;
}

.product-price {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Controles de cantidad */
.product-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    min-height: 140px;
    justify-content: space-between;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--glass-gradient);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-elastic);
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    will-change: transform, background, box-shadow;
}

.quantity-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.15) translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.6);
}

.quantity-btn:active {
    transform: scale(0.9) translateY(0);
    transition: var(--transition-fast);
}

.quantity {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    min-width: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
    border-radius: var(--border-radius-xs);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xs);
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Resumen del pedido */
.order-summary {
    background: var(--glass-gradient);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 2rem;
    overflow: hidden;
}

.order-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    box-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}

.order-summary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.summary-header {
    background: var(--primary-gradient);
    padding: 2rem;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.summary-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.summary-content {
    padding: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.summary-row.total {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.25rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
}

.free-shipping-badge {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.checkout-button {
    width: 100%;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius-lg);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.checkout-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

.checkout-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
}

.checkout-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #3b82f6 100%);
}

.checkout-button:hover::before {
    left: 100%;
}

.checkout-button:hover::after {
    width: 300px;
    height: 300px;
}

.checkout-button:active {
    transform: translateY(-1px);
}

.security-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Información de precios */
.price-info {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.unit-price {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 400;
}

.item-total {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botones de cantidad mejorados */
.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.1) !important;
}

.quantity-btn:disabled:hover {
    transform: none !important;
    box-shadow: var(--shadow-sm) !important;
}

/* Estado de carrito vacío */
.empty-cart {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--glass-gradient);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.empty-cart::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: -1;
}

.empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.2));
}

.empty-cart h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, #6b7280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-cart p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.continue-shopping {
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.continue-shopping::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

.continue-shopping:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
}

.continue-shopping:hover::before {
    left: 100%;
}

/* Botón de eliminar más sutil */
.remove-button {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    will-change: transform, box-shadow, background;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}





.remove-button:hover::before {
    left: 100%;
}

.remove-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    pointer-events: none;
}

.remove-button:hover::after {
    width: 100px;
    height: 100px;
}

.remove-button:active::after {
    animation: ripple 0.6s linear;
}

.remove-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.remove-button:focus {
    outline: none;
    box-shadow: 
        0 2px 8px rgba(220, 53, 69, 0.2),
        0 0 0 2px rgba(220, 53, 69, 0.3);
}

/* Animaciones del ícono de basura */
.remove-button i {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
    font-size: 1.1rem;
}

.remove-button:hover i {
    transform: scale(1.05);
}

.remove-button:active i {
    transform: scale(0.9) rotate(-10deg);
}



.remove-button:hover {
    transform: translateY(-1px) scale(1.02);
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.remove-button:active {
    transform: translateY(0) scale(0.95);
    transition: all 0.1s ease;
}

.remove-button:active i {
    transform: scale(0.9);
}



/* Animaciones solo para elementos nuevos */
.cart-item.animate-in {
    animation: fadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cart-item.animate-in:nth-child(1) { animation-delay: 0.1s; }
.cart-item.animate-in:nth-child(2) { animation-delay: 0.2s; }
.cart-item.animate-in:nth-child(3) { animation-delay: 0.3s; }
.cart-item.animate-in:nth-child(4) { animation-delay: 0.4s; }
.cart-item.animate-in:nth-child(5) { animation-delay: 0.5s; }

.product-list.animate-in {
    animation: slideInLeft 0.8s ease-out;
}

.order-summary.animate-in {
    animation: slideInRight 0.8s ease-out 0.2s both;
}

/* Remover animaciones por defecto */
.cart-item {
    /* animation: fadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
    transition: var(--transition-smooth);
}

/* .cart-item:nth-child(1) { animation-delay: 0.1s; }
.cart-item:nth-child(2) { animation-delay: 0.2s; }
.cart-item:nth-child(3) { animation-delay: 0.3s; }
.cart-item:nth-child(4) { animation-delay: 0.4s; }
.cart-item:nth-child(5) { animation-delay: 0.5s; } */

.product-list {
    /* animation: slideInLeft 0.8s ease-out; */
}

.order-summary {
    /* animation: slideInRight 0.8s ease-out 0.2s both; */
}



/* Efecto shimmer para elementos de carga */
.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Efectos adicionales de glassmorphism */
.glass-card {
    background: var(--glass-gradient);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
}

.floating-element {
    position: relative;
    z-index: 10;
}

.floating-element::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.floating-element:hover::before {
    opacity: 0.3;
}

/* Responsive adicional */
@media (max-width: 768px) {
    .cart-container {
        padding: 2rem 1rem;
    }
    
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .product-image {
        width: 120px;
        height: 120px;
        margin: 0 auto 1rem;
    }
    
    .cart-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .product-controls {
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .order-summary {
        position: static;
        margin-top: 2rem;
    }
    
    .summary-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .summary-title {
        justify-content: center;
        font-size: 1.25rem;
    }
    
    .summary-badge {
        margin: 0;
    }
}