/* =============================================
   PuffCase — tienda.css
   Tienda de skins CS2: grid, cards, modales,
   tabla de compras, panel admin
   ============================================= */

/* ── HERO TIENDA ─────────────────────────────── */
.tienda-hero {
    position: relative;
    padding: 72px 24px 80px;
    text-align: center;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen de fondo */
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('/images/fondos/fondo-tienda.jpeg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    filter: brightness(0.6) saturate(1.2);
    z-index: 0;
    transform: scale(1.03); /* evita bordes blancos al hacer scale en hover */
    transition: transform 8s ease;
}
.tienda-hero:hover .hero-bg {
    transform: scale(1.07);
}

/* Capa 1: oscurecer laterales (viñeta) */
.tienda-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 100% at 50% 50%,
        transparent 30%,
        rgba(5, 2, 18, 0.65) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Capa 2: smooth fade hacia abajo para fusionar con el contenido */
.tienda-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 2, 18, 0.05)  0%,
        rgba(5, 2, 18, 0.10)  40%,
        rgba(5, 2, 18, 0.55)  75%,
        rgba(5, 2, 18, 0.92)  100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Línea LED inferior — efecto neón púrpura */
.tienda-hero .hero-led-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(124, 58, 237, 0) 10%,
        rgba(167, 90, 255, 0.9) 35%,
        rgba(200, 130, 255, 1) 50%,
        rgba(167, 90, 255, 0.9) 65%,
        rgba(124, 58, 237, 0) 90%,
        transparent 100%
    );
    box-shadow:
        0 0 8px  rgba(167, 90, 255, 0.8),
        0 0 20px rgba(124, 58, 237, 0.6),
        0 0 40px rgba(124, 58, 237, 0.3);
    z-index: 5;
    animation: hero-led-pulse 3s ease-in-out infinite;
}

@keyframes hero-led-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(167,90,255,.8), 0 0 20px rgba(124,58,237,.6), 0 0 40px rgba(124,58,237,.3); }
    50%       { opacity: .7; box-shadow: 0 0 14px rgba(167,90,255,1), 0 0 32px rgba(124,58,237,.9), 0 0 60px rgba(124,58,237,.5); }
}

/* Brillo LED en esquinas — ambient glow */
.tienda-hero .hero-glow-left,
.tienda-hero .hero-glow-right {
    position: absolute;
    bottom: -40px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    animation: hero-glow-breathe 4s ease-in-out infinite;
}
.tienda-hero .hero-glow-left  {
    left: -80px;
    background: rgba(100, 30, 220, 0.35);
    animation-delay: 0s;
}
.tienda-hero .hero-glow-right {
    right: -80px;
    background: rgba(140, 50, 255, 0.30);
    animation-delay: 2s;
}

@keyframes hero-glow-breathe {
    0%, 100% { opacity: .6; transform: scale(1); }
    50%       { opacity: 1;  transform: scale(1.12); }
}

/* Contenido del hero por encima de todo */
.tienda-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* Título con sombra de texto mejorada */
.tienda-hero-content .hero-title {
    text-shadow:
        0 0 20px  rgba(167, 90, 255, 0.8),
        0 0 40px  rgba(124, 58, 237, 0.5),
        0 2px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

/* Subtítulo legible con sombra sutil */
.tienda-hero .hero-sub {
    margin-top: 10px;
    color: rgba(220, 200, 255, 0.92);
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.95),
        0 0 12px rgba(100, 50, 200, 0.4);
    font-size: 1rem;
    letter-spacing: .3px;
}

/* ── TABS ────────────────────────────────────── */
.tienda-tabs-wrap {
    background: rgba(10,8,22,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(124,58,237,.12);
    position: sticky;
    top: var(--header-h);
    z-index: 100;
}
.tienda-tabs {
    display: flex;
    gap: 6px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 24px;
    flex-wrap: wrap;
    align-items: center;
}
.tienda-tab {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,.38);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(124,58,237,.2);
    background: transparent;
    transition: all .18s;
    white-space: nowrap;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .3px;
}
.tienda-tab:hover {
    border-color: rgba(124,58,237,.45);
    color: #d4c8ff;
    background: rgba(124,58,237,.07);
}
.tienda-tab--active {
    background: transparent;
    border-color: rgba(124,58,237,.6);
    color: #c084fc;
    font-weight: 700;
}

/* ── SECCIÓN PRINCIPAL ───────────────────────── */
.tienda-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* ── LOADING / EMPTY ─────────────────────────── */
.tienda-loading {
    text-align: center;
    color: var(--gray-mid);
    padding: 60px 0;
    font-size: 0.95rem;
}
.tienda-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 16px;
    color: var(--gray-mid);
    text-align: center;
}
.tienda-empty-icon { font-size: 3.5rem; }

/* ── GRID DE SKINS ───────────────────────────── */
.tienda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

/* ── SKIN CARD ───────────────────────────────── */
.skin-card {
    background: var(--card-bg);
    border: 1px solid var(--purple-border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex;
    flex-direction: column;
}
.skin-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple-accent);
    box-shadow: 0 12px 40px rgba(124,58,237,.35);
}
.skin-card--agotada {
    opacity: .55;
    cursor: default;
    filter: grayscale(.4);
}
.skin-card--agotada:hover { transform: none; box-shadow: none; border-color: var(--purple-border); }

.skin-card-img {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* ratio 16:9 fijo */
    background: var(--purple-mid);
    overflow: hidden;
}
.skin-card-img img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: contain; /* imagen completa sin recorte, con letterbox si hace falta */
    object-position: center;
    padding: 8px;        /* pequeño margen interior para skins con fondo */
    transition: transform .3s;
    background: var(--purple-mid);
}
.skin-card:hover:not(.skin-card--agotada) .skin-card-img img { transform: scale(1.06); }

