/**
 * Bocata Box Theme — Flujo de pedido (/pedido).
 *
 * Layout: grid de 2 columnas (menú izq + carrito der).
 * Mobile (<768px): stacked, carrito como bottom-bar fijo.
 */

.bocatabox-pedido {
    max-width: var(--wide-width);
    margin-inline: auto;
    padding: var(--section-space-m) var(--gutter);
    padding-bottom: calc(var(--section-space-m) + 5rem); /* espacio para el FAB flotante */
}

/* ---------- Menú (columna izq) ---------- */
.bocatabox-pedido__menu {
    display: flex;
    flex-direction: column;
    gap: var(--container-gap);
}

.bocatabox-pedido__section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: clamp(1.5rem, 4vw, 3rem) 0;
}

.bocatabox-pedido__section + .bocatabox-pedido__section {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.bocatabox-pedido__section-header {
    text-align: center;
    margin-bottom: var(--space-m, 1.75rem);
}

.bocatabox-pedido__section-header h2 {
    margin: 0 0 var(--space-2xs);
    font-size: var(--text-3xl);
    color: var(--wp--preset--color--accent);
    font-weight: 900;
    letter-spacing: -0.01em;
}

.bocatabox-pedido__section-header p {
    margin: 0;
    color: var(--wp--preset--color--foreground-light);
}

.bocatabox-pedido__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .bocatabox-pedido__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.bocatabox-pedido__configurador {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.bocatabox-pedido__placeholder {
    color: var(--wp--preset--color--foreground-light);
    font-style: italic;
    margin: 0;
    padding: var(--space-m);
    border: 1px dashed var(--wp--preset--color--border);
    border-radius: var(--radius-s, 0.5rem);
    text-align: center;
    grid-column: 1 / -1;
}

/* ---------- FAB flotante del carrito ---------- */
.carrito-fab {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    background: var(--wp--preset--color--accent);
    color: #000000;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: var(--text-m, 1rem);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(242, 229, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: carrito-fab-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carrito-fab:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 32px rgba(242, 229, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.5);
}

.carrito-fab[hidden] {
    display: none;
}

.carrito-fab__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.6em;
    height: 1.6em;
    padding: 0 0.4em;
    background: #000000;
    color: var(--wp--preset--color--accent);
    border-radius: 999px;
    font-size: 0.85em;
    font-weight: 800;
}

.carrito-fab__label {
    font-weight: 600;
}

.carrito-fab__total {
    font-weight: 800;
    font-size: 1.05em;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(0, 0, 0, 0.25);
}

@keyframes carrito-fab-in {
    from { opacity: 0; transform: translateX(-50%) translateY(30px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Lista fuente del carrito: oculta visualmente, sólo la usa el JS para guardar items
   antes de copiarlos al modal de checkout */
.bocatabox-pedido__carrito-items[hidden] {
    display: none;
}

/* ---------- Preview de items en el checkout modal ---------- */
.checkout-form__items {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: var(--text-s, 0.875rem);
}
/* Tablet/desktop: sin max-height ni overflow propio. El body del modal
   (.checkout-form__body con overflow-y:auto) scrollea todo junto.
   Evita scroll-within-scroll que causa UX confusa en trackpads/touch. */

.checkout-form__items:empty {
    display: none;
}

/* Items tipo lista limpia dentro del checkout modal */
.checkout-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.checkout-item:last-child {
    border-bottom: none;
}
.checkout-item__qty {
    color: #A1A1A1;
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    min-width: 2em;
}
.checkout-item__info {
    flex: 1;
    min-width: 0;
}
.checkout-item__name {
    color: #FAFAFA;
    font-weight: 600;
    font-size: 0.9rem;
}
.checkout-item__detail {
    color: #A1A1A1;
    font-size: 0.8rem;
    margin-left: 0.35rem;
}
.checkout-item__price {
    color: #F2E500;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}
.checkout-item__remove {
    background: none;
    border: none;
    color: rgba(250,250,250,0.3);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.checkout-item__remove:hover {
    color: #ef4444;
}

/* ---------- Producto card (fondo blanco para destacar en la sección dark) ---------- */
.producto-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.producto-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.producto-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f1f5f9;
}

.producto-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.producto-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.9rem 0.85rem 0.85rem;
    flex: 1;
    min-height: 0;
}

/* Wrapper que absorbe el espacio sobrante — garantiza que el botón
   siempre quede pegado al fondo de la card sin depender de margin-top:auto
   (que falla si wpautop o cualquier wrapper rompe la relación de hijo
   directo con el body flex). El gap mayor separa el bloque título+desc
   del selector de pan (dos bloques semánticos distintos). */
.producto-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1 1 auto;
    min-height: 0;
}

.producto-card__titulo {
    margin: 0 0 0.2rem;
    font-size: var(--text-m, 1rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.producto-card__descripcion {
    margin: 0;
    font-size: var(--text-xs, 0.8rem);
    color: #64748b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(2 * 1.4 * var(--text-xs, 0.8rem));
}

/* Selector de pan — toggle textual inline, discreto.
   Mismo margin-top que el single-pan para alinear posición entre cards. */
.producto-card__panes {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 0.7rem;
    padding: 0;
    margin: auto 0 0;
    border: 0;
    background: none;
    min-width: 0;
}


.producto-card__pan-option {
    cursor: pointer;
    min-width: 0;
    display: inline-flex;
}

.producto-card__pan-option + .producto-card__pan-option {
    margin-left: 0.9rem;
}

.producto-card__pan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.producto-card__pan-chip {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3rem;
    padding: 0.15rem 0;
    font-size: 0.8rem;
    line-height: 1.3;
    color: #94a3b8;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
    user-select: none;
}

.producto-card__pan-option:hover .producto-card__pan-chip {
    color: #475569;
}

.producto-card__pan-name {
    font-weight: 600;
}

.producto-card__pan-delta {
    font-size: 0.75rem;
    font-weight: 500;
    color: inherit;
    opacity: 0.75;
    font-variant-numeric: tabular-nums;
}

/* Activo: color fuerte + subrayado amarillo */
.producto-card__pan-option:has(input:checked) .producto-card__pan-chip {
    color: #0f172a;
    border-bottom-color: var(--wp--preset--color--accent);
}

.producto-card__pan-option:has(input:checked) .producto-card__pan-delta {
    opacity: 1;
}

/* Focus accesible (teclado) */
.producto-card__pan-option input:focus-visible + .producto-card__pan-chip {
    outline: 2px solid var(--wp--preset--color--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Caso de un solo pan: reutiliza exactamente la misma estructura DOM que
   el toggle (pan-single = pan-option externo; pan-chip--static = chip
   activo) para garantizar paridad visual perfecta con el estado checked.
   justify-content:flex-start + text-align:left como cinturón+tirantes
   contra cualquier centrado heredado del contenedor (wp-block-post-content,
   etc.). align-self:stretch + width:100% aseguran que el <p> ocupe todo
   el ancho del .producto-card__content y el chip quede pegado a la izq. */
.producto-card__pan-single {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: baseline;
    align-self: stretch;
    gap: 0.7rem;
    width: 100%;
    padding: 0;
    margin: auto 0 0;
    min-width: 0;
    text-align: left;
}

.producto-card__pan-chip--static {
    color: #0f172a;
    border-bottom-color: var(--wp--preset--color--accent);
}

/* Botón añadir — el wrapper .producto-card__content con flex:1 ya empuja
   el botón al fondo. Dejamos margin-top:auto como cinturón+tirantes por
   si algún wrapper de wpautop rompe la cadena flex. */
.producto-card__body > .producto-card__add,
.producto-card__add:last-child {
    margin-top: auto !important;
}

.producto-card__add {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem !important;
    font-size: var(--text-s, 0.875rem) !important;
    background: var(--wp--preset--color--accent) !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 0.5rem !important;
    font-weight: 700;
}

.producto-card__add:hover {
    background: #E6DA00 !important;
    color: #000000 !important;
    transform: translateY(-1px);
}

.producto-card__add--added {
    background: #16a34a !important;
}

.carrito-fab--pulse {
    animation: fab-pulse 0.4s ease;
}

@keyframes fab-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.08); }
}

.producto-card__add-label {
    font-size: 0.9em;
}

.producto-card__add-precio {
    font-weight: 800;
}

/* ---------- Configurador "Crea tu bocata" ---------- */
.configurador {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

/* Fondo blanco = todos los textos internos deben ser oscuros.
   Forzamos color base para evitar herencia del dark theme. */
.configurador__paso {
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: var(--space-s);
    margin: 0;
    background: #ffffff;
    color: #0f172a;
}

.configurador__paso-title {
    font-size: var(--text-l);
    font-weight: 700;
    color: #0f172a;
    padding: 0 0 var(--space-2xs);
    margin: 0 0 var(--space-2xs);
    border-bottom: 2px solid #F2E500;
    display: block;
}

.configurador__paso-nota {
    margin: 0 0 var(--space-s);
    font-size: var(--text-s);
    color: #64748b;
}

/* Paso 1: panes */
.configurador__panes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
}

.configurador__pan-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    cursor: pointer;
    text-align: center;
    background: #ffffff;
    color: #0f172a;
    transition: border-color var(--transition-fast, 0.15s), background var(--transition-fast, 0.15s);
}

.configurador__pan-option:hover {
    border-color: #94a3b8;
}

.configurador__pan-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.configurador__pan-option:has(input:checked) {
    background: #F2E500;
    border-color: #F2E500;
    color: #000000;
}

.configurador__pan-nombre {
    font-weight: 600;
    font-size: var(--text-m);
    color: #0f172a;
}

.configurador__pan-precio {
    font-size: var(--text-s);
    color: #0f172a;
}

/* Pasos 2-4: listas de ingredientes */
.configurador__ingredientes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.configurador__ingrediente {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.6rem;
    border-bottom: 1px solid #f1f5f9;
    border-left: 3px solid transparent;
    transition: background var(--transition-fast, 0.15s),
                opacity var(--transition-fast, 0.15s),
                border-left-color var(--transition-fast, 0.15s);
}

/* Zebra striping */
.configurador__ingrediente:nth-child(even) {
    background: #f8fafc;
}

/* Hover — shade ligeramente más oscuro que la zebra */
.configurador__ingrediente:hover {
    background: #f1f5f9;
}

.configurador__ingrediente:nth-child(even):hover {
    background: #edf0f4;
}

/* Quitar borde inferior del último item */
.configurador__ingrediente:last-child {
    border-bottom: none;
}

/* Resalte cuando qty > 0 */
.configurador__ingrediente--active {
    border-left-color: #F2E500;
    background: rgba(242, 229, 0, 0.08);
}

.configurador__ingrediente--active:nth-child(even) {
    background: rgba(242, 229, 0, 0.08);
}

.configurador__ingrediente[data-no-disponible="true"] {
    opacity: 0.5;
}

.configurador__ingrediente-nombre {
    font-weight: 500;
    color: #0f172a;
}

.configurador__ingrediente-precio {
    font-size: 0.85rem;
    color: #64748b;
    min-width: 3.5em;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Precio placeholder (sin pan seleccionado) — dash discreto */
.configurador__ingrediente-precio--empty {
    color: #cbd5e1;
}

/* Controles +/- qty */
.configurador__qty {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}

.configurador__paso .configurador__qty-btn {
    width: 2rem;
    height: 2rem;
    /* Padding invisible para cumplir 44px touch target */
    min-width: 44px;
    min-height: 44px;
    border: 1.5px solid #cbd5e1;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #0f172a;
    font-family: inherit;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.configurador__paso .configurador__qty-btn:hover:not(:disabled) {
    background: #F2E500;
    color: #000;
    border-color: #F2E500;
}

.configurador__paso .configurador__qty-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.configurador__qty-value {
    min-width: 1.5em;
    text-align: center;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    color: #0f172a;
}

/* Resumen + botón */
.configurador__resumen {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding-top: var(--space-s);
}

.configurador__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: var(--text-l);
    color: #FAFAFA;
}

.configurador__total strong {
    font-size: var(--text-2xl);
    color: var(--wp--preset--color--accent);
}

.configurador__warning {
    margin: 0;
    padding: 0.5rem 0.85rem;
    font-size: var(--text-s);
    color: var(--wp--preset--color--accent);
    background: rgba(242, 229, 0, 0.1);
    border: 1px solid rgba(242, 229, 0, 0.25);
    border-radius: 6px;
    font-style: normal;
    font-weight: 500;
}

/* ---------- Carrito items (Fase 3d) ---------- */
.carrito-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-xs);
    padding: 0.6rem;
    border: 1px solid var(--wp--preset--color--border);
    border-radius: var(--radius-s, 0.4rem);
    background: var(--wp--preset--color--muted);
}

.carrito-item__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.carrito-item__nombre {
    font-weight: 600;
    font-size: var(--text-m);
    color: var(--wp--preset--color--primary);
}

.carrito-item__meta {
    font-size: var(--text-xs);
    color: var(--wp--preset--color--foreground-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.carrito-item__desglose {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: var(--text-s);
    color: var(--wp--preset--color--foreground-light);
}

.carrito-item__subtotal {
    font-weight: 700;
    font-size: var(--text-m);
    color: var(--wp--preset--color--primary);
    margin-top: 0.25rem;
}

.carrito-item__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
}

.carrito-item__qty {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.carrito-item__remove {
    background: none;
    border: none;
    color: var(--wp--preset--color--foreground-light);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0.1rem 0.3rem;
    border-radius: 0.25rem;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast, 0.15s), color var(--transition-fast, 0.15s);
}

.carrito-item__remove:hover {
    background: var(--wp--preset--color--error);
    color: #fff;
}

/* ---------- Checkout modal (Fase 3e) ---------- */
.checkout-modal {
    border: none;
    border-radius: var(--radius-m, 0.75rem);
    padding: 0;
    max-width: 500px;
    width: calc(100vw - 2 * var(--gutter));
    max-height: calc(100dvh - 1rem);
    overflow: hidden;
    color: var(--wp--preset--color--foreground);
    background: var(--wp--preset--color--background);
}

.checkout-modal::backdrop {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(2px);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    max-height: calc(100dvh - 2rem);
}

.checkout-form__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem var(--space-m);
    border-bottom: 1px solid var(--wp--preset--color--border);
    background: var(--wp--preset--color--surface);
    flex-shrink: 0;
}

.checkout-form__header h2 {
    margin: 0;
    font-size: var(--text-xl);
    color: var(--wp--preset--color--primary);
}

.checkout-form__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--wp--preset--color--foreground-light);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    min-width: 44px;
    min-height: 44px;
}

