/* /Components/Component/StoreCart.razor.rz.scp.css */
.cart-backdrop[b-qdq7w0k9m3] {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(3px);
    z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.3s;
}
.cart-backdrop.show[b-qdq7w0k9m3] { opacity: 1; visibility: visible; }

.side-cart[b-qdq7w0k9m3] {
    position: fixed; top: 0; right: -100%; width: min(420px, 100%); height: 100vh;
    background: #FFFFFF; z-index: 2000;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    display: flex; flex-direction: column; transition: right 0.4s ease;
}
.side-cart.open[b-qdq7w0k9m3] { right: 0; }

.cart-header[b-qdq7w0k9m3] {
    background: #1A1A16; color: #D5B36C; padding: 25px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 2px solid #D5B36C;
}
.cart-header h3[b-qdq7w0k9m3] { font-family: 'Syne', sans-serif; font-size: 1.1rem; text-transform: uppercase; margin: 0; }
.btn-close-cart[b-qdq7w0k9m3] { background: none; border: none; color: #D5B36C; font-size: 2rem; cursor: pointer; transition: transform 0.3s; }
.btn-close-cart:hover[b-qdq7w0k9m3] { transform: rotate(90deg); }

.cart-body[b-qdq7w0k9m3] { flex: 1; padding: 20px 25px; overflow-y: auto; }
.cart-empty[b-qdq7w0k9m3] { text-align: center; color: #aaa; margin-top: 60px; }
.cart-empty i[b-qdq7w0k9m3] { font-size: 3rem; color: #eaeaea; margin-bottom: 15px; }

.cart-item[b-qdq7w0k9m3] { display: flex; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.cart-item img[b-qdq7w0k9m3] { width: 70px; height: 70px; object-fit: cover; border-radius: 6px; border: 1px solid rgba(0, 0, 0, 0.06); }
.item-details[b-qdq7w0k9m3] { flex: 1; }
.item-details h4[b-qdq7w0k9m3] { font-family: 'Syne', sans-serif; font-size: 0.85rem; font-weight: 700; margin-bottom: 5px; line-height: 1.2; color:#333; }
.item-price[b-qdq7w0k9m3] { color: #C92922; font-weight: 700; font-size: 0.9rem; display: block; margin-bottom: 8px; }

.qty-controls[b-qdq7w0k9m3] { display: flex; align-items: center; gap: 10px; }
.qty-controls button[b-qdq7w0k9m3] {
    width: 24px; height: 24px; border: 1px solid #ddd; background: white;
    cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 4px; font-size: 0.7rem;
}
.qty-controls button:hover[b-qdq7w0k9m3] { border-color: #1A1A16; }

.btn-remove-item[b-qdq7w0k9m3] { background: none; border: none; color: #ccc; cursor: pointer; transition: color 0.3s; padding: 5px; }
.btn-remove-item:hover[b-qdq7w0k9m3] { color: #C92922; }

.cart-footer[b-qdq7w0k9m3] { padding: 25px; background: #fafafa; border-top: 1px solid #eaeaea; }
.cart-summary[b-qdq7w0k9m3] { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cart-summary span:first-child[b-qdq7w0k9m3] { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.9rem; color: #666; }
.total-amount[b-qdq7w0k9m3] { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800; color: #C92922; }

.shipping-info[b-qdq7w0k9m3] { font-size: 0.75rem; color: #777; margin-bottom: 20px; display: flex; gap: 6px; align-items: center; }
.shipping-info i[b-qdq7w0k9m3] { color: #D5B36C; }

.btn-checkout[b-qdq7w0k9m3] {
    width: 100%; padding: 16px; border: 1px solid #1A1A16; border-radius: 4px;
    background: #1A1A16; color: #D5B36C;
    font-family: 'Syne', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: all 0.3s;
}
.btn-checkout:hover:not(:disabled)[b-qdq7w0k9m3] { background: #D5B36C; color: #1A1A16; border-color: #D5B36C; }
.btn-checkout:disabled[b-qdq7w0k9m3] { background: #eee; border-color: #eee; color: #aaa; cursor: not-allowed; }
/* /Components/Component/StoreHeader.razor.rz.scp.css */
/* =========================================
   NAVBAR FLOTANTE (TIPO CÁPSULA)
   ========================================= */
.glass-nav[b-9g2lw23oc8] {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1300px;
    background: rgba(26, 26, 22, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(213, 179, 108, 0.3);
    border-radius: 50px;
    z-index: 1000;
    padding: 8px 30px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav[b-9g2lw23oc8] {
    height: 38px;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
}

.logo-nav:hover[b-9g2lw23oc8] {
    transform: scale(1.05);
}

.nav-links[b-9g2lw23oc8] {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a[b-9g2lw23oc8] {
    color: #FDFDFD;
    text-decoration: none;
    font-family: var(--font-heading, 'Syne', sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a[b-9g2lw23oc8]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-gold, #D5B36C);
    transition: width 0.3s ease;
}

.nav-links a:hover[b-9g2lw23oc8]::after, .nav-links a.active[b-9g2lw23oc8]::after {
    width: 100%;
}

.nav-links a:hover[b-9g2lw23oc8], .nav-links a.active[b-9g2lw23oc8] {
    color: var(--color-gold, #D5B36C);
}

/* =========================================
   ACCIONES (CARRITO Y HAMBURGUESA)
   ========================================= */
.nav-actions[b-9g2lw23oc8] {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon-wrapper[b-9g2lw23oc8] {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(213, 179, 108, 0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-gold, #D5B36C);
    cursor: pointer;
    transition: all 0.3s;
}

.cart-icon-wrapper:hover[b-9g2lw23oc8] {
    background: var(--color-gold, #D5B36C);
    color: var(--color-black, #1A1A16);
    transform: translateY(-2px);
}

#cart-count[b-9g2lw23oc8] {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--color-red, #C92922);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    border: 2px solid var(--color-black, #1A1A16);
}

.mobile-menu-btn[b-9g2lw23oc8] {
    display: none; background: none; border: none;
    color: var(--color-gold, #D5B36C); font-size: 1.5rem; cursor: pointer;
}

/* =========================================
   LÓGICA DE USUARIO Y DROPDOWN
   ========================================= */
.user-dropdown[b-9g2lw23oc8] {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.btn-logout[b-9g2lw23oc8]{
    display: flex; 
    align-items: start; 
    justify-content: start;
}

.user-name[b-9g2lw23oc8] {
    color: #FDFDFD !important;
    font-family: var(--font-heading, 'Syne', sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    padding: 10px 0;
}

.user-dropdown:hover .user-name[b-9g2lw23oc8] {
    color: var(--color-gold, #D5B36C) !important;
}

.dropdown-menu[b-9g2lw23oc8] {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 22, 0.98);
    min-width: 200px;
    border: 1px solid rgba(213, 179, 108, 0.4);
    border-radius: 8px;
    padding: 8px 0;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
}

.user-dropdown[b-9g2lw23oc8]::after {
    content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 25px;
}

.user-dropdown:hover .dropdown-menu[b-9g2lw23oc8] {
    display: flex; animation: fadeIn-b-9g2lw23oc8 0.3s ease;
}

.dropdown-menu a[b-9g2lw23oc8], .dropdown-menu button[b-9g2lw23oc8] {
    color: #FDFDFD !important;
    padding: 12px 20px;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: none;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.dropdown-menu a[b-9g2lw23oc8]::after { display: none !important; }

.dropdown-menu a:hover[b-9g2lw23oc8], .dropdown-menu button:hover[b-9g2lw23oc8] {
    background: rgba(213, 179, 108, 0.15);
    color: var(--color-gold, #D5B36C) !important;
    padding-left: 25px;
}

.btn-login[b-9g2lw23oc8] {
    background: var(--color-gold, #D5B36C);
    color: var(--color-black, #1A1A16) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-login[b-9g2lw23oc8]::after { display: none !important; }
.btn-login:hover[b-9g2lw23oc8] { background: white; transform: translateY(-2px); }

@keyframes fadeIn-b-9g2lw23oc8 {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* =========================================
   BACKDROP DEL MENÚ MÓVIL
   ========================================= */
.mobile-menu-backdrop[b-9g2lw23oc8] {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-backdrop.active[b-9g2lw23oc8] {
    opacity: 1;
    visibility: visible;
}

/* =========================================
   AJUSTES RESPONSIVOS (MÓVIL)
   ========================================= */
@media (max-width: 768px) {
    .glass-nav[b-9g2lw23oc8] {
        width: 94%;
        padding: 8px 20px;
    }

    .mobile-menu-btn[b-9g2lw23oc8] { display: block; }

    /* El menú ahora cae de forma elegante desde la píldora */
    .nav-links[b-9g2lw23oc8] {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 22, 0.98);
        border: 1px solid rgba(213, 179, 108, 0.3);
        border-radius: 20px;
        padding: 30px 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    .nav-links.active[b-9g2lw23oc8] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .user-dropdown[b-9g2lw23oc8] {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .user-dropdown[b-9g2lw23oc8]::after { display: none; }

    .dropdown-menu[b-9g2lw23oc8] {
        display: flex;
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.05); /* Fondo sutil para diferenciar el submenú */
        border: none;
        box-shadow: none;
        padding: 10px;
        margin-top: 15px;
        width: 100%;
        border-radius: 12px;
    }

    .dropdown-menu a[b-9g2lw23oc8], .dropdown-menu button[b-9g2lw23oc8] {
        justify-content: center; /* Centrar elementos del submenú en móvil */
    }

    .dropdown-menu a:hover[b-9g2lw23oc8], .dropdown-menu button:hover[b-9g2lw23oc8] {
        padding-left: 20px;
    }

    .btn-login[b-9g2lw23oc8] {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}
/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-main-content[b-nturja15l5] 
{
    padding-top: 64px !important; 
}
/* /Components/Pages/Auth/AuthAdmin.razor.rz.scp.css */
/* ESTILOS BASE DE LA TARJETA DEL ADMIN (Desktop) */
.auth-admin-card[b-nx3memm1nv] {
    max-width: 900px;
    width: 100%;
    min-height: 550px;
    overflow: hidden;
    background-color: var(--mud-palette-surface, #ffffff);
    border-radius: 12px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
}

[b-nx3memm1nv] .ssr-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--mud-palette-lines-default, #c4c4c4);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--mud-palette-text-primary);
    background-color: transparent;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

[b-nx3memm1nv] .ssr-input:focus {
    outline: none;
    border-color: var(--mud-palette-primary);
    box-shadow: 0 0 0 1px var(--mud-palette-primary);
}

[b-nx3memm1nv] .ssr-input.with-icon {
    padding-left: 40px;
}

[b-nx3memm1nv] .ssr-input.with-trailing-icon {
    padding-right: 40px;
}

.input-wrapper[b-nx3memm1nv] {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

[b-nx3memm1nv] .input-icon {
    position: absolute;
    left: 12px;
    color: var(--mud-palette-text-secondary);
    pointer-events: none;
    z-index: 1;
}

.password-toggle[b-nx3memm1nv] {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--mud-palette-text-secondary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease-in-out;
    z-index: 1;
}

.password-toggle:hover[b-nx3memm1nv] {
    color: var(--mud-palette-primary);
}

[b-nx3memm1nv] .ssr-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--mud-palette-primary);
    cursor: pointer;
}

.bg-admin-login[b-nx3memm1nv] {
    width: 50%;
    background: linear-gradient(to bottom,
    rgba(17, 17, 17, 0.8),
    rgba(197, 48, 48, 0.8)),
    url('/img/fondo-madera-taller.jpg') center/cover no-repeat;
    border-right: 4px solid var(--mud-palette-primary);
}

.form-container[b-nx3memm1nv] {
    background-color: var(--mud-palette-surface);
}

/* RESPONSIVE (Móviles) */
@media (max-width: 600px) {
    .auth-admin-card[b-nx3memm1nv] {
        box-shadow: none;
        border-radius: 0;
        min-height: 100vh;
        background-color: transparent;
    }

    .form-container[b-nx3memm1nv] {
        background-color: transparent !important;
        justify-content: flex-start !important;
        padding-top: 40px !important;
    }

    [b-nx3memm1nv] .mud-main-content {
        padding: 0 !important;
    }
}
/* /Components/Pages/Auth/AuthPublic.razor.rz.scp.css */
/* ESTILOS BASE DE LA TARJETA (Desktop) */
.auth-card[b-c2q3vnpeqq] {
    max-width: 450px;
    width: 100%;
    padding: 40px 32px;
    background-color: var(--mud-palette-surface, #ffffff);
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--mud-palette-primary);
}

.options-row[b-c2q3vnpeqq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[b-c2q3vnpeqq] .ssr-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--mud-palette-lines-default, #c4c4c4);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--mud-palette-text-primary);
    background-color: transparent;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

[b-c2q3vnpeqq] .ssr-input:focus {
    outline: none;
    border-color: var(--mud-palette-primary);
    box-shadow: 0 0 0 1px var(--mud-palette-primary);
}

[b-c2q3vnpeqq] .ssr-input.with-icon {
    padding-left: 40px;
}

[b-c2q3vnpeqq] .ssr-input.with-trailing-icon {
    padding-right: 40px;
}

.input-wrapper[b-c2q3vnpeqq] {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

[b-c2q3vnpeqq] .input-icon {
    position: absolute;
    left: 12px;
    color: var(--mud-palette-text-secondary);
    pointer-events: none;
    z-index: 1;
}

.password-toggle[b-c2q3vnpeqq] {
    position: absolute;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--mud-palette-text-secondary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease-in-out;
    z-index: 1;
}

.password-toggle:hover[b-c2q3vnpeqq] {
    color: var(--mud-palette-primary);
}

[b-c2q3vnpeqq] .ssr-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--mud-palette-primary);
    cursor: pointer;
}

.google-login-btn[b-c2q3vnpeqq] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    background-color: var(--mud-palette-surface, #ffffff);
    color: var(--mud-palette-text-primary, #3c4043);
    border: 1px solid var(--mud-palette-lines-default, #dadce0);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.google-login-btn:hover[b-c2q3vnpeqq] {
    background-color: rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3);
    text-decoration: none;
}

.google-icon[b-c2q3vnpeqq] {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

/* RESPONSIVE (Móviles) */
@media (max-width: 600px) {
    .auth-card[b-c2q3vnpeqq] {
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        padding: 40px 20px;
        background-color: transparent;
    }

    /* Evita colisiones de texto apilando los elementos */
    .options-row[b-c2q3vnpeqq] {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

    [b-c2q3vnpeqq] .mud-main-content {
        padding: 0 !important;
    }
}
/* /Components/Pages/Public/FailurePaid.razor.rz.scp.css */
.payment-container[b-4sjwwgjprg] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}
.payment-card[b-4sjwwgjprg] {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 400px;
    width: 100%;
}
.icon-wrapper[b-4sjwwgjprg] {
    margin-bottom: 20px;
}
.crossmark[b-4sjwwgjprg] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #dc3545;
    stroke-miterlimit: 10;
    margin: 0 auto;
}
.crossmark-circle[b-4sjwwgjprg] {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #dc3545;
    fill: none;
    animation: stroke-b-4sjwwgjprg 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.crossmark-line[b-4sjwwgjprg] {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #dc3545;
    stroke-width: 3;
    stroke-linecap: round;
    animation: stroke-b-4sjwwgjprg 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}
h2[b-4sjwwgjprg] {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 24px;
}
.order-ref[b-4sjwwgjprg] {
    color: #2c3e50;
    font-size: 15px;
    margin-bottom: 8px;
}
p[b-4sjwwgjprg] {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
}
.btn[b-4sjwwgjprg] {
    display: inline-block;
    padding: 12px 24px;
    background: #dc3545;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn:hover[b-4sjwwgjprg] {
    background: #c82333;
}
@keyframes stroke-b-4sjwwgjprg { 100% { stroke-dashoffset: 0; } }
/* /Components/Pages/Public/Home.razor.rz.scp.css */
.landing-wrapper[b-03vz6an7jh] {
    --black: #1A1A16;
    --black-soft: #272726;
    --red: #C92922;
    --gold: #D5B36C;
    --white: #FDFDFD;
    --grey-light: #F4F4F4;
    --font-main: 'Syne', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    background: var(--white);
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100%;
}

.container[b-03vz6an7jh] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    box-sizing: border-box;
}

.glass-nav[b-03vz6an7jh] {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1300px;
    background: rgba(26, 26, 22, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(213, 179, 108, 0.3);
    border-radius: 50px;
    z-index: 1000;
    padding: 8px 30px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-inner[b-03vz6an7jh] {
    padding: 0 5%; 
}

.logo-nav[b-03vz6an7jh] {
    
    height: 40px; 
}

.mobile-menu-btn[b-03vz6an7jh] { 
    display: none;
    background: none; 
    border: none; 
    color: white; 
    font-size: 1.5rem; 
    cursor: pointer; 
}

.nav-links[b-03vz6an7jh] { 
    display: flex; 
    gap: 20px; 
    align-items: center; 
}

.nav-links a[b-03vz6an7jh] { 
    color: white; 
    text-decoration: none; 
    font-weight: 600; 
    font-family: var(--font-main);
    transition: 0.3s; 
}

.nav-links a:hover[b-03vz6an7jh] { 
    color: var(--gold); 
}

/* HERO SECTION */
.hero-split[b-03vz6an7jh] { 
    height: 100vh;
    display: flex; 
    align-items: center; 
    background: var(--black); 
    color: white; width: 100%;
    overflow: hidden; 
}

.hero-visual[b-03vz6an7jh] { 
    flex: 1.2;
    height: 100%; 
    position: relative; 
    overflow: hidden; 
}

.hero-visual img[b-03vz6an7jh] { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    animation: subtleZoom-b-03vz6an7jh 20s infinite alternate;
}

.bg-overlay[b-03vz6an7jh] {
    position: absolute; 
    top: 0;
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 22, 0) 0%, rgba(26, 26, 22, 0.4) 50%, rgba(26, 26, 22, 1) 100%); 
    z-index: 2;
}

@keyframes subtleZoom-b-03vz6an7jh { 
    from { 
        transform: scale(1); } to { transform: scale(1.1); }
}

.hero-text[b-03vz6an7jh] { 
    flex: 1; 
    padding: 0 5%; 
    z-index: 10; 
    background: transparent;
}

.location[b-03vz6an7jh] { 
    color: var(--gold); 
    letter-spacing: 4px; 
    text-transform: uppercase; 
    font-size: 0.8rem; font-weight: 700;
}

.hero-text h1[b-03vz6an7jh] {
    font-family: var(--font-main); 
    font-size: clamp(2rem, 6vw, 5rem); 
    line-height: 0.9; 
    margin: 20px 0; 
    word-break: break-word; 
}

.outline-text[b-03vz6an7jh] { 
    color: transparent; 
    -webkit-text-stroke: 1px var(--white); 
}

.cta-circle[b-03vz6an7jh] {
    width: 120px;
    height: 120px; 
    border: 1px solid var(--red); 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    color: white;
    text-decoration: none; 
    font-weight: 700; 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    transition: 0.4s;
}

.cta-circle:hover[b-03vz6an7jh] { 
    background: var(--red); 
    transform: scale(1.1) rotate(10deg); 
}

/* HISTORIA */
.legacy-section[b-03vz6an7jh] { 
    padding: 100px 0; 
    width: 100%; 
    overflow: hidden;
}

.story-grid[b-03vz6an7jh] { 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    gap: 60px; 
    align-items: center;
}

.red-line[b-03vz6an7jh] { 
    border-bottom: 6px solid var(--red); 
}

.year-label[b-03vz6an7jh] { 
    color: var(--red);
    font-weight: 800; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
}

.story-content h2[b-03vz6an7jh] { 
    font-family: var(--font-main);
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    margin: 20px 0; 
    line-height: 1; 
    word-break: break-word; 
}

.timeline-modern[b-03vz6an7jh] {
    margin: 30px 0; 
    border-left: 2px solid var(--gold); 
    padding-left: 25px; 
}

.tl-item[b-03vz6an7jh] {
    margin-bottom: 25px;
}

.tl-year[b-03vz6an7jh] { 
    font-family: var(--font-main); 
    color: var(--red); 
    font-weight: 800; 
    font-size: 1.2rem; 
    display: block; 
}

.stats[b-03vz6an7jh] { 
    display: flex; 
    gap: 40px; 
    margin-top: 40px; 
    flex-wrap: wrap;
}

.stat-item strong[b-03vz6an7jh] {
    display: block; 
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-family: var(--font-main); 
    color: var(--gold); 
}

.story-decor[b-03vz6an7jh] { 
    position: relative; 
    max-width: 100%; 
}

.story-decor img[b-03vz6an7jh] { 
    width: 100%; 
    position: relative; 
    z-index: 2; 
    object-fit: cover;
}

.box-red[b-03vz6an7jh] { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    background: var(--red); 
    top: 20px; 
    left: 20px; 
    z-index: 1; 
}

/* IDENTIDAD */
.identity-dark[b-03vz6an7jh] { 
    background: var(--black);
    padding: 80px 0; 
    color: white;
    width: 100%; 
    overflow: hidden;
}

.scrolling-text[b-03vz6an7jh] {
    overflow: hidden;
    white-space: nowrap; 
    margin-bottom: 50px; 
    width: 100%; 
}

.scrolling-text span[b-03vz6an7jh] { 
    font-family: var(--font-main); 
    font-size: clamp(3rem, 8vw, 5rem);
    opacity: 0.05; 
    letter-spacing: 15px;
    display: inline-block; 
    animation: scroll-b-03vz6an7jh 30s linear infinite; 
}

@keyframes scroll-b-03vz6an7jh {
    0% { 
        transform: translateX(0); 
    } 
    100% { 
        transform: translateX(-50%); 
    } 
}

.grid-cards[b-03vz6an7jh] { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px;
}

.p-card[b-03vz6an7jh] { 
    padding: 40px; 
    background: var(--black-soft); 
    border-radius: 4px; 
    transition: 0.4s; 
    border: 1px solid rgba(255,255,255,0.05); 
}

.p-card i[b-03vz6an7jh] { 
    font-size: 2.5rem; 
    color: var(--red); 
    margin-bottom: 20px;
}

.p-card.active[b-03vz6an7jh] { 
    background: var(--red);
    transform: translateY(-10px);
}

.p-card.active i[b-03vz6an7jh] { 
    color: white; 
}

/* CONTACTO */
.contact-section[b-03vz6an7jh] { 
    padding: 100px 0;
    background: var(--grey-light); 
    overflow: hidden; 
}

.contact-wrapper[b-03vz6an7jh] { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: start; 
}

.contact-header h2[b-03vz6an7jh] {
    font-family: var(--font-main);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1; 
    margin-bottom: 20px;
    word-break: break-word; 
}

.red-text[b-03vz6an7jh] { 
    color: var(--red);
}

.contact-details[b-03vz6an7jh] { 
    margin-top: 40px;
}

.c-item[b-03vz6an7jh] { 
    margin-bottom: 15px; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    word-break: break-word; 
}
.c-item i[b-03vz6an7jh] { 
    color: var(--red); 
    flex-shrink: 0; 
}

.contact-form[b-03vz6an7jh] { 
    background: white; 
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-radius: 8px;
    --mud-palette-primary: #C92922 !important; 
    width: 100%; 
    box-sizing: border-box; 
}

.form-group[b-03vz6an7jh] { 
    margin-bottom: 20px;
}

[b-03vz6an7jh] .btn-submit { 
    background: var(--black) !important; 
    color: white !important; 
    font-family: var(--font-main) !important; 
    font-weight: 700 !important; 
    transition: 0.3s; 
}

[b-03vz6an7jh] .btn-submit:hover { 
    background: var(--red) !important;
}

[b-03vz6an7jh] .mud-input { 
    font-family: var(--font-body) !important; 
}

[b-03vz6an7jh] .contact-form .mud-focused .mud-input-outlined-border { 
    border-color: var(--red) !important; 
}

[b-03vz6an7jh] .contact-form .mud-input-label.mud-focused { 
    color: var(--red) !important;
}

[b-03vz6an7jh] .contact-form input:focus, [b-03vz6an7jh] .contact-form textarea:focus { 
    caret-color: var(--red) !important;
}

/* FOOTER INDEX */
.modern-footer[b-03vz6an7jh] { 
    padding: 60px 0 30px; 
    border-top: 1px solid #eee; 
    background: var(--white); 
    overflow: hidden;
}

.logo-footer[b-03vz6an7jh] { 
    height: 50px; 
    margin-bottom: 20px;
}

.footer-grid[b-03vz6an7jh] { 
    display: flex;
    justify-content: space-between;
    align-items: center; 
    margin-bottom: 40px; 
    flex-wrap: wrap; 
    gap: 20px;
}

.f-social a[b-03vz6an7jh] { 
    color: var(--black); 
    font-size: 1.5rem;
    margin-left: 15px; 
    transition: 0.3s; 
}

.f-social a:hover[b-03vz6an7jh] { 
    color: var(--red);
}

.f-bottom[b-03vz6an7jh] { 
    text-align: center;
    font-size: 0.8rem; 
    opacity: 0.5; 
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* RESPONSIVE INDEX */
@media (max-width: 992px) {
    .story-grid[b-03vz6an7jh], .contact-wrapper[b-03vz6an7jh], .footer-grid[b-03vz6an7jh] { 
        grid-template-columns: 1fr;
        flex-direction: column; 
        text-align: center; 
        gap: 40px; 
    }

    .story-content[b-03vz6an7jh] { 
        order: 2;
    }
    
    .story-decor[b-03vz6an7jh] {
        order: 1; 
        margin-bottom: 20px;
    }
    
    .timeline-modern[b-03vz6an7jh] { 
        border: none; 
        padding: 0; 
    }
    
    .f-social[b-03vz6an7jh] { 
        margin-top: 20px;
        display: flex; 
        justify-content: center; 
        width: 100%; 
    }
    
    .f-social a[b-03vz6an7jh] {
        margin: 0 10px;
    }

    .contact-form[b-03vz6an7jh] { 
        padding: 25px 20px;
    }

    /* MENU HAMBURGUESA */
    .mobile-menu-btn[b-03vz6an7jh] { 
        display: block;
    }
    
    .nav-links[b-03vz6an7jh] {
        display: none; 
        flex-direction: column; 
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%; 
        background: var(--black);
        padding: 10px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links.active[b-03vz6an7jh] { 
        display: flex; 
    }
    .nav-links a[b-03vz6an7jh] {
        padding: 5px 0; 
        width: 100%;
        text-align: center;
        margin: 0 10px;
    }

    /* FIX IMAGEN HERO EN MÓVIL (Mover texto abajo, ocultar botón, superposición) */
    .hero-split[b-03vz6an7jh] {
        position: relative; 
        display: block; 
    }
    
    .hero-visual[b-03vz6an7jh] { 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
        z-index: 0; 
    }

    /* Gradiente oscuro inferior para legibilidad del texto en móviles */
    .bg-overlay[b-03vz6an7jh] { 
        background: linear-gradient(to bottom, rgba(26, 26, 22, 0.1) 0%, rgba(26, 26, 22, 0.3) 50%, rgba(26, 26, 22, 0.9) 100%);
    }

    .hero-text[b-03vz6an7jh] {
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Empuja el contenido hacia abajo */
        height: 100%;
        text-align: center;
        padding: 0 5% 15vh 5%; /* El 15vh asegura que haya un pequeño espacio debajo */
    }

    .hero-cta[b-03vz6an7jh] { 
        display: none !important; 
    } /* Ocultar el botón "Ver Legado" */

    .hero-text p[b-03vz6an7jh] { 
        font-size: 0.95rem;
    }

    [b-03vz6an7jh] .btn-submit { 
        width: 100%; 
        margin-top: 10px;
        display: block; 
    }
}
/* /Components/Pages/Public/PendingPaid.razor.rz.scp.css */
.payment-container[b-pb4bd4mpri] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}
.payment-card[b-pb4bd4mpri] {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 400px;
    width: 100%;
}
.icon-wrapper[b-pb4bd4mpri] {
    margin-bottom: 20px;
}
.clockmark[b-pb4bd4mpri] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #ffc107;
    stroke-miterlimit: 10;
    margin: 0 auto;
}
.clockmark-circle[b-pb4bd4mpri] {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #ffc107;
    fill: none;
    animation: stroke-b-pb4bd4mpri 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.clockmark-line[b-pb4bd4mpri] {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #ffc107;
    stroke-width: 3;
    stroke-linecap: round;
    animation: stroke-b-pb4bd4mpri 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}
h2[b-pb4bd4mpri] {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 24px;
}
.order-ref[b-pb4bd4mpri] {
    color: #2c3e50;
    font-size: 15px;
    margin-bottom: 8px;
}
p[b-pb4bd4mpri] {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
}
.btn[b-pb4bd4mpri] {
    display: inline-block;
    padding: 12px 24px;
    background: #e0a800;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn:hover[b-pb4bd4mpri] {
    background: #d39e00;
}
@keyframes stroke-b-pb4bd4mpri { 100% { stroke-dashoffset: 0; } }
/* /Components/Pages/Public/StorePage.razor.rz.scp.css */
/* VARIABLES GLOBALES */
.store-wrapper[b-0q3et5scco] {
    --color-black: #1A1A16;
    --color-black-light: #2A2A24;
    --color-red: #C92922;
    --color-gold: #D5B36C;
    --color-bg: #FCFCFC;
    --color-surface: #FFFFFF;
    --color-text: #333333;
    --color-text-muted: #888888;
    --border-light: rgba(0, 0, 0, 0.06);

    --font-heading: 'Syne', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    min-height: 100vh;
}

/* HERO SECTION */
.shop-header[b-0q3et5scco] {
    background: radial-gradient(circle at top center, var(--color-black-light) 0%, var(--color-black) 100%);
    padding: 160px 4% 80px;
    text-align: center;
    position: relative;
    border-bottom: 2px solid var(--color-gold);
}

.hero-content[b-0q3et5scco] { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

.gold-text[b-0q3et5scco] {
    color: var(--color-gold); font-weight: 700; text-transform: uppercase;
    letter-spacing: 6px; font-size: clamp(.2rem, 4vh, .8rem);
}

.shop-header h1[b-0q3et5scco] {
    color: white; font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin: 15px 0 25px; text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.red-text[b-0q3et5scco] { color: var(--color-red); }
.shop-header p[b-0q3et5scco] { color: #cecece; font-size: 1.1rem; line-height: 1.6; }

/* =========================================
   BOTÓN WHATSAPP FLOTANTE
   ========================================= */
.fab-whatsapp[b-0q3et5scco] {
    display: flex; align-items: center; justify-content: center;
    position: fixed; bottom: 25px; right: 25px; z-index: 998;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: white; text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    font-size: 2rem; transition: transform 0.3s;
}
.fab-whatsapp:hover[b-0q3et5scco] { transform: scale(1.1); color: white; }
.fab-whatsapp:active[b-0q3et5scco] { transform: scale(0.9); }

/* =========================================
   FILTROS (DESKTOP)
   ========================================= */
.filters-header-mobile[b-0q3et5scco] { display: none; }
.filters-bar-overlay[b-0q3et5scco] { display: none; }
.mobile-filter-trigger[b-0q3et5scco] { display: none; }

.filters-bar[b-0q3et5scco] {
    background: var(--color-surface); border-bottom: 1px solid var(--border-light);
    padding: 20px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.filters-container[b-0q3et5scco] {
    max-width: 1400px; margin: 0 auto; padding: 0 4%;
    display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr auto;
    gap: 15px; align-items: center;
}

[b-0q3et5scco] .mud-input-control { margin: 0 !important; }
[b-0q3et5scco] .mud-input-outlined-border { border-color: rgba(0,0,0,0.15) !important; }
[b-0q3et5scco] .mud-input.mud-input-outlined.mud-input-focused .mud-input-outlined-border { border-color: var(--color-gold) !important; border-width: 2px !important; }

.btn-gold-solid[b-0q3et5scco] {
    background: var(--color-black); color: var(--color-gold);
    border: 1px solid var(--color-black); border-radius: 4px;
    height: 40px; width: 100%; min-width: 100px;
    font-family: var(--font-heading); font-weight: 700;
    cursor: pointer; transition: all 0.3s;
}
.btn-gold-solid:hover[b-0q3et5scco] { background: var(--color-gold); color: var(--color-black); border-color: var(--color-gold); }

/* =========================================
   GRID DE PRODUCTOS 
   ========================================= */
.shop-grid-container[b-0q3et5scco] { max-width: 1400px; margin: 0 auto; padding: 60px 4%; }
.shop-grid[b-0q3et5scco] { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 30px; }

.product-card[b-0q3et5scco] {
    background: var(--color-surface); border: 1px solid var(--border-light); border-radius: 6px;
    overflow: hidden; display: flex; flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card:hover[b-0q3et5scco] { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); border-color: rgba(213, 179, 108, 0.4); }

.card-image-wrapper[b-0q3et5scco] {
    position: relative; aspect-ratio: 1; background: radial-gradient(circle, #fff 0%, #f4f4f4 100%);
    border-bottom: 1px solid var(--border-light); overflow: hidden; cursor: pointer;
}
.card-image-wrapper img[b-0q3et5scco] { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.product-card:hover .card-image-wrapper img[b-0q3et5scco] { transform: scale(1.08); }

.category-badge[b-0q3et5scco] {
    position: absolute; top: 15px; left: 15px; z-index: 2;
    background: var(--color-black); color: var(--color-gold); padding: 4px 10px;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px;
}

.desktop-quick-add[b-0q3et5scco] {
    position: absolute; bottom: 0; left: 0; width: 100%;
    transform: translateY(100%); transition: transform 0.3s ease;
}
.product-card:hover .desktop-quick-add[b-0q3et5scco] { transform: translateY(0); }

.btn-add-cart[b-0q3et5scco], .btn-sold-out[b-0q3et5scco] {
    width: 100%; padding: 14px; border: none; font-family: var(--font-heading);
    font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px;
    cursor: pointer; transition: background 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-add-cart[b-0q3et5scco] { background: rgba(26,26,22,0.95); color: var(--color-gold); backdrop-filter: blur(4px); }
.btn-add-cart:hover[b-0q3et5scco] { background: var(--color-gold); color: var(--color-black); }
.btn-sold-out[b-0q3et5scco] { background: rgba(100,100,100,0.9); color: #ddd; cursor: not-allowed; }

.mobile-quick-add[b-0q3et5scco] { display: none; } /* Oculto en PC */

.card-info[b-0q3et5scco] { padding: 20px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.card-info h3[b-0q3et5scco] {
    font-family: var(--font-heading); font-size: 1.05rem; line-height: 1.4; color: var(--color-black);
    margin-bottom: 12px; cursor: pointer; transition: color 0.3s;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-info h3:hover[b-0q3et5scco] { color: var(--color-red); }

.price-wrapper[b-0q3et5scco] { margin-top: auto; }
.discount-row[b-0q3et5scco] { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 4px; }
.original-price[b-0q3et5scco] { text-decoration: line-through; color: #a0a0a0; font-size: 0.85rem; font-weight: 500; }
.discount-tag[b-0q3et5scco] { background: var(--color-red); color: white; padding: 2px 6px; border-radius: 3px; font-size: 0.7rem; font-weight: 700; }
.final-price[b-0q3et5scco] { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--color-black); }
.final-price.highlight[b-0q3et5scco] { color: var(--color-red); }

.loading-state[b-0q3et5scco], .empty-state[b-0q3et5scco] { text-align: center; padding: 60px 0; grid-column: 1 / -1; }
.empty-state i[b-0q3et5scco] { font-size: 3rem; color: rgba(213, 179, 108, 0.4); margin-bottom: 15px; }
.pagination-wrapper[b-0q3et5scco] { display: flex; justify-content: center; padding-bottom: 60px; }

/* =========================================
   FOOTER
   ========================================= */
.shop-footer[b-0q3et5scco] {
    background: var(--color-surface); border-top: 1px solid rgba(213, 179, 108, 0.2);
    padding: 70px 0 20px; margin-top: 40px;
}
.footer-container[b-0q3et5scco] {
    max-width: 1400px; margin: 0 auto; padding: 0 4%;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 40px;
}
.footer-brand img[b-0q3et5scco] { height: 50px; margin-bottom: 15px; }
.footer-brand p[b-0q3et5scco] { color: var(--color-text-muted); font-size: 0.9rem; max-width: 350px; margin-bottom: 20px; line-height: 1.6; }
.social-links[b-0q3et5scco] { display: flex; gap: 12px; }
.social-links a[b-0q3et5scco] {
    width: 36px; height: 36px; border-radius: 50%; background: var(--color-black); color: white;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s; text-decoration: none;
}
.social-links a:hover[b-0q3et5scco] { background: var(--color-gold); color: var(--color-black); transform: translateY(-3px); }

.footer-links h4[b-0q3et5scco] { font-family: var(--font-heading); font-weight: 800; font-size: 1rem; text-transform: uppercase; margin-bottom: 15px; color: var(--color-black); }
.footer-links a[b-0q3et5scco] { display: block; color: #666; text-decoration: none; margin-bottom: 10px; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover[b-0q3et5scco] { color: var(--color-red); }
.footer-bottom[b-0q3et5scco] { text-align: center; padding-top: 25px; border-top: 1px solid var(--border-light); color: #999; font-size: 0.85rem; max-width: 1400px; margin: 0 auto; }


/* =========================================
   RESPONSIVE DESIGN (TABLETS Y MÓVILES)
   ========================================= */
@media (max-width: 992px) {
    /* 1. Ajustes del Grid y Paddings */
    .shop-grid-container[b-0q3et5scco] { padding: 30px 4% 60px 4%; }

    /* 2. Botón fijo en tarjetas (Elimina el hover que no existe en móvil) */
    .desktop-quick-add[b-0q3et5scco] { display: none; }
    .product-card:hover[b-0q3et5scco] { transform: none; box-shadow: none; border-color: var(--border-light); }
    .mobile-quick-add[b-0q3et5scco] { display: block; padding: 0 15px 15px 15px; }
    .btn-add-cart-mobile[b-0q3et5scco], .btn-sold-out-mobile[b-0q3et5scco] {
        width: 100%; padding: 12px; border: 1px solid var(--color-black); border-radius: 4px;
        font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; font-size: 0.8rem;
        display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .btn-add-cart-mobile[b-0q3et5scco] { background: var(--color-black); color: var(--color-gold); }
    .btn-sold-out-mobile[b-0q3et5scco] { background: #eee; color: #aaa; border-color: #eee; }

    /* 3. Disparador de Filtros en línea (antes del Grid) */
    .mobile-filter-trigger[b-0q3et5scco] {
        display: block;
        max-width: 1400px;
        margin: 0 auto;
        padding: 40px 4% 0 4%;
    }
    .btn-open-filters-inline[b-0q3et5scco] {
        background: var(--color-black); color: var(--color-gold);
        border: 1px solid var(--color-gold); border-radius: 6px;
        padding: 14px; font-family: var(--font-heading);
        font-weight: 700; text-transform: uppercase; width: 100%;
        cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* 4. Panel inferior de Filtros (Bottom Sheet) */
    .filters-bar-overlay[b-0q3et5scco] {
        display: block; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
        background: rgba(0,0,0,0.5); z-index: 1000; opacity: 0; visibility: hidden; transition: 0.3s;
    }
    .filters-bar-overlay.open[b-0q3et5scco] { opacity: 1; visibility: visible; }

    .filters-bar[b-0q3et5scco] {
        position: fixed; bottom: -100%; left: 0; width: 100%; z-index: 1001;
        background: var(--color-surface); padding: 20px;
        border-radius: 20px 20px 0 0; box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
        transition: bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .filters-bar.open[b-0q3et5scco] { bottom: 0; }

    .filters-header-mobile[b-0q3et5scco] { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
    .btn-close-filters[b-0q3et5scco] { background: none; border: none; font-size: 1.5rem; color: #666; }

    .filters-container[b-0q3et5scco] { display: flex; flex-direction: column; gap: 15px; padding: 0; }
    .filter-btn-wrapper[b-0q3et5scco] { margin-top: 10px; }

    /* 5. Footer Centrado */
    .footer-container[b-0q3et5scco] { flex-direction: column; text-align: center; gap: 30px; }
    .footer-brand[b-0q3et5scco] { display: flex; flex-direction: column; align-items: center; }
    .social-links[b-0q3et5scco] { justify-content: center; }
}
/* /Components/Pages/Public/SuccessPaid.razor.rz.scp.css */
.payment-container[b-h3vfk6d6n2] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}
.payment-card[b-h3vfk6d6n2] {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 400px;
    width: 100%;
}
.icon-wrapper[b-h3vfk6d6n2] {
    margin-bottom: 20px;
}
.checkmark[b-h3vfk6d6n2] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #28a745;
    stroke-miterlimit: 10;
    margin: 0 auto;
    box-shadow: inset 0px 0px 0px #28a745;
    animation: fill-b-h3vfk6d6n2 .4s ease-in-out .4s forwards, scale-b-h3vfk6d6n2 .3s ease-in-out .9s both;
}
.checkmark-circle[b-h3vfk6d6n2] {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #28a745;
    fill: none;
    animation: stroke-b-h3vfk6d6n2 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark-check[b-h3vfk6d6n2] {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke-b-h3vfk6d6n2 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
h2[b-h3vfk6d6n2] {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 24px;
}
p[b-h3vfk6d6n2] {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
}
.btn[b-h3vfk6d6n2] {
    display: inline-block;
    padding: 12px 24px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn:hover[b-h3vfk6d6n2] {
    background: #1a252f;
}
@keyframes stroke-b-h3vfk6d6n2 { 100% { stroke-dashoffset: 0; } }
@keyframes scale-b-h3vfk6d6n2 { 0%, 100% { transform: none; } 50% { transform: scale3d(1.1, 1.1, 1); } }
@keyframes fill-b-h3vfk6d6n2 { 100% { box-shadow: inset 0px 0px 0px 30px rgba(40,167,69,0.1); } }