.skin-card-badge {
    position: absolute;
    top: 10px; right: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: .3px;
}
.skin-card-badge--stock  { background: rgba(76,175,125,.2); border: 1px solid rgba(76,175,125,.5); color: #4caf7d; }
.skin-card-badge--agotada { background: rgba(244,67,54,.15); border: 1px solid rgba(244,67,54,.4); color: #f44336; }

.skin-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.skin-card-nombre {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}
.skin-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.skin-card-precio {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
}
.skin-card-coin { font-size: 1rem; }
.skin-card-pc   { font-size: 0.72rem; font-weight: 500; color: var(--gold-dark); }

.skin-card-btn {
    background: linear-gradient(135deg, var(--purple-accent), var(--purple-bright));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
    transition: opacity .2s;
}
.skin-card:hover .skin-card-btn { opacity: .9; }
.skin-card-btn--disabled {
    background: rgba(255,255,255,.08);
    color: var(--gray-mid);
}

/* ── MODAL COMPRA ────────────────────────────── */
.tienda-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modal-fade .18s ease;
}
@keyframes modal-fade { from { opacity:0; } to { opacity:1; } }

.tienda-modal {
    background: var(--purple-mid);
    border: 1px solid var(--purple-border);
    border-radius: 20px;
    padding: 32px;
    width: 100%;
    max-width: 400px;
    position: relative;
    animation: modal-slide .2s ease;
    max-height: 90vh;
    overflow-y: auto;
}
.tienda-modal--wide { max-width: 520px; }

@keyframes modal-slide {
    from { transform: translateY(20px) scale(.97); opacity:0; }
    to   { transform: translateY(0) scale(1); opacity:1; }
}

.tienda-modal-close {
    position: absolute;
    top: 14px; right: 16px;
    background: none;
    border: none;
    color: var(--gray-mid);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all .15s;
    font-family: inherit;
}
.tienda-modal-close:hover { color: var(--white); background: rgba(255,255,255,.08); }

.tienda-modal-skin-img-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--purple-dark);
    margin-bottom: 20px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tienda-modal-skin-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 12px;
    display: block;
}

.tienda-modal-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.tienda-modal-precio-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(240,192,64,.08);
    border: 1px solid rgba(240,192,64,.25);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 14px;
}
.tienda-modal-precio-label { color: var(--gray-mid); font-size: 0.85rem; }
.tienda-modal-precio { color: var(--gold); font-weight: 700; font-size: 1.1rem; }

.tienda-modal-saldo {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 14px;
}
.tienda-modal-saldo strong { color: var(--white); }

.tienda-modal-warn {
    background: rgba(240,192,64,.08);
    border: 1px solid rgba(240,192,64,.3);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: var(--gold);
    margin-bottom: 14px;
    text-align: center;
    line-height: 1.5;
}
.tienda-modal-warn a { color: var(--purple-glow); text-decoration: none; }
.tienda-modal-warn a:hover { text-decoration: underline; }

.tienda-modal-msg {
    font-size: 0.83rem;
    margin-bottom: 12px;
    min-height: 18px;
    text-align: center;
    line-height: 1.4;
}
.tienda-modal-msg.ok    { color: #4caf7d; }
.tienda-modal-msg.error { color: #f44336; }

.tienda-modal-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--purple-accent), var(--purple-bright));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .2s;
    letter-spacing: .3px;
}
.tienda-modal-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--purple-bright), #c090ff);
    box-shadow: 0 4px 20px rgba(124,58,237,.5);
    transform: translateY(-1px);
}
.tienda-modal-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.tienda-modal-login {
    text-align: center;
    font-size: 0.88rem;
    color: var(--gray-mid);
}
.tienda-modal-login a { color: var(--purple-glow); font-weight: 600; text-decoration: none; }
.tienda-modal-login a:hover { text-decoration: underline; }

/* ── COMPRAS ADMIN ───────────────────────────── */
.tienda-compras-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}
.tienda-compras-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
}
.tienda-compras-filtros { display: flex; gap: 8px; flex-wrap: wrap; }
.tienda-filtro-btn {
    background: transparent;
    border: 1px solid rgba(124,58,237,.2);
    color: rgba(255,255,255,.38);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .3px;
    transition: all .18s;
    white-space: nowrap;
}
.tienda-filtro-btn:hover {
    border-color: rgba(124,58,237,.45);
    color: #d4c8ff;
    background: rgba(124,58,237,.07);
}
.tienda-filtro-btn--active {
    background: transparent;
    border-color: rgba(124,58,237,.6);
    color: #c084fc;
    font-weight: 700;
}

/* Tabla */
.tienda-table-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--purple-border); }
.tienda-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.tienda-table thead { background: rgba(0,0,0,.3); }
.tienda-table th {
    text-align: left;
    padding: 12px 16px;
    color: var(--gray-mid);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid var(--purple-border);
    white-space: nowrap;
}
.tienda-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    vertical-align: middle;
    color: var(--gray-light);
}
.tienda-table tr:last-child td { border-bottom: none; }
.tienda-table tr:hover td { background: rgba(255,255,255,.03); }

.compra-skin-cell { display: flex; align-items: center; gap: 10px; }
.compra-skin-img {
    width: 44px; height: 34px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid var(--purple-border);
    flex-shrink: 0;
}
.compra-skin-img--ph {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple-dark);
    font-size: 1.1rem;
}

.compra-user-cell { display: flex; align-items: center; gap: 10px; min-width: 160px; }
.compra-user-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--purple-border);
    flex-shrink: 0;
}
.compra-user-nombre { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.compra-user-steam  { font-size: 0.72rem; color: var(--gray-mid); }

.compra-precio { color: var(--gold); font-weight: 700; }
.compra-fecha  { font-size: 0.78rem; white-space: nowrap; }

.tienda-tl-link {
    color: var(--purple-glow);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
}
.tienda-tl-link:hover { text-decoration: underline; }
.tienda-tl-none { color: var(--gray-dark); font-size: 0.8rem; }

.compra-estado { font-size: 0.8rem; font-weight: 600; }
.compra-estado small { font-weight: 400; color: var(--gray-mid); display: block; }
.compra-estado--enviada  { color: #4caf7d; }
.compra-estado--pendiente { color: var(--gold); }

.tienda-accion-btn {
    background: rgba(76,175,125,.12);
    border: 1px solid rgba(76,175,125,.35);
    color: #4caf7d;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .2s;
    white-space: nowrap;
}
.tienda-accion-btn:hover { background: rgba(76,175,125,.25); }
.tienda-accion-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ── ADMIN PANEL ─────────────────────────────── */
.tienda-admin-wrap {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 28px;
    align-items: start;
}
.tienda-admin-card {
    background: var(--card-bg);
    border: 1px solid var(--purple-border);
    border-radius: 16px;
    padding: 28px;
}
.tienda-admin-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

/* Formulario */
.tienda-admin-form { display: flex; flex-direction: column; gap: 16px; }
.tienda-form-grupo { display: flex; flex-direction: column; gap: 6px; }
.tienda-form-grupo label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-light);
    letter-spacing: .3px;
}
.req { color: #f44336; }
.tienda-form-grupo input,
.tienda-select {
    background: var(--purple-deep);
    border: 1px solid var(--gray-dark);
    border-radius: 8px;
    padding: 9px 14px;
    color: var(--white);
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}
.tienda-form-grupo input:focus,
.tienda-select:focus {
    border-color: var(--purple-accent);
    box-shadow: 0 0 0 2px rgba(124,58,237,.2);
}
.tienda-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.tienda-img-preview-wrap {
    margin-top: 8px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--purple-border);
    background: var(--purple-dark);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tienda-img-preview-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
    display: block;
}