.checkout-form__close:hover {
    background: var(--wp--preset--color--muted);
    color: var(--wp--preset--color--foreground);
}

.checkout-form__body {
    padding: var(--space-m);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    flex: 1 1 auto;
    min-height: 0;
    overscroll-behavior: contain;
}

.checkout-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.checkout-form__field span {
    font-size: var(--text-s);
    font-weight: 600;
    color: var(--wp--preset--color--foreground);
}

.checkout-form__field input,
.checkout-form__field select,
.checkout-form__field textarea {
    padding: 0.5rem 0.7rem;
    border: 1px solid var(--wp--preset--color--border);
    border-radius: var(--radius-s, 0.4rem);
    font-size: var(--text-m);
    font-family: inherit;
    background: var(--wp--preset--color--muted);
    color: var(--wp--preset--color--foreground);
}

.checkout-form__field input:focus,
.checkout-form__field select:focus,
.checkout-form__field textarea:focus {
    outline: 2px solid var(--wp--preset--color--primary);
    outline-offset: 1px;
}

.checkout-form__field input:invalid:not(:placeholder-shown),
.checkout-form__field select:invalid {
    border-color: var(--wp--preset--color--error);
}

.checkout-form__horario {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
}

.checkout-form__resumen {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--space-s);
    background: var(--wp--preset--color--muted);
    border-radius: var(--radius-s, 0.4rem);
    font-weight: 600;
}

