/* =========================================
   DASHBOARD CLIENTE (FUENTE QUICKSAND)
   ========================================= */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
input,
button,
select,
label,
.nav-link,
li,
td,
th {
    font-family: "Quicksand", sans-serif !important;
}

.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands,
i {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
    /* Mantenemos el peso correcto para que se vean */
    font-weight: 900;
}

/* =========================================
   DASHBOARD CLIENTE (SIDEBAR)
   ========================================= */

/* 1. Tarjetas Base */
.dashboard-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    height: 100%; /* Para que llene el contenedor */
    border: 1px solid #f8f9fa;
}

/* 2. Menú Lateral (Estilo Botones) */
.nav-pills-custom .nav-link {
    color: #555;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    width: 100%; /* Ocupa todo el ancho del sidebar */
}

.nav-pills-custom .nav-link i {
    width: 25px;
    text-align: center;
    margin-right: 10px;
    font-size: 1.1rem;
    color: #999;
}

/* Hover */
.nav-pills-custom .nav-link:hover {
    background-color: #fff8f5; /* Fondo naranja muy suave */
    color: var(--orange, #ff7428);
}
.nav-pills-custom .nav-link:hover i {
    color: var(--orange, #ff7428);
}

/* Activo */
.nav-pills-custom .nav-link.active {
    background-color: var(--orange, #ff7428);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(255, 116, 40, 0.25);
}
.nav-pills-custom .nav-link.active i {
    color: #fff;
}

/* --- 3. LÓGICA "STICKY" PARA ESCRITORIO --- */
@media (min-width: 768px) {
    .sidebar-sticky {
        position: sticky;
        top: 100px; /* Se queda fijo a 100px del borde superior al hacer scroll */
        z-index: 10;
    }
}

/* --- 4. ESTILOS GENERALES (Tablas, Tracking, Cupones) --- */
/* Títulos */
.dashboard-title {
    font-weight: 800;
    color: #20232a;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

/* Tracking Timeline */
.tracking-wrap {
    border-left: 2px solid #eee;
    margin-left: 15px;
    padding-left: 30px;
    padding-bottom: 20px;
}
.tracking-item {
    position: relative;
    margin-bottom: 30px;
}
.tracking-icon {
    position: absolute;
    left: -41px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #eee;
    border: 4px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.tracking-item.active .tracking-icon {
    background: var(--orange, #ff7428);
    box-shadow: 0 0 0 3px rgba(255, 116, 40, 0.2);
}

/* Cupones */
.coupon-card-light {
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    background: #fcfcfc;
    transition: 0.2s;
}
.coupon-card-light:hover {
    border-color: var(--orange, #ff7428);
    background: #fff;
}

/* =========================================
   DISEÑO DE CUPONES (VUELTA AL ORIGINAL MEJORADO)
   ========================================= */

.coupon-card-light {
    background: #fff;
    border: 2px dashed #e0e0e0; /* Borde punteado clásico de cupón */
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%; /* Para que todas las tarjetas tengan la misma altura */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Efecto al pasar el mouse */
.coupon-card-light:hover {
    border-color: var(--orange, #ff7428);
    background: #fff8f5; /* Fondo naranja muy muy suave */
    box-shadow: 0 5px 20px rgba(255, 116, 40, 0.15);
    transform: translateY(-3px);
}

/* El Valor del Descuento (Ej: 20% OFF) */
.coupon-value {
    color: var(--orange, #ff7428);
    font-weight: 900;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 5px;
}

/* Descripción pequeña */
.coupon-desc {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Contenedor del Código (Abajo a la derecha) */
.coupon-code-box {
    background: #f1f1f1;
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    font-family: monospace; /* Fuente tipo código */
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    border: 1px solid #ddd;
    letter-spacing: 1px;
}

/* Etiqueta "Activo" */
.coupon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745; /* Verde */
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Efecto al hacer clic en el código */
.coupon-code-box:active {
    transform: scale(0.98);
    background-color: #e2e6ea;
    border-color: #bbb;
}

/* Hover para indicar que se puede copiar */
.coupon-code-box:hover {
    background-color: #fff;
    border-color: var(--orange, #ff7428);
    color: var(--orange, #ff7428);
}
.coupon-code-box:hover i {
    color: var(--orange, #ff7428) !important;
}

/* VARIANTES DE ETIQUETAS DE CUPÓN */

.coupon-badge {
    /* Mantén los estilos base que ya tenías (posicionamiento, font-size, etc) */
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* 1. Verde (Normal) */
.coupon-badge.status-active {
    background: #28a745;
}

/* 2. Rojo (Urgente) */
.coupon-badge.status-urgent {
    background: #e6462b;
    animation: pulse 2s infinite; /* Efecto de latido para llamar la atención */
}

/* 3. Morado (Exclusivo) */
.coupon-badge.status-personal {
    background: #6f42c1;
    background: linear-gradient(45deg, #6f42c1, #8e44ad);
}

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

/* Céntralo dentro del dashboard, sin afectar otros componentes */
/* .dashboard-wrapper {
    min-height: 100vh;
    background: #f6f8fa;
}
@media (max-width: 768px) {
    .dashboard-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .container {
        width: 100%;
        margin: 0 auto;
        padding: 0 8px;
    }
    .row {
        flex-direction: column !important;
    }
    .col-lg-3,
    .col-lg-9,
    .col-md-4,
    .col-md-8 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

@media (max-width: 991px) {
    .dashboard-wrapper,
    .container {
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 100vw !important;
        margin: 0 !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        box-sizing: border-box;
    }
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-direction: column !important;
    }
    .col-lg-3,
    .col-lg-9,
    .col-md-4,
    .col-md-8 {
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
} */