.tienda-admin-btn {
    background: linear-gradient(135deg, var(--purple-accent), var(--purple-bright));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .2s;
    letter-spacing: .3px;
}
.tienda-admin-btn:hover {
    background: linear-gradient(135deg, var(--purple-bright), #c090ff);
    box-shadow: 0 4px 18px rgba(124,58,237,.45);
    transform: translateY(-1px);
}
.tienda-admin-btn--red {
    background: rgba(244,67,54,.15);
    border: 1px solid rgba(244,67,54,.4);
    color: #f44336;
}
.tienda-admin-btn--red:hover { background: rgba(244,67,54,.3); box-shadow: none; transform: none; }

.tienda-admin-msg {
    font-size: 0.85rem;
    padding: 10px 14px;
    border-radius: 8px;
}
.tienda-admin-msg--ok    { background: #0a2010; border: 1px solid #1a5a30; color: #4caf7d; }
.tienda-admin-msg--error { background: #200a0a; border: 1px solid #5a1a1a; color: #f44336; }

/* Admin skins list */
.admin-skin-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.admin-skin-row:last-child { border-bottom: none; }

.admin-skin-img-wrap {
    width: 56px; height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--purple-dark);
    border: 1px solid var(--purple-border);
    flex-shrink: 0;
}
.admin-skin-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.admin-skin-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }

.admin-skin-info { flex: 1; min-width: 0; }
.admin-skin-nombre {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}
.admin-skin-meta {
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--gray-mid);
    flex-wrap: wrap;
}
.admin-activo  { color: #4caf7d !important; }
.admin-inactivo { color: #f44336 !important; }

/* ── FORMULARIO ADMIN MEJORADO ────────────────── */

/* Bloque búsqueda Steam */
.adm-steam-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
}
.adm-block-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-light);
    letter-spacing: .3px;
}
.adm-steam-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.adm-steam-input {
    flex: 1;
    background: var(--purple-deep);
    border: 1px solid var(--gray-dark);
    border-radius: 8px;
    color: var(--white);
    font-size: .92rem;
    padding: 9px 14px;
    transition: border-color .2s;
    min-width: 0;
}
.adm-steam-input:focus { outline: none; border-color: var(--purple-accent); }
.adm-steam-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    background: #166534;
    color: #4ade80;
    font-size: .87rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
    font-family: 'Inter', sans-serif;
}
.adm-steam-btn:hover { background: #15803d; }
.adm-steam-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Tarjeta resultado Steam */
.adm-steam-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(22,101,52,.15);
    border: 1px solid rgba(74,222,128,.25);
    border-radius: 10px;
    animation: fadeInDown .2s ease;
}
.adm-steam-result-img {
    width: 54px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    background: rgba(0,0,0,.3);
    flex-shrink: 0;
}
.adm-steam-result-info { flex: 1; min-width: 0; }
.adm-steam-result-nombre {
    font-size: .88rem;
    font-weight: 600;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.adm-steam-result-meta { font-size: .76rem; color: #4ade80; margin-top: 2px; }
.adm-steam-result-check {
    font-size: 1.1rem;
    color: #4ade80;
    font-weight: 700;
    flex-shrink: 0;
}

/* Fila precio · stock · rareza */
.adm-skin-config-row {
    display: grid;
    grid-template-columns: 1fr 80px 130px;
    gap: 12px;
    align-items: start;
}

/* Badge Auto-Steam */
.adm-auto-badge {
    display: inline-block;
    margin-left: 6px;
    background: rgba(22,101,52,.3);
    color: #4ade80;
    font-size: .7rem;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid rgba(74,222,128,.3);
    vertical-align: middle;
}

/* Sección colapsable imagen manual */
.adm-advanced {
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 8px;
    padding: 10px 14px;
}
.adm-advanced summary {
    font-size: .82rem;
    color: var(--gray-light);
    cursor: pointer;
    user-select: none;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.adm-advanced summary::before { content: '▶'; font-size: .65rem; transition: transform .15s; }
.adm-advanced[open] summary::before { transform: rotate(90deg); }
.adm-advanced summary::-webkit-details-marker { display: none; }

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Chips rareza panel admin ─────────────────── */
.adm-rareza-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0 14px;
}
.adm-rchip {
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: .74rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    color: #7a6a9a;
    transition: all .15s;
    font-family: 'Inter', sans-serif;
}
.adm-rchip:hover { color: #c0b0e0; border-color: rgba(255,255,255,.2); }
.adm-rchip--active { background: rgba(124,58,237,.2) !important; border-color: rgba(124,58,237,.5) !important; color: #c4b5fd !important; }
.adm-rchip--comun.adm-rchip--active      { background: rgba(75,105,255,.15) !important; border-color: rgba(75,105,255,.5) !important; color: #7b9dff !important; }
.adm-rchip--raro.adm-rchip--active       { background: rgba(136,71,255,.15) !important; border-color: rgba(136,71,255,.5) !important; color: #ab7cff !important; }
.adm-rchip--epico.adm-rchip--active      { background: rgba(211,44,230,.15) !important; border-color: rgba(211,44,230,.5) !important; color: #e566f5 !important; }
.adm-rchip--legendario.adm-rchip--active { background: rgba(235,75,75,.15) !important; border-color: rgba(235,75,75,.5) !important; color: #f07070 !important; }

/* Botón borrar en fila */
.adm-btn-del {
    background: rgba(239,68,68,.08) !important;
    border: 1px solid rgba(239,68,68,.3) !important;
    color: #f87171 !important;
    padding: 6px 10px !important;
}
.adm-btn-del:hover { background: rgba(239,68,68,.2) !important; }

/* ── Cabecera lista skins (título + buscador) ── */
.adm-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.adm-list-search-wrap {
    position: relative;
    flex: 1;
    max-width: 280px;
    min-width: 160px;
}
.adm-list-search-wrap svg {
    position: absolute;
    left: 10px; top: 50%;
    transform: translateY(-50%);
    color: #6a5a8a;
    pointer-events: none;
}
.adm-list-search {
    width: 100%;
    background: var(--purple-deep);
    border: 1px solid var(--gray-dark);
    border-radius: 8px;
    color: var(--white);
    font-size: .86rem;
    padding: 7px 12px 7px 30px;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s;
}
.adm-list-search:focus {
    outline: none;
    border-color: var(--purple-accent);
    box-shadow: 0 0 0 2px rgba(124,58,237,.18);
}
.adm-list-search::placeholder { color: #5a4a7a; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
    .tienda-admin-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .tienda-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    .tienda-compras-header { flex-direction: column; align-items: flex-start; }
    .tienda-table th, .tienda-table td { padding: 10px 12px; }
    .tienda-modal { padding: 24px 18px; }
}
@media (max-width: 480px) {
    .tienda-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .skin-card-body { padding: 12px; }
    .skin-card-nombre { font-size: 0.9rem; }
}

/* ── WITHDRAW (historial de compras del usuario) ─── */
.withdraw-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.withdraw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.withdraw-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.withdraw-count-badge {
    background: rgba(124,58,237,.2);
    border: 1px solid var(--purple-border);
    color: var(--purple-glow);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}

.withdraw-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.withdraw-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card-bg);
    border: 1px solid var(--purple-border);
    border-radius: 14px;
    padding: 16px 20px;
    transition: border-color .2s;
}
.withdraw-item:hover { border-color: var(--purple-accent); }

.withdraw-item-img {
    width: 88px;
    height: 55px;         /* ratio 16:9 aprox */
    border-radius: 8px;
    overflow: hidden;
    background: var(--purple-mid);
    border: 1px solid var(--purple-border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.withdraw-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}
.withdraw-item-img-ph { font-size: 1.4rem; }

.withdraw-item-info { flex: 1; min-width: 0; }
.withdraw-item-nombre {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}
.withdraw-item-meta {
    display: flex;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--gray-mid);
    flex-wrap: wrap;
    align-items: center;
}
.withdraw-item-precio { color: var(--gold); font-weight: 600; }

.withdraw-item-estado {
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 5px 12px;
    border-radius: 20px;
}
.withdraw-estado--enviada {
    background: rgba(76,175,125,.12);
    border: 1px solid rgba(76,175,125,.35);
    color: #4caf7d;
}
.withdraw-estado--pendiente {
    background: rgba(240,192,64,.1);
    border: 1px solid rgba(240,192,64,.3);
    color: var(--gold);
}

.withdraw-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 14px;
    color: var(--gray-mid);
    text-align: center;
}
.withdraw-empty-icon { font-size: 3.5rem; }
.withdraw-empty a {
    color: var(--purple-glow);
    text-decoration: none;
    font-weight: 600;
}
.withdraw-empty a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .withdraw-item { flex-wrap: wrap; }
    .withdraw-item-img { width: 72px; height: 45px; }
}
/* ── BARRA DE FILTROS TIENDA ──────────────────── */
.tienda-filtros-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    max-width: 1300px;
    margin: 0 auto 20px;
    padding: 14px 20px;
    background: var(--card-bg);
    border: 1px solid var(--purple-border);
    border-radius: 14px;
}

/* ── Buscador mejorado ── */
.tienda-filtro-search-icon {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-mid);
    pointer-events: none;
    flex-shrink: 0;
}
.tienda-filtro-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.08);
    border: none;
    color: var(--gray-mid);
    border-radius: 5px;
    width: 20px;
    height: 20px;
    font-size: .7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
    padding: 0;
}
.tienda-filtro-search-clear:hover { background: rgba(255,255,255,.18); color: var(--white); }