.checkout-form__resumen strong {
    font-size: var(--text-xl);
    color: var(--wp--preset--color--primary);
}

.checkout-form__legal {
    margin: 0;
    font-size: var(--text-xs);
    color: var(--wp--preset--color--foreground-light);
    line-height: 1.5;
}

.checkout-form__legal a {
    color: var(--wp--preset--color--primary);
    text-decoration: underline;
}

.checkout-form__error {
    margin: 0;
    padding: var(--space-s);
    background: color-mix(in srgb, var(--wp--preset--color--error) 10%, transparent);
    color: var(--wp--preset--color--error);
    border-radius: var(--radius-s, 0.4rem);
    font-size: var(--text-s);
}

.checkout-form__footer {
    padding: var(--space-s) var(--space-m);
    border-top: 1px solid var(--wp--preset--color--border);
    background: var(--wp--preset--color--surface);
    flex-shrink: 0;
}

/* ---------- Fix: botones primarios visibles en flujo pedido ---------- */
.bocatabox-pedido .cta-btn--primary {
    background: var(--wp--preset--color--accent);
    color: #000000;
    justify-content: center;
    text-align: center;
}
.bocatabox-pedido .cta-btn--primary:hover {
    background: #E6DA00;
    color: #000000;
}

/* ---------- Alias screen-reader-text (base usa .sr-only) ---------- */
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