/* ── Chips de precio rápido ── */
.tienda-precio-chips {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.tienda-precio-chip {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--gray-light);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: .76rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
    white-space: nowrap;
    font-family: inherit;
}
.tienda-precio-chip:hover {
    background: rgba(124,58,237,.18);
    border-color: rgba(124,58,237,.45);
    color: var(--white);
}
.tienda-precio-chip--active {
    background: rgba(124,58,237,.28);
    border-color: var(--purple-accent);
    color: var(--white);
}

/* ── Inputs min/max ── */
.tienda-filtro-precio-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}
.tienda-precio-sep {
    color: var(--gray-mid);
    font-size: .85rem;
    flex-shrink: 0;
}

/* ── Derecha: orden + limpiar ── */
.tienda-filtro-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.tienda-filtro-search-wrap {
    position: relative;
    flex: 1 1 220px;
    min-width: 180px;
}
.tienda-filtro-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    pointer-events: none;
}
.tienda-filtro-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--purple-border);
    border-radius: 9px;
    color: var(--white);
    font-size: 0.88rem;
    padding: 9px 12px 9px 34px;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.tienda-filtro-input:focus {
    outline: none;
    border-color: var(--purple-accent);
    box-shadow: 0 0 0 3px rgba(124,58,237,.18);
}
.tienda-filtro-input::placeholder { color: var(--gray-mid); }

.tienda-filtro-input--num {
    padding-left: 12px;
    width: 110px;
    flex: 0 0 110px;
}

.tienda-filtro-precio-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tienda-filtro-orden-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tienda-filtro-label {
    font-size: 0.78rem;
    color: var(--gray-mid);
    white-space: nowrap;
    font-weight: 500;
}

.tienda-filtro-select {
    padding: 9px 12px;
    font-size: 0.85rem;
    min-width: 180px;
}

.tienda-filtro-reset {
    background: transparent;
    border: 1px solid rgba(244,67,54,.4);
    color: rgba(244,67,54,.8);
    border-radius: 9px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}
.tienda-filtro-reset:hover {
    background: rgba(244,67,54,.1);
    border-color: #f44336;
    color: #f44336;
}

/* Contador de resultados */
.tienda-filtros-count {
    max-width: 1300px;
    margin: -8px auto 12px;
    padding: 0 24px;
    font-size: 0.82rem;
    color: var(--gray-mid);
    font-weight: 500;
}

/* Botón inline en "sin resultados" */
.tienda-filtro-reset-inline {
    background: none;
    border: none;
    color: var(--purple-glow);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}
.tienda-filtro-reset-inline:hover { color: var(--white); }

@media (max-width: 768px) {
    .tienda-filtros-bar { gap: 10px; padding: 12px 14px; }
    .tienda-filtro-input--num { width: 82px; flex: 0 0 82px; }
    .tienda-filtro-select { min-width: 140px; }
    .tienda-filtro-right { margin-left: 0; width: 100%; }
    .tienda-precio-chips { gap: 4px; }
    .tienda-precio-chip { padding: 3px 9px; font-size: .7rem; }
}
@media (max-width: 480px) {
    .tienda-filtro-search-wrap { flex: 1 1 100%; }
    .tienda-filtro-precio-wrap { width: 100%; }
    .tienda-filtro-orden-wrap  { width: 100%; }
    .tienda-filtro-select { flex: 1; min-width: 0; }
}
/* ═══════════════════════════════════════════════════════
   COSMÉTICOS — tienda.css
   ═══════════════════════════════════════════════════════ */

/* Barra de filtro por tipo */
.cosm-tipo-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.cosm-tipo-btn {
    background: transparent;
    border: 1px solid rgba(124,58,237,.2);
    color: rgba(255,255,255,.38);
    border-radius: 20px;
    padding: 5px 15px;
    font-size: .8rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .3px;
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
}
.cosm-tipo-btn:hover {
    border-color: rgba(124,58,237,.45);
    color: #d4c8ff;
    background: rgba(124,58,237,.07);
}
.cosm-tipo-btn--active {
    background: transparent;
    border-color: rgba(124,58,237,.6);
    color: #c084fc;
    font-weight: 700;
}

/* Grid de cosméticos */
.cosm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

/* Tarjeta de cosmético */
.cosm-card {
    background: var(--purple-dark);
    border: 1px solid var(--purple-border);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .18s, border-color .18s, box-shadow .18s;
    position: relative;
}
.cosm-card:hover {
    transform: translateY(-3px);
    border-color: var(--rcolor, var(--purple-accent));
    box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 1px color-mix(in srgb, var(--rcolor, #7c3aed) 30%, transparent);
}

.cosm-card-img {
    position: relative;
    height: 140px;
    background: rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--purple-border);
}
.cosm-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .2s;
}
/* Banners con imagen real: ocupan todo el área como en la referencia */
.cosm-card-img img.cosm-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
}
.cosm-card:hover .cosm-card-img img { transform: scale(1.06); }

.cosm-color-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,.15);
    box-shadow: 0 0 20px currentColor;
}
.cosm-color-preview--large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,.2);
    margin: 0 auto;
    display: block;
}

/* ── Preview de banners y marcos (clase CSS o imagen inline) ── */
.cosm-box-preview {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}
.cosm-box-preview--large {
    position: relative;
    inset: auto;
    width: 220px;
    height: 90px;
    border-radius: 10px;
    margin: 0 auto 8px;
    display: block;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

/* Aplicar los gradientes de banner dentro del preview */
.cosm-box-preview.banner-default  { background:linear-gradient(135deg,#0d0a1a 0%,#1e1535 40%,#2d1060 70%,#1a0040 100%); }
.cosm-box-preview.banner-cyberpunk{ background:linear-gradient(135deg,#0d0d1a,#1a0040 30%,#ff00ff22 60%,#00ffff11); }
.cosm-box-preview.banner-galaxy   { background:radial-gradient(ellipse at 20% 50%,#1a0070,#0d0a1a 50%,#000428); }
.cosm-box-preview.banner-fuego    { background:linear-gradient(135deg,#1a0400,#4a0a00 40%,#ff4400 80%,#ff9900); }
.cosm-box-preview.banner-dark     { background:linear-gradient(135deg,#0d0a1a,#120e24 50%,#1e1535); }
.cosm-box-preview--large.banner-default   { background:linear-gradient(135deg,#0d0a1a 0%,#1e1535 40%,#2d1060 70%,#1a0040 100%); }
.cosm-box-preview--large.banner-cyberpunk { background:linear-gradient(135deg,#0d0d1a,#1a0040 30%,#ff00ff22 60%,#00ffff11); }
.cosm-box-preview--large.banner-galaxy    { background:radial-gradient(ellipse at 20% 50%,#1a0070,#0d0a1a 50%,#000428); }
.cosm-box-preview--large.banner-fuego     { background:linear-gradient(135deg,#1a0400,#4a0a00 40%,#ff4400 80%,#ff9900); }
.cosm-box-preview--large.banner-dark      { background:linear-gradient(135deg,#0d0a1a,#120e24 50%,#1e1535); }

/* Admin list: miniatura de banner */
.admin-banner-sm {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
}
.admin-banner-sm.banner-default   { background:linear-gradient(135deg,#0d0a1a,#2d1060); }
.admin-banner-sm.banner-cyberpunk { background:linear-gradient(135deg,#0d0d1a,#1a0040); }
.admin-banner-sm.banner-galaxy    { background:radial-gradient(ellipse at 20% 50%,#1a0070,#000428); }
.admin-banner-sm.banner-fuego     { background:linear-gradient(135deg,#1a0400,#ff4400); }
.admin-banner-sm.banner-dark      { background:linear-gradient(135deg,#0d0a1a,#1e1535); }
.admin-cursor-sm {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(255,255,255,.06);
    border: 1px dashed rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.cosm-placeholder {
    font-size: 3rem;
    opacity: .4;
}

.cosm-card-rareza {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: .65rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .3px;
    text-shadow: 0 1px 4px rgba(0,0,0,.6);
}

/* ═══════════════════════════════════════════════════════
   COSMÉTICO MODAL — LIVE PREVIEW
   ═══════════════════════════════════════════════════════ */
.tienda-modal--cosm {
    max-width: 420px;
    padding: 24px;
}
.cosm-modal-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.cosm-modal-item-info .tienda-modal-title { margin: 0; }

/* Preview container */
.cosm-live-preview {
    background: rgba(0,0,0,.3);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    padding: 16px 14px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}
.cosm-live-preview-label {
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray-mid);
    font-weight: 600;
    align-self: flex-start;
}

/* Tarjeta de perfil mockup */
.cosm-prev-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box;
}
.cosm-prev-card--banner {
    background-size: cover;
    background-position: center;
    min-height: 80px;
    position: relative;
}
.cosm-prev-card--banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, transparent 100%);
    border-radius: 11px;
    pointer-events: none;
}
.cosm-prev-card--banner .cosm-prev-avatar-wrap,
.cosm-prev-card--banner .cosm-prev-info {
    position: relative;
    z-index: 1;
}

/* Avatar + marco */
.cosm-prev-avatar-wrap {
    position: relative;
    width: 54px;
    height: 54px;
    flex-shrink: 0;
}
.cosm-prev-avatar {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(0,0,0,.5);
    display: block;
}
.cosm-prev-marco {
    position: absolute;
    inset: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    object-fit: contain;
    pointer-events: none;
    z-index: 2;
}
.cosm-prev-marco-css {
    position: absolute;
    inset: -4px;
    border-radius: 14px;
    border: 3px solid transparent;
    pointer-events: none;
    z-index: 2;
}
.cosm-prev-marco-css.marco-dorado  { border-color:#f0c040; box-shadow:0 0 10px #f0c04080; }
.cosm-prev-marco-css.marco-neon    { border-color:#b57bff; box-shadow:0 0 10px #b57bff80; }
.cosm-prev-marco-css.marco-fuego   { border-color:#ff6b35; box-shadow:0 0 10px #ff6b3580; }
.cosm-prev-marco-css.marco-cristal { border-color:#00e5ff; box-shadow:0 0 10px #00e5ff80; }
.cosm-prev-marco-css.marco-blanco  { border-color:#fff;    box-shadow:0 0 10px #ffffff50; }

/* Info (nombre + tag) */
.cosm-prev-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cosm-prev-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
}
.cosm-prev-name--color {
    transition: color .3s, text-shadow .3s;
}
.cosm-prev-tag {
    font-size: .68rem;
    color: var(--gray-mid);
    font-weight: 500;
}

/* Color swatch */
.cosm-prev-color-swatch {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    opacity: .6;
}

/* Cursor */
.cosm-prev-cursor-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 80px;
    background: rgba(255,255,255,.03);
    border: 1px dashed rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 16px;
    transition: background .2s;
}
.cosm-prev-cursor-area:hover { background: rgba(124,58,237,.08); }
.cosm-prev-cursor-icon { font-size: 2rem; line-height: 1; }
.cosm-prev-cursor-hint { font-size: .72rem; color: var(--gray-mid); margin: 0; }

/* Genérico */
.cosm-prev-generic { display: flex; justify-content: center; }
.cosm-prev-generic-img { max-width: 140px; max-height: 90px; object-fit: contain; border-radius: 8px; }

.cosm-card-body {
    padding: 12px 14px;
}
.cosm-card-tipo {
    font-size: .7rem;
    color: var(--gray-mid);
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.cosm-card-nombre {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cosm-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* Rareza badge en el modal */
.cosm-rareza-badge {
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
    margin: -4px 0 10px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .3px;
}

/* Admin filtro cosméticos */
.cosm-admin-filtro-tipo {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

/* Hint de formulario */
.tienda-form-hint {
    display: block;
    font-size: .72rem;
    color: var(--gray-mid);
    margin-top: 4px;
    line-height: 1.4;
}

/* Responsive cosméticos */
@media (max-width: 640px) {
    .cosm-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
    .cosm-tipo-nav { gap: 6px; }
    .cosm-tipo-btn { padding: 5px 12px; font-size: .78rem; }
}
/* ── Precios VIP en tienda ─────────────────────────────────────────────────── */

/* Wrap en la card */
.vip-precio-wrap {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.2;
}

/* Precio original tachado en la card */
.skin-precio-original {
    font-size: .75rem;
    color: #6a5a8a;
    text-decoration: line-through;
    opacity: .8;
}

/* Precio VIP en la card */
.skin-precio-vip {
    font-size: .95rem;
    font-weight: 700;
    color: #f0c040;
    letter-spacing: .01em;
}

/* ── Precios VIP en el modal ───────────────────────────────────────────────── */
.tienda-modal-precio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* Precio original tachado en modal */
.modal-precio-original {
    font-size: .9rem;
    color: #6a5a8a;
    text-decoration: line-through;
}

/* Precio VIP grande en modal */
.modal-precio-vip {
    font-size: 1.7rem;
    font-weight: 700;
    color: #f0c040;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .02em;
}

/* Badge "Ahorras X PC con tu VIP" */
.modal-precio-ahorro {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    color: #f0c040;
    background: rgba(240, 192, 64, .12);
    border: 1px solid rgba(240, 192, 64, .3);
    border-radius: 20px;
    padding: 2px 10px;
    margin-top: 2px;
}


/* ================================================================
   PIDE TU SKIN — Sección de pedidos de skins CS2
   ================================================================ */

.pedidos-section { padding: 28px 24px 60px; max-width: 1300px; margin: 0 auto; }

/* ── Offline banner ─────────────────────────────────────────────── */
.pedidos-offline {
    display: flex; align-items: center; gap: 16px;
    background: rgba(248,113,113,.08); border: 1px solid rgba(248,113,113,.2);
    border-radius: 16px; padding: 24px 28px; margin-bottom: 32px;
}
.pedidos-offline-icon { font-size: 2rem; }
.pedidos-offline-txt  { color: rgba(255,255,255,.7); font-size: .95rem; }

/* ── Hero banner ────────────────────────────────────────────────── */
.pedidos-hero-banner {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(0,0,0,.2));
    border: 1px solid rgba(124,58,237,.2); border-radius: 20px;
    padding: 28px 32px; margin-bottom: 28px;
}
.pedidos-hero-icon { font-size: 3rem; flex-shrink: 0; }
.pedidos-hero-text { flex: 1; min-width: 200px; }
.pedidos-hero-text h2 {
    font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 900;
    color: #fff; margin: 0 0 6px;
}
.pedidos-hero-text p { color: rgba(255,255,255,.55); font-size: .88rem; margin: 0; }
.pedidos-hero-stats { display: flex; gap: 24px; }
.pedidos-hero-stat { display: flex; flex-direction: column; align-items: center; }
.pedidos-hero-stat-val {
    font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 900;
    color: var(--purple-glow, #9d5ff5);
}
.pedidos-hero-stat-lbl { font-size: .58rem; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.3); }

/* ── Tradelink warning ──────────────────────────────────────────── */
.pedidos-warn-tradelink {
    background: rgba(255,215,64,.07); border: 1px solid rgba(255,215,64,.2);
    border-radius: 12px; padding: 14px 20px; margin-bottom: 20px;
    font-size: .88rem; color: rgba(255,255,255,.7);
}
.pedidos-warn-tradelink a { color: #ffd740; margin-left: 8px; }

/* ── Search bar ─────────────────────────────────────────────────── */
.pedidos-search-wrap  { margin-bottom: 24px; }
.pedidos-search-bar {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    background: rgba(14,8,32,.9); border: 1px solid rgba(124,58,237,.2);
    border-radius: 16px; padding: 12px 16px;
}
.pedidos-search-icon { font-size: 1.1rem; flex-shrink: 0; }
.pedidos-search-input {
    flex: 1; min-width: 200px; background: transparent; border: none; outline: none;
    color: #fff; font-size: .95rem; font-family: inherit;
}
.pedidos-search-input::placeholder { color: rgba(255,255,255,.3); }
.pedidos-exterior-select {
    background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.25);
    border-radius: 10px; color: #fff; font-size: .82rem; padding: 7px 12px;
    cursor: pointer; outline: none;
}
.pedidos-search-btn {
    background: linear-gradient(135deg, #7c3aed, #9d5ff5); color: #fff;
    border: none; border-radius: 10px; padding: 8px 20px;
    font-size: .88rem; font-weight: 700; cursor: pointer;
    transition: opacity .2s;
}
.pedidos-search-btn:hover { opacity: .85; }
.pedidos-search-status { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 8px; padding-left: 4px; }
.pedidos-search-status--warn { color: #f87171; }

/* ── Results grid ───────────────────────────────────────────────── */
.pedidos-results-wrap { margin-bottom: 40px; }
.pedidos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}
.pd-card {
    background: rgba(14,8,32,.97); border: 1px solid rgba(124,58,237,.15);
    border-radius: 16px; overflow: hidden; cursor: pointer;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}
.pd-card:hover {
    transform: translateY(-4px); border-color: rgba(124,58,237,.45);
    box-shadow: 0 10px 32px rgba(124,58,237,.15);
}
.pd-card-img-wrap { height: 120px; background: rgba(0,0,0,.3); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pd-card-img      { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform .3s; }
.pd-card:hover .pd-card-img { transform: scale(1.06); }
.pd-card-img-ph   { font-size: 2.5rem; opacity: .3; }
.pd-card-body     { padding: 12px; }
.pd-card-badges   { display: flex; gap: 4px; margin-bottom: 4px; min-height: 18px; }
.pd-badge         { font-size: .6rem; font-weight: 800; letter-spacing: .05em; border-radius: 5px; padding: 2px 6px; }
.pd-badge--st     { background: rgba(255,140,0,.18); color: #ff8c00; border: 1px solid rgba(255,140,0,.3); }
.pd-badge--souv   { background: rgba(255,215,64,.15); color: #ffd740; border: 1px solid rgba(255,215,64,.3); }
.pd-card-nombre   { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.9); line-height: 1.3; margin-bottom: 4px; }
.pd-card-exterior { font-size: .65rem; color: rgba(255,255,255,.35); margin-bottom: 8px; }
.pd-card-precio   { display: flex; align-items: center; justify-content: space-between; }
.pd-card-precio-pc  { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 900; color: #ffd740; }
.pd-card-precio-eur { font-size: .7rem; color: rgba(255,255,255,.3); }

/* ── Paginación ────────────────────────────────────────────────── */
.pd-pag { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 16px; }
.pd-pag-btn {
    background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.3);
    border-radius: 10px; color: #fff; padding: 8px 18px; cursor: pointer; font-size: .85rem;
    transition: background .2s;
}
.pd-pag-btn:hover { background: rgba(124,58,237,.3); }
.pd-pag-info { font-size: .82rem; color: rgba(255,255,255,.4); }

/* ── Mis pedidos ────────────────────────────────────────────────── */
.pedidos-section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.pedidos-section-header h3 {
    font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 800; color: #fff; margin: 0;
}
.pedidos-mis-lista { display: flex; flex-direction: column; gap: 10px; }
.pd-mis-item {
    display: flex; align-items: center; gap: 14px;
    background: rgba(14,8,32,.97); border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px; padding: 14px 16px;
    transition: border-color .2s;
}
.pd-mis-item:hover { border-color: rgba(124,58,237,.2); }
.pd-mis-img-wrap  { width: 60px; height: 45px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pd-mis-img       { width: 100%; height: 100%; object-fit: contain; }
.pd-mis-img-ph    { font-size: 1.6rem; opacity: .4; }
.pd-mis-info      { flex: 1; min-width: 0; }
.pd-mis-nombre    { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pd-mis-meta      { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .72rem; color: rgba(255,255,255,.35); }
.pd-mis-notas     { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: 4px; font-style: italic; }
.pd-mis-acciones  { flex-shrink: 0; }
.pd-mis-cancelar-btn {
    background: rgba(248,113,113,.1); border: 1px solid rgba(248,113,113,.25);
    border-radius: 8px; color: #f87171; font-size: .78rem; padding: 5px 12px; cursor: pointer;
    transition: background .2s;
}
.pd-mis-cancelar-btn:hover { background: rgba(248,113,113,.22); }

/* ── Estado badges ──────────────────────────────────────────────── */
.pd-estado { font-size: .68rem; font-weight: 700; border-radius: 20px; padding: 3px 10px; }
.pd-estado--pendiente  { background: rgba(255,215,64,.12);  color: #ffd740;  border: 1px solid rgba(255,215,64,.25); }
.pd-estado--procesando { background: rgba(59,130,246,.12);  color: #60a5fa;  border: 1px solid rgba(59,130,246,.25); }
.pd-estado--enviado    { background: rgba(0,180,216,.12);   color: #48cae4;  border: 1px solid rgba(0,180,216,.25); }
.pd-estado--completado { background: rgba(74,222,128,.12);  color: #4ade80;  border: 1px solid rgba(74,222,128,.25); }
.pd-estado--cancelado  { background: rgba(100,100,100,.12); color: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.1); }

/* ── Modal de confirmación ──────────────────────────────────────── */
.pd-modal {
    position: fixed; inset: 0; z-index: 1200;
    display: flex; align-items: center; justify-content: center;
}
.pd-modal-bg {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.75); backdrop-filter: blur(4px);
}
.pd-modal-box {
    position: relative; z-index: 1;
    background: linear-gradient(160deg, rgba(20,12,42,.99), rgba(10,6,20,.99));
    border: 1px solid rgba(124,58,237,.3); border-radius: 22px;
    padding: 32px 28px; width: 380px; max-width: 94vw;
    box-shadow: 0 24px 80px rgba(0,0,0,.7);
    animation: pd-modal-in .3s cubic-bezier(.22,1,.36,1) both;
}
@keyframes pd-modal-in {
    from { opacity: 0; transform: translateY(24px) scale(.96); }
    to   { opacity: 1; transform: none; }
}
.pd-modal-close {
    position: absolute; top: 14px; right: 16px;
    background: none; border: none; color: rgba(255,255,255,.35);
    font-size: 1.1rem; cursor: pointer; transition: color .2s;
}
.pd-modal-close:hover { color: #fff; }
.pd-modal-skin-img-wrap { text-align: center; margin-bottom: 16px; }
.pd-modal-skin-img { max-height: 110px; max-width: 100%; object-fit: contain; }
.pd-modal-nombre {
    font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 900;
    color: #fff; margin: 0 0 4px; text-align: center;
}
.pd-modal-exterior { text-align: center; font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.pd-modal-precio-wrap { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 12px; }
.pd-modal-precio-pc  { font-family: 'Rajdhani', sans-serif; font-size: 1.9rem; font-weight: 900; color: #ffd740; text-shadow: 0 0 18px rgba(255,215,64,.4); }
.pd-modal-precio-eur { font-size: .9rem; color: rgba(255,255,255,.3); }
.pd-modal-info { font-size: .8rem; color: rgba(255,255,255,.45); text-align: center; margin-bottom: 14px; line-height: 1.5; }
.pd-modal-saldo-wrap { text-align: center; font-size: .82rem; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.pd-modal-saldo-wrap strong { color: rgba(255,255,255,.75); }
.pd-modal-msg { border-radius: 10px; padding: 10px 14px; font-size: .83rem; margin-bottom: 14px; text-align: center; }
.pd-modal-msg--ok  { background: rgba(74,222,128,.1); color: #4ade80; border: 1px solid rgba(74,222,128,.25); }
.pd-modal-msg--err { background: rgba(248,113,113,.1); color: #f87171; border: 1px solid rgba(248,113,113,.25); }
.pd-modal-btn-confirmar {
    width: 100%; padding: 13px; border: none; border-radius: 13px; cursor: pointer;
    background: linear-gradient(135deg, #7c3aed, #9d5ff5); color: #fff;
    font-size: 1rem; font-weight: 800; letter-spacing: .04em;
    transition: opacity .2s, transform .15s;
}
.pd-modal-btn-confirmar:hover:not(:disabled) { opacity: .88; transform: translateY(-1px); }
.pd-modal-btn-confirmar:disabled { opacity: .45; cursor: not-allowed; }

.pedidos-empty { text-align: center; color: rgba(255,255,255,.3); padding: 40px 20px; font-size: .9rem; }

/* ── Admin subtabs ──────────────────────────────────────────────── */
.adm-subtabs { display:flex; gap:8px; flex-wrap:wrap; }
.adm-subtab {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px; color: rgba(255,255,255,.6); padding: 8px 18px;
    cursor: pointer; font-size: .85rem; font-weight: 600; transition: all .2s;
}
.adm-subtab:hover { background: rgba(124,58,237,.15); color: #fff; }
.adm-subtab--active { background: rgba(124,58,237,.2); border-color: rgba(124,58,237,.4); color: #fff; }

/* ── Botón Pedir skin en card ───────────────────────────────────── */
.pd-card-btn-pedir {
    width: 100%; margin-top: 10px; padding: 8px 0;
    background: linear-gradient(135deg, #7c3aed, #9d5ff5);
    border: none; border-radius: 10px; color: #fff;
    font-size: .82rem; font-weight: 700; cursor: pointer;
    transition: opacity .2s, transform .15s;
}
.pd-card-btn-pedir:hover { opacity: .85; transform: translateY(-1px); }

/* ── Admin pedidos botones ──────────────────────────────────────── */
.pd-adm-btn {
    padding: 7px 14px; border: none; border-radius: 8px;
    font-size: .8rem; font-weight: 700; cursor: pointer; transition: opacity .2s;
}
.pd-adm-btn:hover { opacity: .8; }
.pd-adm-btn--ok   { background: rgba(74,222,128,.15); color: #4ade80; border: 1px solid rgba(74,222,128,.3); }
.pd-adm-btn--del  { background: rgba(248,113,113,.12); color: #f87171; border: 1px solid rgba(248,113,113,.25); }
.pd-adm-btn--blue { background: rgba(59,130,246,.12); color: #60a5fa; border: 1px solid rgba(59,130,246,.25); }
.pd-adm-trade-link { font-size: .78rem; color: #9d5ff5; text-decoration: none; }
.pd-adm-trade-link:hover { text-decoration: underline; }

/* ── Filtros del buscador de pedidos ────────────────────────────── */
.pedidos-filtros-bar {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 12px 16px 14px;
    background: rgba(0,0,0,.3);
    border: 1px solid rgba(124,58,237,.15);
    border-top: none;
    border-radius: 0 0 14px 14px;
}

.pedidos-filtro-grupo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pedidos-filtro-lbl {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: rgba(255,255,255,.4);
    white-space: nowrap;
}
.pedidos-filtro-cap {
    color: rgba(157,95,245,.7);
    font-size: .58rem;
}

/* Separador vertical entre grupos de filtros */
.pedidos-filtro-sep {
    width: 1px;
    height: 36px;
    background: rgba(124,58,237,.2);
    align-self: flex-end;
    margin: 0 2px;
    flex-shrink: 0;
}

/* Selects — flecha SVG personalizada, sin aspecto nativo */
.pedidos-filtro-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: rgba(20,10,50,.85);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(180,160,255,0.5)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    border: 1px solid rgba(124,58,237,.3);
    border-radius: 10px;
    color: #e8e0ff;
    font-size: .82rem;
    padding: 8px 30px 8px 12px;
    cursor: pointer;
    outline: none;
    min-width: 138px;
    transition: border-color .15s, background-color .15s;
}
.pedidos-filtro-select:hover { border-color: rgba(124,58,237,.6); background-color: rgba(30,15,65,.9); }
.pedidos-filtro-select:focus { border-color: #7c3aed; box-shadow: 0 0 0 2px rgba(124,58,237,.2); }
.pedidos-filtro-select option { background: #130828; color: #e8e0ff; }

/* Select de rareza más ancho para que quepan los nombres */
#pd-rarity-filter { min-width: 160px; }

/* Inputs de precio */
.pedidos-filtro-num {
    background: rgba(20,10,50,.85);
    border: 1px solid rgba(124,58,237,.28);
    border-radius: 10px;
    color: #e8e0ff;
    font-size: .82rem;
    padding: 8px 12px;
    outline: none;
    width: 118px;
    transition: border-color .15s;
}
.pedidos-filtro-num:focus { border-color: #7c3aed; box-shadow: 0 0 0 2px rgba(124,58,237,.2); }
.pedidos-filtro-num::placeholder { color: rgba(255,255,255,.2); }
.pedidos-filtro-num::-webkit-inner-spin-button,
.pedidos-filtro-num::-webkit-outer-spin-button { opacity: .35; }

/* Checkbox StatTrak */
.pedidos-filtro-check {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    cursor: pointer;
    padding: 0 2px 1px;
    white-space: nowrap;
}
.pedidos-filtro-check input { accent-color: #9d5ff5; width: 15px; height: 15px; cursor: pointer; }

/* Botón limpiar — al final */
.pedidos-filtro-reset {
    margin-left: auto;
    background: rgba(248,113,113,.07);
    border: 1px solid rgba(248,113,113,.2);
    border-radius: 10px;
    color: rgba(248,113,113,.7);
    font-size: .78rem;
    padding: 8px 14px;
    cursor: pointer;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.pedidos-filtro-reset:hover { background: rgba(248,113,113,.18); color: #f87171; }

/* Search bar borde superior redondeado */
.pedidos-search-bar { border-radius: 14px 14px 0 0; }

/* ── Modal precio sin emoji ─────────────────────────────────────── */
.pd-modal-precio-pc::before {
    content: '';
    display: inline-block; width: 14px; height: 14px;
    background: radial-gradient(circle at 35% 35%, #ffe066, #f0c040 60%, #b8860b);
    border-radius: 50%; border: 1.5px solid rgba(255,215,64,.6);
    margin-right: 6px; vertical-align: middle;
    box-shadow: 0 0 6px rgba(255,215,64,.5);
}

/* ── Falta saldo — links depositar / VIP ────────────────────────── */
.pd-modal-falta-saldo {
    display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
    margin-top: 10px;
}
.pd-modal-link-depositar,
.pd-modal-link-vip {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 7px 14px; border-radius: 10px; font-size: .82rem;
    font-weight: 700; text-decoration: none; transition: opacity .2s;
}
.pd-modal-link-depositar:hover,
.pd-modal-link-vip:hover { opacity: .8; }
.pd-modal-link-depositar {
    background: rgba(124,58,237,.15); color: #9d5ff5;
    border: 1px solid rgba(124,58,237,.3);
}
.pd-modal-link-vip {
    background: rgba(255,215,64,.1); color: #ffd740;
    border: 1px solid rgba(255,215,64,.25);
}
