:root{

    /*
    |--------------------------------------------------------------------------
    | BACKGROUNDS
    |--------------------------------------------------------------------------
    */

    --bg-primary:
        #060606;

    --bg-surface:
        #111214;

    --bg-surface-2:
        #17181b;

    --bg-surface-3:
        #1d1f23;

    --bg-input:
        #101113;

    --bg-card:
        rgba(255,255,255,.03);

    --bg-card-hover:
        var(--glass-4);

    --bg-card-strong:
        var(--glass-6);

    --bg-glass-heavy:
        rgba(0,0,0,.82);

    --bg-glass-medium:
        rgba(0,0,0,.45);

    --bg-glass-soft:
        rgba(0,0,0,.18);

    --bg-overlay-soft:
        rgba(0,0,0,.25);

    --bg-overlay-medium:
        rgba(0,0,0,.45);

    --bg-overlay-heavy:
        rgba(0,0,0,.72);

    --bg-overlay-ultra:
        rgba(0,0,0,.92);

    /*
    |--------------------------------------------------------------------------
    | GLASS SYSTEM
    |--------------------------------------------------------------------------
    */
    
    --glass-1:
        rgba(255,255,255,.01);
    
    --glass-2:
        rgba(255,255,255,.015);
    
    --glass-3:
        rgba(255,255,255,.02);
    
    --glass-4:
        rgba(255,255,255,.03);
    
    --glass-5:
        rgba(255,255,255,.04);
    
    --glass-6:
        rgba(255,255,255,.05);
    
    --glass-7:
        rgba(255,255,255,.06);
    
    --glass-8:
        rgba(255,255,255,.08);
    
    --glass-border:
        rgba(255,255,255,.08);
    
    --glass-border-strong:
        rgba(255,255,255,.14);
    
    --glass-highlight:
        rgba(255,255,255,.22);
    
    --glass-shadow:
        0 20px 60px rgba(0,0,0,.35);

    /*
    |--------------------------------------------------------------------------
    | GRADIENTS
    |--------------------------------------------------------------------------
    */

    --bg-gradient-card:
        linear-gradient(
            135deg,
            var(--glass-5),
            rgba(255,255,255,.02)
        );

    --bg-gradient-hero:
        linear-gradient(
            135deg,
            #1a1a1a,
            #080808
        );

    --bg-gradient-glass:
        linear-gradient(
            180deg,
            var(--glass-5),
            rgba(255,255,255,.02)
        );

    --bg-gradient-warm:
        linear-gradient(
            135deg,
            rgba(255,180,80,.16),
            rgba(255,255,255,.03)
        );

    /*
    |--------------------------------------------------------------------------
    | TEXT
    |--------------------------------------------------------------------------
    */

    --text-primary:
        #ffffff;

    --text-secondary:
        #f3f4f6;

    --text-muted:
        #8d8f98;

    --text-soft:
        rgba(255,255,255,.72);

    --text-faded:
        rgba(255,255,255,.58);

    --text-dim:
        rgba(255,255,255,.42);

    --text-dark:
        #000000;

    /*
    |--------------------------------------------------------------------------
    | BORDERS
    |--------------------------------------------------------------------------
    */

    --border-primary:
        #232428;

    --border-soft:
        var(--glass-3);

    --border-glass:
        var(--glass-5);

    --border-glass-strong:
        var(--glass-6);

    --border-hover:
        var(--glass-8);

    /*
    |--------------------------------------------------------------------------
    | LOCAL BRAND
    |--------------------------------------------------------------------------
    */
    
    --local-primary:
        #2E2D5E;
    
    --local-primary-hover:
        #3A3975;
    
    --local-primary-soft:
        rgba(46,45,94,.15);
    
    --local-blue:
        #1F56B8;
    
    --local-cyan:
        #18A7C0;
    
    --local-orange:
        #FF8424;
    
    --local-green:
        #98CC4F;
    
    --local-pink:
        #FF2A7A;
    
    --local-pink-soft:
        rgba(255,42,122,.15);
    
    /*
    |--------------------------------------------------------------------------
    | PRIMARY BRAND ALIASES
    |--------------------------------------------------------------------------
    */
    
    --brand-primary:
        var(--local-primary);
    
    --brand-primary-hover:
        var(--local-primary-hover);
    
    --brand-primary-soft:
        var(--local-primary-soft);
    
    --brand-secondary:
        var(--local-cyan);
    
    --brand-secondary-soft:
        var(--local-pink-soft);
    
    --brand-blue:
        var(--local-blue);
    
    --brand-cyan:
        var(--local-cyan);
    
    --brand-orange:
        var(--local-orange);
    
    --brand-green:
        var(--local-green);
        
    --brand-gradient:
        linear-gradient(
            90deg,
            var(--local-primary),
            var(--local-blue),
            var(--local-cyan),
            var(--local-orange),
            var(--local-green)
        );
    
    --brand-glow:
        rgba(31,86,184,.18);

    /*
    |--------------------------------------------------------------------------
    | LEGACY BRAND COLORS
    |--------------------------------------------------------------------------
    */

    --accent-warm:
        #f5b041;

    --accent-terracotta:
        #d07a43;

    --accent-copper:
        #9b673c;

    --accent-gold:
        #ffcc66;

    --accent-olive:
        #76825c;

    /*
    |--------------------------------------------------------------------------
    | STATUS
    |--------------------------------------------------------------------------
    */

    --success:
        #4ade80;

    --success-soft:
        rgba(74,222,128,.15);

    --danger:
        #ef4444;

    --danger-soft:
        rgba(239,68,68,.15);

    --warning:
        #ffc857;

    --info:
        #7ccfff;
        
    --warning-soft:
    rgba(255,200,87,.15);

    /*
    |--------------------------------------------------------------------------
    | SHADOWS
    |--------------------------------------------------------------------------
    */

    --shadow-sm:
        0 8px 24px rgba(0,0,0,.18);

    --shadow-md:
        0 18px 40px rgba(0,0,0,.28);

    --shadow-lg:
        0 30px 60px rgba(0,0,0,.38);

    --shadow-xl:
        0 40px 90px rgba(0,0,0,.48);

    /*
    |--------------------------------------------------------------------------
    | EFFECTS
    |--------------------------------------------------------------------------
    */

    --blur-sm:
        6px;

    --blur-md:
        12px;

    --blur-lg:
        20px;

    /*
    |--------------------------------------------------------------------------
    | LAYOUT
    |--------------------------------------------------------------------------
    */

    --radius-sm:
        16px;

    --radius-md:
        22px;

    --radius-lg:
        28px;

    --radius-xl:
        36px;

    --radius-pill:
        999px;

    --radius:
        28px;

    --transition-fast:
        .18s ease;

    --transition:
        .25s ease;

    --transition-slow:
        .35s ease;

    --header-height:
        78px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:var(--bg-primary);

    color:var(--text-primary);

    font-family:
        Inter,
        sans-serif;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input{
    font:inherit;
}

.app-shell{
    min-height:100vh;
}

.site-header{

    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    height: 82px;

    padding: 0 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        linear-gradient(
            180deg,
            var(--bg-glass-heavy),
            var(--bg-glass-medium)
        );

    backdrop-filter: blur(24px);

    -webkit-backdrop-filter: blur(24px);

    border-bottom:
        1px solid var(--border-soft);
}

.site-logo{

    font-size: 1.55rem;

    font-weight: 900;

    letter-spacing: -.06em;

    color: var(--text-primary);
}

.app-content{

    width:100%;

    padding:12px 6px;
}

.panel-page{

    width:100%;

    max-width:860px;

    margin:0 auto;

}

.panel-card{

    width:100%;

    padding:24px;

    border-radius:var(--radius);

    background:var(--bg-card);

    border:
        1px solid var(--border-primary);

}

.auth-page{

    width:100%;

    min-height:80vh;

    display:flex;

    align-items:center;

    justify-content:center;
}

.auth-card{

    width:100%;

    max-width:420px;

    padding:32px;

    display:flex;

    flex-direction:column;

    gap:18px;

    border-radius:var(--radius);

    background:var(--bg-card);

    border:
        1px solid var(--border-primary);
}

.auth-card input{

    width:100%;

    height:52px;

    padding:0 18px;

    border:none;

    outline:none;

    border-radius:16px;

    background:var(--bg-input);

    color:var(--text-primary);
}

.auth-card button{

    width:100%;

    height:52px;

    border:none;

    border-radius:16px;

    background:var(--brand-primary);

    color:var(--text-primary);

    font-weight:700;

    cursor:pointer;

    transition:var(--transition);
}

.auth-card button:hover{

    transform:translateY(-2px);
}

.section-header{

    margin-bottom:24px;
}

.section-header h2{

    font-size:1.4rem;

    font-weight:700;
}

.categories-section,
.shops-section,
.map-section{

    width:100%;

    margin-top:64px;
}

.categories-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(160px,1fr));

    gap:14px;
}

.category-card{

    height:140px;
    
    min-height: 130px;

    padding: 20px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:14px;

    border-radius:var(--radius);

    background:var(--bg-card);

    border:
        1px solid var(--border-primary);

    font-size:1.1rem;

    transition:var(--transition);

    cursor:pointer;
}

.category-card:hover{

    transform:translateY(-4px);

    border-color:var(--border-hover);
}

.shops-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap:14px;
}

.shop-card{

    overflow:hidden;
    
    min-height: 220px;

    border-radius:var(--radius);

    background:var(--bg-card);

    border:
        1px solid var(--border-primary);

    transition:var(--transition);

    cursor:pointer;
}

.shop-card:hover{

    transform:translateY(-4px);
}

.shop-cover{

    position:relative;

    height:120px;

    overflow:hidden;

    background:
        var(--bg-gradient-card);

}

.shop-cover img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.shop-cover::after{

    content:'';

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            var(--bg-glass-heavy),
            var(--bg-glass-soft),
            transparent
        );

}

.shop-content{

    padding: 5px 30px;
}

.shop-content h3{

    font-size:1.2rem;

    margin:0;

    line-height:1.2;
}

.shop-content p{

    font-size:.95rem;

    margin:0;

    color:var(--text-muted);
}

.shop-meta{

    margin-top:8px;

    display:flex;

    align-items:center;

    justify-content:space-between;
}

.shop-status{

    color:var(--success);
}



.shop-page{

    width:100%;
}


.shop-distance{

    font-size:.85rem;

    color:var(--text-faded);

    font-weight:600;

}



.shop-hero-overlay h1{

    font-size:3rem;

    font-weight:800;
}

.shop-hero-overlay p{

    margin-top:8px;

    color:var(--text-secondary);

    font-size:1rem;
}

.shop-products{

    margin-top:24px;
}

.products-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));

    gap:24px;
}

.product-card{

    overflow:hidden;

    border-radius:var(--radius);

    background:var(--bg-card);

    border:
        1px solid var(--border-primary);
}

.product-image{

    width:100%;

    height:180px;

    background:
        linear-gradient(
            135deg,
            var(--bg-surface-3),
            var(--text-dark)
        );
}

.product-content{

    padding:24px;
}

.product-content h3{

    font-size:1.1rem;
}

.product-content p{

    margin-top:10px;

    color:var(--text-muted);
}

.product-content strong{

    display:block;

    margin-top:18px;

    font-size:1.2rem;
}

.product-preorder-badge{

    display:inline-flex;

    align-items:center;

    gap:6px;

    margin:8px 0;

    padding:6px 10px;

    border-radius:999px;

    font-size:.78rem;

    font-weight:600;

    background:
        rgba(
            255,
            166,
            0,
            .12
        );

    border:
        1px solid
        rgba(
            255,
            166,
            0,
            .25
        );

}

.cart-preorder-badge{

    display:inline-flex;

    align-items:center;

    gap:6px;

    margin-top:8px;

    padding:6px 10px;

    border-radius:999px;

    font-size:.75rem;

    font-weight:600;

    background:
        rgba(
            255,
            166,
            0,
            .12
        );

    border:
        1px solid
        rgba(
            255,
            166,
            0,
            .25
        );

}

.site-nav{

    display:flex;

    align-items:center;

    gap:10px;
}

.nav-auth-btn{

    height: 44px;

    padding: 0 18px;

    border-radius: var(--radius-pill);

    border:
        1px solid var(--border-soft);

    background:
        var(--glass-3);

    backdrop-filter: blur(var(--blur-md));

    color:
        var(--text-soft);

    font-size: .92rem;

    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);
}

.nav-auth-btn:hover{

    background:
        var(--glass-6);

    border-color:
        var(--border-hover);

    color:
        var(--text-primary);

    transform:
        translateY(-1px);

    box-shadow:
        var(--shadow-sm);
}

.nav-auth-btn:hover{

    background:
        var(--glass-6);

    border-color:
        var(--border-hover);

    transform:
        translateY(-1px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.22);
}

.nav-auth-btn:active{

    transform:
        scale(.98);
}

@media(max-width: 768px){

    .site-logo{

        font-size: 1.05rem;
    }

    .site-nav{

        gap: 6px;
    }

    

}

.reset-page{

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 32px;
}

.reset-card{

    width: 100%;

    max-width: 460px;

    border:
        1px solid var(--border-glass);

    background:
        var(--bg-card);

    backdrop-filter: blur(18px);

    border-radius: var(--radius-lg);

    padding: 42px;
}

.reset-title{

    font-size: 2rem;

    font-weight: 800;

    margin-bottom: 12px;
}

.reset-subtitle{

    color:
        var(--text-faded);

    margin-bottom: 32px;

    line-height: 1.6;
}

.reset-form{

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.reset-input{

    width: 100%;

    height: 58px;

    border:
        1px solid var(--border-glass);

    background:
        var(--glass-3);

    border-radius: 18px;

    padding: 0 18px;

    color: var(--text-primary);

    font-size: 1rem;
}

.reset-submit{

    width: 100%;

    height: 58px;

    border: none;

    border-radius: 18px;

    background: var(--brand-primary);

    color: var(--text-primary);

    font-size: 1rem;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    cursor: pointer;
}

.reset-requests-list{

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.reset-request-card{

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    padding: 22px;

    border-radius: 24px;

    border:
        1px solid var(--border-glass);

    background:
        var(--bg-card);
}

.reset-request-info span{

    color:
        var(--text-faded);
}

.reset-request-info strong{

    font-size: 1rem;
}

.reset-request-info span{

    color:
        rgba(255,255,255,.62);
}

.reset-request-info small{

    color:
        var(--text-dim);
}

.reset-request-button{

    height: 46px;

    padding: 0 18px;

    border-radius: var(--radius-pill);

    background: var(--brand-primary);

    color: var(--text-primary);

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    white-space: nowrap;
}

@media(max-width: 768px){

    .reset-request-card{

        flex-direction: column;

        align-items: flex-start;
    }

    .reset-request-button{

        width: 100%;
    }

}

.panel-header{

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    margin-bottom: 32px;
}

.panel-role{

    margin-top: 8px;

    color: var(--text-faded);
}

.panel-logout{

    height: 42px;

    padding: 0 18px;

    border-radius: var(--radius-pill);

    border:
        1px solid var(--border-glass);

    background:
        var(--bg-card);

    display: inline-flex;

    align-items: center;

    justify-content: center;
}

.panel-grid{

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));

    gap: 18px;
}

.panel-link-card{

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 24px;

    border-radius: var(--radius);

    border:
        1px solid var(--border-glass);

    background:
        var(--bg-card);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.panel-link-card:hover{

    transform: translateY(-2px);

    border-color:
        var(--border-hover);

    background:
        var(--glass-4);
}

.panel-link-icon{

    width: 54px;
    height: 54px;

    border-radius: 18px;

    background:
        var(--glass-5);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.4rem;
}

.panel-link-card h3{

    font-size: 1rem;

    margin-bottom: 8px;
}

.panel-link-card p{

    color: var(--text-faded);

    line-height: 1.5;
}

.reset-request-actions{

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 12px;
}

.reset-status{

    font-size: .82rem;

    font-weight: 700;

    padding: 6px 12px;

    border-radius: 999px;
}

.reset-status.pendiente{

    background: var(--warning-soft);

    color: var(--warning);
}

.reset-status.enviado{

    background: var(--success-soft);

    color: var(--success);
}

.reset-status.usado{

    background: var(--brand-primary-soft);

    color: var(--brand-blue);
}

.reset-status.expirado{

    background: var(--danger-soft);

    color: var(--danger);
}

.reset-field{
    position:relative;
    width:100%;
}

.reset-toggle{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:none;
    color:var(--text-muted);
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    padding:0;
}

.reset-toggle:hover{
    color:var(--text-primary);
}

.reset-error{
    color:var(--danger);
    font-size:14px;
    margin-top:-6px;
    margin-bottom:8px;
}

.error-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:var(--bg-primary);
}

.error-card{

    width:100%;

    max-width:420px;

    background:var(--bg-surface);

    border:1px solid var(--border-glass);

    border-radius:var(--radius-lg);

    padding:42px 28px;

    text-align:center;
}

.error-code{

    font-size:14px;

    font-weight:700;

    letter-spacing:.12em;

    text-transform:uppercase;

    color:var(--text-muted);

    margin-bottom:18px;
}

.error-title{
    font-size:42px;
    line-height:1;
    font-weight:800;
    color:var(--text-primary);
    margin-bottom:16px;
}

.error-message{

    font-size:16px;

    line-height:1.6;

    color:var(--text-muted);

    margin-bottom:32px;
}

.error-actions{
    display:flex;
    gap:12px;
}

.error-button{
    flex:1;
    height:54px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:700;
    transition:.2s ease;
}

.error-button.primary{

    background:var(--brand-primary);

    color:var(--text-primary);
}

.error-button.secondary{

    background:var(--bg-surface-3);

    color:var(--text-primary);

    border:none;

    cursor:pointer;
}

.error-button:hover{
    transform:translateY(-1px);
}

.cart-sheet{
    display:flex;
    flex-direction:column;
    min-height:100%;
}

.cart-sheet-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    margin-bottom:28px;
}

.cart-sheet-title{
    font-size:2.2rem;
    font-weight:800;
    color:var(--text-primary);
    line-height:1;
    margin-bottom:8px;
}

.cart-sheet-subtitle{

    color:var(--text-faded);

    line-height:1.5;
}
.cart-sheet-close{
    width:42px;
    height:42px;
    border:none;
    border-radius:14px;
    background:var(--glass-5);
    color:var(--text-primary);
    cursor:pointer;
    font-size:1rem;
    transition:.2s ease;
}

.cart-sheet-close:hover{
    background: var(--brand-primary-hover);
}

.cart-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.cart-product{

    display:flex;

    gap:16px;

    padding:18px;

    border-radius:24px;

    border:1px solid var(--border-glass);

    background:var(--bg-card);
}

.cart-product-image{

    width:84px;

    height:84px;

    border-radius:20px;

    flex-shrink:0;

    background:
        linear-gradient(
            135deg,
            var(--bg-surface-3),
            var(--text-dark)
        );
}

.cart-product-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:18px;
}

.cart-product-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
}

.cart-product-top h3{
    font-size:1.05rem;
    margin-bottom:6px;
    color:var(--text-primary);
}

.cart-product-top p{

    color:var(--text-faded);
}

.cart-remove{
    width:34px;
    height:34px;
    border:none;
    border-radius:12px;
    background:var(--glass-5);
    color:var(--text-primary);
    cursor:pointer;
}

.cart-product-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.cart-quantity{
    display:flex;
    align-items:center;
    gap:10px;
}

.qty-btn{
    width:34px;
    height:34px;
    border:none;
    border-radius:12px;
    background:var(--glass-6);
    color:var(--text-primary);
    cursor:pointer;
    font-size:1rem;
    font-weight:700;
}

.qty-input{
    width:54px;
    height:34px;
    border:none;
    border-radius:10px;
    background:var(--glass-3);
    color:var(--text-primary);
    text-align:center;
    outline:none;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.cart-line-total{
    font-size:1rem;
    color:var(--text-primary);
}

.cart-footer{

    position:sticky;

    bottom:-18px;

    margin-top:28px;

    padding-top:24px;

    background:
        linear-gradient(
            to top,
            var(--bg-overlay-ultra),
            var(--bg-overlay-heavy),
            transparent
        );

    backdrop-filter:blur(var(--blur-md));
}

.cart-total-row{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:18px;

    color:var(--text-primary);

    font-size:1.1rem;
}

.cart-checkout-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:18px;

    background:var(--brand-primary);

    color:var(--text-primary);

    font-size:1rem;

    font-weight:800;

    cursor:pointer;

    transition:.2s ease;
}

.cart-checkout-btn:hover{
    transform:translateY(-1px);
}

.cart-empty{
    min-height:50vh;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.cart-empty-icon{
    font-size:4rem;
    margin-bottom:18px;
}

.cart-empty h2{
    font-size:1.6rem;
    margin-bottom:10px;
}

.cart-empty p{

    color:var(--text-faded);
}

.add-cart-btn:hover{
    transform:translateY(-1px);
}

.mini-cart{
    position:fixed;

    left:50%;
    bottom:24px;

    transform:
        translateX(-50%)
        translateY(120px);

    z-index:9995;

    width:calc(100% - 32px);
    max-width:480px;

    transition:
        transform .28s cubic-bezier(.2,.8,.2,1);
}

.mini-cart.active{
    transform:
        translateX(-50%)
        translateY(0);
}

.mini-cart-button{

    width:100%;

    height:64px;

    border:none;

    border-radius:22px;

    background:var(--brand-primary);

    color:var(--text-primary);

    font-size:1rem;

    font-weight:800;

    box-shadow:var(--shadow-lg);

    cursor:pointer;
}

.mini-cart-button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}

.qty-btn i{
    font-size:.78rem;
}

.cart-remove i,
.cart-sheet-close i{
    font-size:.9rem;
}

.cart-product-image i{

    font-size:1.4rem;

    color:var(--text-dim);
}

.cart-product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cart-product-image i{
    font-size:1.4rem;
    color:rgba(255,255,255,.28);
}

.mini-cart-button{

    backdrop-filter:blur(var(--blur-md));

    background:var(--brand-primary);
}

.cart-header-btn{

    position:relative;

    width:46px;

    height:46px;

    border:none;

    border-radius:16px;

    background:var(--glass-3);

    color:var(--text-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.2s ease;
}

.cart-header-btn:hover{

    background:var(--glass-6);
}

.cart-header-btn:hover{
    background: var(--brand-primary-hover);
}

.cart-header-btn i{
    font-size:1rem;
}

.cart-header-count{

    position:absolute;

    top:-5px;
    right:-5px;

    min-width:20px;
    height:20px;

    padding:0 5px;

    border-radius:var(--radius-pill);

    background:var(--brand-primary);

    color:var(--text-primary);

    font-size:.68rem;

    font-weight:800;

    display:flex;

    align-items:center;

    justify-content:center;
}

.site-footer{

    margin-top: 90px;

    padding:
        72px
        32px
        42px;

    border-top:
        1px solid var(--border-soft);

    background:
        linear-gradient(
            180deg,
            transparent,
            var(--glass-3)
        );
}

.footer-top{

    width:100%;

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:32px;

    flex-wrap:wrap;
}

.footer-brand strong{

    display:block;

    font-size:1rem;

    margin-bottom:10px;
}

.footer-brand p{

    color:var(--text-muted);

    line-height:1.6;
}

.footer-links{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;
}

.footer-links a{

    color:var(--text-faded);

    font-size:.95rem;

    transition:.2s ease;
}

.footer-links a:hover{

    color:var(--text-primary);
}

.footer-bottom{

    margin-top:42px;

    padding-top:24px;

    border-top:
        1px solid var(--border-soft);

    color:var(--text-dim);

    font-size:.9rem;
}

@media(max-width:768px){

    .site-footer{

        margin-top:80px;
    }

    .footer-top{

        flex-direction:column;
    }

    .footer-links{

        gap:14px;
    }
}

.shop-map-section{

    padding:
        0 24px
        24px;

}

.shop-map{

    width: 100%;

    height: 320px;

    border-radius: 28px;

    overflow: hidden;

    border:
        1px solid var(--border-glass);

    box-shadow:
        var(--shadow-lg);

}

/*
|--------------------------------------------------------------------------
| PANEL ORDERS
|--------------------------------------------------------------------------
*/

.panel-orders-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-top:24px;

}

.panel-order-card{

    padding:20px;

    border-radius:24px;

    background:
        var(--glass-3);

    border:
        1px solid var(--border-glass);

    backdrop-filter: blur(16px);

}

.panel-order-top{

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:16px;

    margin-bottom:18px;

}

.panel-order-top h3{

    margin:0;

    font-size:1.1rem;

}

.panel-order-top p{

    margin:6px 0 0;

    color:var(--text-soft);

}

.order-status{

    padding:8px 14px;

    border-radius:var(--radius-pill);

    font-size:.82rem;

    text-transform:capitalize;

    font-weight:600;

}

.status-pending{

    background:
        rgba(255,193,7,.12);

    color:var(--warning);

}

.status-accepted{

    background:
        rgba(33,150,243,.12);

    color:#42a5f5;

}

.status-preparing{

    background:
        rgba(156,39,176,.12);

    color:#ba68c8;

}

.status-delivering{

    background:
        rgba(0,188,212,.12);

    color:#26c6da;

}

.status-completed{

    background:
        var(--success-soft);

    color:var(--success);

}

..status-cancelled{

    background:
        var(--danger-soft);

    color:var(--danger);

}

.panel-order-info{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:14px;

    margin-bottom:20px;

}

.panel-order-info div{

    display:flex;

    flex-direction:column;

    gap:6px;

}

.panel-order-info span{

    color:var(--text-dim);

    font-size:.82rem;

}

.panel-order-footer{

    display:flex;

    gap:12px;

}

.panel-order-btn{

    flex:1;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:46px;

    border-radius:14px;

    text-decoration:none;

    border:none;

    cursor:pointer;

    font-weight:600;

    background:var(--brand-primary);

    color:var(--text-primary);

}

.panel-order-btn.secondary{

    background:
        var(--glass-6);

    color:var(--text-primary);

}

/*
|--------------------------------------------------------------------------
| PANEL SHOP
|--------------------------------------------------------------------------
*/

.panel-shop-nav{

    display:flex;

    gap:12px;

    margin-top:28px;

    margin-bottom:28px;

    overflow:auto;

    padding-bottom:4px;

}

.panel-shop-tab{

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:42px;

    padding:0 18px;

    border-radius:var(--radius-pill);

    background:
        var(--glass-4);

    border:
        1px solid var(--border-glass);

    color:var(--text-primary);

    text-decoration:none;

    white-space:nowrap;

    font-size:.92rem;

}

.panel-shop-tab.active{

    background:var(--brand-primary);

    color:var(--text-primary);

    font-weight:600;

}

.panel-shop-status{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:24px;

    padding:24px;

    border-radius:24px;

    background:
        var(--glass-3);

    border:
        1px solid var(--border-glass);

}

.panel-shop-status h3{

    margin:0 0 10px;

}

.panel-shop-status p{

    margin:0;

    color:var(--text-soft);

    max-width:420px;

}

.shop-status-btn{

    min-width:180px;

    min-height:54px;

    border:none;

    border-radius:18px;

    cursor:pointer;

    font-size:1rem;

    font-weight:700;

}

.shop-status-btn.open{

    background:var(--brand-primary);

    color:var(--text-primary);

}

.shop-status-btn.closed{

    background:
        var(--glass-6);

    color:var(--text-primary);

}

.shop-card.closed{

    opacity:.72;

}

.shop-status{

    display:flex;

    align-items:center;

    gap:8px;

}

.shop-status .fa-circle{

    font-size:.58rem;

}

.shop-card.closed .shop-status{

    color:var(--danger);

}

.category-card i{

    font-size:1.4rem;

}

/*
|--------------------------------------------------------------------------
| PANEL PRODUCTS
|--------------------------------------------------------------------------
*/

.panel-products-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.panel-product-card{

    display:flex;

    gap:18px;

    padding:18px;

    border-radius:24px;

    background:
        var(--glass-3);

    border:
        1px solid var(--border-glass);

}

.panel-product-image{

    width:104px;

    min-width:104px;

    aspect-ratio:1/1;

    border-radius:22px;

    overflow:hidden;

    background:
        var(--glass-3);

    border:
        1px solid var(--border-glass);

}

.panel-product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.panel-product-content{
    
    color:var(--text-primary);

    flex:1;

}

.panel-product-content h3{

    margin:0 0 10px;

}

.panel-product-content p{

    margin:0 0 16px;

    color:var(--text-soft);

}

.panel-product-meta{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:16px;

}

.product-status{

    padding:8px 14px;

    border-radius:var(--radius-pill);

    font-size:.82rem;

}

.product-status.available{

    background:
        var(--success-soft);

    color:var(--success);

}

.product-status.unavailable{

    background:
        var(--danger-soft);

    color:var(--danger);

}

/*
|--------------------------------------------------------------------------
| PANEL FORM
|--------------------------------------------------------------------------
*/

.panel-actions{

    display:flex;

    justify-content:flex-end;

    margin-bottom:24px;

}

.panel-primary-btn{

    display:flex;

    align-items:center;

    gap:10px;

    min-height:48px;

    padding:0 18px;

    border-radius:16px;

    background:var(--brand-primary);

    color:var(--text-primary);

    text-decoration:none;

    font-weight:700;

}

.panel-form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.panel-form-group{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.panel-form-group label{

    font-weight:600;

}

.panel-form-group input,
.panel-form-group textarea{

    width:100%;

    border:none;

    outline:none;

    border-radius:18px;

    padding:16px;

    background:
        var(--glass-4);

    color:var(--text-primary);

}

.panel-checkbox{

    display:flex;

    align-items:center;

    gap:12px;

}

.panel-submit-btn{

    min-height:56px;

    border:none;

    border-radius:18px;

    background:var(--brand-primary);

    color:var(--text-primary);

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

}

.panel-submit-btn-sec{

    display:flex;

    align-items:left;

    justify-content:left;

    gap:8px;

    background:none;

    border:none;

    color:var(--text-faded);

    font-weight:600;

    cursor:pointer;

    transition:.2s ease;

}

.panel-submit-btn-sec-b{

    display:flex;

    align-items:center;

    justify-content:center;

    width:100%;

    min-height:24px;

    background:none;

    border:none;

    color:var(--text-faded);

    font-weight:600;

    text-align:center;

}

.panel-submit-btn-sec:hover, .panel-submit-btn-sec-b:hover{

    color:var(--brand-primary);

}

/*
|--------------------------------------------------------------------------
| PRODUCT IMAGE UPLOAD
|--------------------------------------------------------------------------
*/

.product-image-upload{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.product-preview{

    width:160px;

    aspect-ratio:1/1;

    border-radius:24px;

    object-fit:cover;

    background:
        var(--glass-3);

    border:
        1px solid var(--border-glass);

    display:none;

}

.product-preview.active{

    display:block;

}

.product-upload-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    width:220px;

    min-height:52px;

    border-radius:18px;

    background:
        var(--glass-5);

    border:
        1px solid var(--border-glass-strong);

    cursor:pointer;

    font-weight:600;

}

/*
|--------------------------------------------------------------------------
| PANEL PRODUCTS
|--------------------------------------------------------------------------
*/

.panel-product-card{

    display:flex;

    gap:18px;

    align-items:center;

}

.panel-product-image{

    width:104px;

    min-width:104px;

    aspect-ratio:1/1;

    border-radius:22px;

    overflow:hidden;

    background:
        var(--glass-3);

    border:
        1px solid var(--glass-5);

}

.panel-product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.panel-product-placeholder{

    width:100%;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:.25;

    font-size:1.4rem;

}

.panel-product-content{

    flex:1;

    display:flex;

    flex-direction:column;

    gap:10px;

}

.panel-product-actions{

    display:flex;

    gap:10px;

    margin-top:8px;

}

.panel-product-btn{

    width:42px;

    height:42px;

    border:none;

    border-radius:14px;

    background:
        var(--glass-5);

    color:var(--text-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    text-decoration:none;

}

.product-image{

    width:100%;

    aspect-ratio:1/1;

    border-radius:20px;

    overflow:hidden;

    background:
        var(--glass-3);

    display:flex;

    align-items:center;

    justify-content:center;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.product-image i{

    font-size:1.6rem;

    opacity:.35;

}

.cart-product-image{

    width:78px;

    height:78px;

    border-radius:18px;

    overflow:hidden;

    background:
        var(--glass-3);

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.cart-product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.cart-product-image i{

    font-size:1.4rem;

    opacity:.35;

}

.cart-footer .auth-secondary-button{

    width:100%;

    min-height:58px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-weight:700;

    background:var(--brand-primary);

    color:var(--text-primary);

    margin-top:18px;

}

.cart-footer .auth-secondary-button:hover{

    transform:translateY(-2px);

    color: var(--text-primary);

}

.order-timeline{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-top:24px;

}

.order-step{

    display:flex;

    align-items:center;

    gap:14px;

    opacity:.35;

    transition:.2s ease;

}

.order-step.completed{

    opacity:1;

}

.order-step.current{

    opacity:1;

}

.order-step-dot{

    width:18px;
    height:18px;

    border-radius:var(--radius-pill);

    background:
        var(--glass-highlight);

    transition:.2s ease;

}

.order-step.completed .order-step-dot{

    background:var(--success);

    box-shadow:
        0 0 18px
        var(--success-soft);

}

.order-step.current .order-step-dot{

    background:var(--brand-primary);

    box-shadow:
        0 0 20px
        rgba(255,255,255,.4);

}

.order-step span{

    font-size:15px;

    font-weight:700;

}

.order-status{

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:110px;

    height:42px;

    padding:0 18px;

    border-radius:var(--radius-pill);

    font-size:13px;
    font-weight:800;

    letter-spacing:.02em;

    transition:.2s ease;

}

.status-pending{

    background:#2c2106;
    color:#ffcf4d;

}

.status-accepted{

    background:#0d2c1b;
    color:#6dffb1;

}

.status-preparing{

    background:#241136;
    color:#d58cff;

}

.status-ready{

    background:#0f2f3a;
    color:#7fe7ff;

}

.status-delivering{

    background:#18263d;
    color:#9bc3ff;

}

.status-completed{

    background:var(--success-soft);

    color:var(--success);

}

.status-cancelled{

    background:var(--danger-soft);

    color:var(--danger);

}

.order-main-action{

    background:
        linear-gradient(
            180deg,
            var(--text-primary),
            var(--text-secondary)
        ) !important;

    color:var(--text-dark) !important;

    box-shadow:
        0 12px 40px
        var(--glass-shadow);

}

.order-main-action:hover{

    transform:
        translateY(-2px)
        scale(1.01);

}

/*
|--------------------------------------------------------------------------
| ORDERS BADGE
|--------------------------------------------------------------------------
*/

.orders-badge{

    min-width:32px;
    height:32px;

    padding:0 10px;

    border-radius:var(--radius-pill);

    background:var(--danger);

    color:var(--text-primary);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:.9rem;
    font-weight:800;

    box-shadow:
        0 0 24px
        var(--danger-soft);

}

.panel-orders-title-row{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:16px;

}

.panel-orders-badge{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:54px;

    height:36px;

    padding:0 16px;

    border-radius:999px;

    background:
        linear-gradient(
            180deg,
            #ff3b30,
            #c1121f
        );

    color:var(--text-primary);

    font-size:.88rem;

    font-weight:800;

    letter-spacing:.02em;

    box-shadow:
        0 10px 30px
        rgba(255,59,48,.25);

}

.panel-nav-btn{

    position:relative;

}

/*
|--------------------------------------------------------------------------
| SHOP SHELL
|--------------------------------------------------------------------------
*/

.shop-header{

    position:sticky;

    top:0;

    z-index:40;

    display:grid;

    grid-template-columns:
        1fr auto;

    align-items:center;

    gap:1rem;

    padding:
        1rem
        1.4rem;

    background:
        var(--bg-overlay-heavy);

    backdrop-filter:
        blur(var(--blur-md));

    border-bottom:
        1px solid var(--glass-4);

}

.shop-header{

    display:none;

}

.shop-header-info{

    min-width:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:.18rem;

}

.shop-header-label{

    font-size:.68rem;

    font-weight:700;

    letter-spacing:.12em;

    text-transform:uppercase;

    color:var(--text-dim);

}

.shop-header-title{

    font-size:1.1rem;

    font-weight:800;

    letter-spacing:-.03em;

    color:var(--text-primary);

    line-height:1.1;

}

.shop-header-actions{

    display:flex;

    align-items:center;

    justify-content:right;

    flex-shrink:0;

}

.shop-header-icon{

    width:48px;

    height:48px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        var(--glass-4);

    border:
        1px solid var(--border-glass);

    color:var(--text-primary);

    transition:.2s ease;

}

.shop-header-icon:hover{

    background:
        var(--glass-8);

    transform:
        translateY(-1px);

}

.shop-bottom-nav{

    position: fixed;

    left: 50%;
    bottom: 14px;

    transform:
        translateX(-50%);

    width:
        calc(100% - 28px);

    max-width: 420px;

    height: 64px;

    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 24px;

    background:
        var(--bg-glass-heavy);

    border:
        1px solid var(--border-soft);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        var(--shadow-lg);

    z-index: 9999;
}

.bottom-nav-item{

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color:var(--text-dim);

    text-decoration: none;

    transition:
        all 0.18s ease;
}

.bottom-nav-item i{

    font-size: 20px;
}

.bottom-nav-item span{

    display: none;
}

.bottom-nav-item.active{

    background:
        var(--glass-6);

    color: var(--text-primary);

    box-shadow:
        inset 0 1px 0 var(--glass-4);

}

.bottom-nav-item:active{

    transform:
        scale(0.94);
}


.shop-bottom-link.shop-bottom-link{

    position:relative;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:6px;

    border-radius:20px;

    color:var(--text-dim);

    transition:.22s ease;

    text-decoration:none;

    overflow:hidden;

}

.shop-bottom-link i{

    font-size:1rem;

    transition:.22s ease;

}

.shop-bottom-link span{

    font-size:.72rem;

    font-weight:700;

    letter-spacing:.01em;

    transition:.22s ease;

}

.shop-bottom-link.active{

    background:
        linear-gradient(
            180deg,
            var(--glass-6),
            rgba(255,255,255,.03)
        );

    color:var(--text-primary);

}

.shop-bottom-link.active i{

    transform:
        translateY(-1px)
        scale(1.05);

}

body.shop-layout .app-content{

    width:100%;

    padding:
        14px
        10px
        80px;

}

body.shop-layout .site-footer{

    display:none;

}

@media(max-width:768px){

    .shop-header{

        padding:
            max(env(safe-area-inset-top), 10px)
            18px
            14px;

    }

    .shop-bottom-nav{

        padding:
            8px
            14px
            calc(8px + env(safe-area-inset-bottom));

    }

}

/*
|--------------------------------------------------------------------------
| SHOP MOBILE REFINEMENT
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

    .panel-shop-nav{

        gap:10px;

        overflow-x:auto;

        flex-wrap:nowrap;

        padding-bottom:4px;

        scrollbar-width:none;

    }

    .panel-shop-nav::-webkit-scrollbar{

        display:none;

    }

    .panel-shop-tab{

        flex:none;

        min-width:max-content;

        padding:0 22px;

    }

    .panel-shop-status{

        flex-direction:column;

        align-items:stretch;

        gap:22px;

    }

    .panel-shop-status-info{

        width:100%;

    }

    .panel-shop-status h3{

        font-size:1.5rem;

        line-height:1.1;

    }

    .panel-shop-status p{

        max-width:none;

        font-size:1rem;

        line-height:1.5;

    }

    .shop-status-btn{

        width:100%;

        min-height:62px;

        border-radius:22px;

        font-size:1.1rem;

    }

    .panel-order-info{

        grid-template-columns:1fr;

        gap:18px;

    }

    .panel-order-footer{

        flex-direction:column;

    }

}

/*
|--------------------------------------------------------------------------
| SHOP SETTINGS
|--------------------------------------------------------------------------
*/

.shop-settings-page{

    width:100%;

}

.shop-settings-card{

    display:flex;

    flex-direction:column;

    gap:26px;

}

.shop-settings-header{

    margin-bottom:4px;

}

.shop-settings-label{

    display:inline-block;

    margin-bottom:10px;

    font-size:.78rem;

    font-weight:800;

    letter-spacing:.08em;

    text-transform:uppercase;

    color:var(--text-dim);

}

.shop-settings-group{

    display:flex;

    flex-direction:column;

    gap:18px;

    padding:24px;

    border-radius:32px;

    background:
        var(--glass-2);

    border:
        1px solid var(--glass-4);

}

.shop-settings-group-head{

    display:flex;

    flex-direction:column;

    gap:6px;

}

.shop-settings-group-head h2{

    font-size:1.15rem;

    font-weight:800;

    color:var(--text-primary);

}

.shop-settings-group-head p{

    color:var(--text-faded);

    line-height:1.5;

}

.shop-settings-item{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:24px;

}

.shop-settings-item strong{

    display:block;

    margin-bottom:6px;

    font-size:1rem;

    color:var(--text-primary);

}

.shop-settings-item p{

    color:
        rgba(255,255,255,.5);

    line-height:1.5;

}

.shop-settings-button{

    width:100%;

    min-height:58px;

    border:none;

    border-radius:22px;

    background:
        var(--glass-5);

    color:var(--text-primary);

    font-size:1rem;

    font-weight:700;

}

.shop-settings-button.disabled{

    opacity:.45;

}

@media(max-width:768px){

    .shop-settings-group{

        padding:22px;

        border-radius:28px;

    }

    .shop-settings-item{

        flex-direction:column;

        align-items:stretch;

    }

}

/*
|--------------------------------------------------------------------------
| SHOP HOURS
|--------------------------------------------------------------------------
*/

.shop-hours-form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.shop-hours-list{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.shop-hour-row{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:22px;

    padding:18px;

    border-radius:22px;

    background:
        var(--glass-3);

    border:
        1px solid var(--glass-4);

}

.shop-hour-day strong{

    font-size:1rem;

    color:var(--text-primary);

}

.shop-hour-controls{

    display:flex;

    align-items:center;

    gap:14px;

    flex-wrap:wrap;

}

.shop-hour-toggle{

    display:flex;

    align-items:center;

    gap:10px;

    margin-right:10px;

    color:var(--text-soft);

    font-size:.92rem;

}

.shop-hour-toggle input{

    width:18px;

    height:18px;

}

.shop-hour-input{

    width:120px;

    height:52px;

    border:none;

    border-radius:16px;

    padding:0 16px;

    background:
        var(--glass-4);

    color:var(--text-primary);

    font-size:1rem;

}

.shop-hour-separator{

    color:var(--text-dim);

    font-weight:700;

}

.shop-hours-submit{

    width:100%;

    min-height:58px;

    border:none;

    border-radius:22px;

    background:var(--brand-primary);

    color:var(--text-primary);

    font-size:1rem;

    font-weight:800;

    cursor:pointer;

}

.shop-danger-btn{
    
    width:100%;

    min-height:58px;

    border:none;

    border-radius:22px;

    

    

    font-size:1rem;

    font-weight:800;

    cursor:pointer;

    
    padding:16px;

    cursor:pointer;

    font-weight:700;

    color:#fff;

    background:#dc2626;

}

@media(max-width:768px){

    .shop-hour-row{

        flex-direction:column;

        align-items:stretch;

    }

    .shop-hour-controls{

        width:100%;

    }

    .shop-hour-input{

        flex:1;

        min-width:0;

    }

}

/*
|--------------------------------------------------------------------------
| MAP SHOPS
|--------------------------------------------------------------------------
*/

.map-shop-marker{

    width:22px;
    height:22px;
    border-radius:50%;

    border:
        3px solid var(--text-primary);

    cursor:pointer;

    box-shadow:
        var(--shadow-md);

    transition:.2s ease;

}

.map-shop-marker.open{

    background:var(--local-green);

}

.map-shop-marker.closed{

    background:var(--local-pink);

}

.map-shop-marker:hover{

    transform:scale(1.08);

}

.mapboxgl-popup-content{

    padding:0 !important;

    border-radius:22px !important;

    overflow:hidden;

    background:var(--bg-surface) !important;

    box-shadow:
        var(--shadow-lg);

}

.mapboxgl-popup-tip{
    
    background:var(--bg-surface) !important;

    border-top-color:var(--bg-surface) !important;

}

.map-shop-popup{

    min-width:260px;

    padding:20px;

    display:flex;

    flex-direction:column;

    gap:5px;

}


.map-shop-popup strong{

    font-size:1.05rem;

    font-weight:800;

    line-height:1.3;

    color:var(--text-primary);

}

.map-shop-category{

    display:block;

    font-size:.82rem;

    color:var(--text-faded);

    line-height:1.4;

}

.map-shop-status{

    font-size:.85rem;

    font-weight:700;

}

.map-shop-status.open{

    color:var(--success);

}

.map-shop-status.closed{

    color:var(--danger);

}

.map-shop-link{

    width:95%;

    min-height:44px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--brand-primary);

    color:var(--text-primary);

    font-weight:800;

    text-decoration:none;

    transition:.2s ease;

}

.map-shop-link.closed{

    background:
        var(--glass-5);

    color:
        var(--text-soft);

    border:
        1px solid var(--glass-border);

}

.map-shop-distance{

    display:block;

    font-size:.82rem;

    color:var(--text-soft);

}

.home-map-search{

    margin-bottom:12px;

}

.home-map-search input{

    width:100%;

    height:48px;

    border:none;

    border-radius:14px;

    padding:0 16px;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:.95rem;

}

.home-map-search input:focus{

    outline:none;

}

.map-shop-logo{
    width:48px;
    height:48px;
    border-radius:12px;
    object-fit:cover;
    margin-bottom:10px;
    display:block;
}

/*
|--------------------------------------------------------------------------
| SHOP COVER
|--------------------------------------------------------------------------
*/

.shop-cover-settings{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.shop-cover-preview{

    position:relative;

    width:100%;

    aspect-ratio:16/9;

    border-radius:34px;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            var(--bg-surface-2),
            var(--bg-surface)
        );

    background-size:cover;

    background-position:center;

    border:
        1px solid var(--border-glass);

}

.shop-cover-preview::after{

    content:'';

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.45),
            rgba(0,0,0,.08)
        );

}

.shop-cover-placeholder{

    position:absolute;

    inset:0;

    z-index:2;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:14px;

    color:var(--text-dim);

    pointer-events:none;

}

.shop-cover-placeholder i{

    font-size:2rem;

}

.shop-cover-placeholder span{

    font-size:.95rem;

    font-weight:700;

}

.shop-cover-form{

    display:flex;

    align-items:center;

    gap:16px;

    flex-wrap:wrap;

}

.shop-cover-upload{

    min-height:56px;

    padding:0 24px;

    border-radius:18px;

    display:flex;

    align-items:center;

    gap:12px;

    background:var(--glass-5);

    border:
        1px solid var(--border-glass);

    color:var(--text-primary);

    cursor:pointer;

    font-weight:700;

}

.shop-cover-upload input{

    display:none;

}

.shop-cover-submit{

    min-height:56px;

    padding:0 28px;

    border:none;

    border-radius:18px;

    background:var(--brand-primary);

    color:var(--text-primary);

    font-weight:800;

    cursor:pointer;

}

.shop-logo-preview{
    width:120px;
    height:120px;

    margin:0 auto 16px;

    border-radius:24px;

    overflow:hidden;

    background:var(--bg-surface-2);

    border:1px solid var(--glass-border);
}

.shop-logo-preview img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.shop-logo-form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.shop-logo-upload{
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-height:52px;

    border-radius:16px;

    background:var(--bg-surface-2);

    border:1px dashed var(--glass-border);

    color:var(--text-primary);

    cursor:pointer;

    transition:.2s;
}

.shop-logo-upload:hover{
    border-color:var(--local-cyan);
}

.shop-logo-upload input{
    display:none;
}

.shop-logo-upload i{
    font-size:1rem;
    color:var(--local-cyan);
}

.shop-logo-upload span{
    font-size:.95rem;
    font-weight:600;
}

.shop-logo-submit{
    height:52px;

    border:none;

    border-radius:16px;

    background:var(--local-cyan);

    color:#fff;

    font-weight:700;

    cursor:pointer;

    transition:.2s;
}

.shop-logo-submit:hover{
    transform:translateY(-1px);
}

@media(max-width:768px){

    .shop-cover-preview{

        border-radius:28px;

    }

    .shop-cover-form{

        flex-direction:column;

        align-items:stretch;

    }

    .shop-cover-submit{

        width:100%;

    }

}

/*
|--------------------------------------------------------------------------
| SHOP SESSION ACTIONS
|--------------------------------------------------------------------------
*/

.shop-session-actions{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    margin-top:18px;

    flex-wrap:wrap;

}

.shop-session-link{

    min-height:48px;

    padding:0 18px;

    border-radius:16px;

    display:flex;

    align-items:center;

    gap:10px;

    background:var(--glass-4);

    border:
        1px solid var(--border-glass);

    color:var(--text-soft);

    text-decoration:none;

    font-size:.92rem;

    font-weight:700;

    transition:.2s ease;

}

.shop-session-link:hover{

    transform:translateY(-1px);

    background:var(--glass-6);

}

.shop-session-link.danger{

    color:var(--danger);

}

/*
|--------------------------------------------------------------------------
| SHOP HEADER STATUS
|--------------------------------------------------------------------------
*/

.shop-header-status{

    font-size:.82rem;

    color:var(--text-faded);

    font-weight:600;

}

/*
|--------------------------------------------------------------------------
| SHOP EXPERIENCE V2
|--------------------------------------------------------------------------
*/

.shop-hero{

    width:100%;

    border-radius:var(--radius);

    overflow:hidden;

    position:relative;

    background:
        var(--bg-gradient-hero);

    min-height:300px;
    
    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;
    
    padding: 20px;

}

.shop-hero::before{

    content:'';

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.82),
            rgba(0,0,0,.2)
        );

}

.shop-hero-overlay{

    position:relative;

    z-index:2;

    padding:24px;

    display:flex;

    flex-direction:column;

    gap:18px;

    height:100%;

}

.shop-hero-top{

    display:flex;

    justify-content:flex-end;

}

.hero-status{

    display:inline-flex;

    align-items:center;

    gap:8px;

    min-height:42px;

    padding:0 16px;

    border-radius:var(--radius-pill);

    font-size:.9rem;

    font-weight:700;

    backdrop-filter:var(--blur-md);

}

.hero-inline-status.open{

    color:var(--success);

}

.hero-inline-status.closed{

    color:var(--danger);

}
.hero-status .fa-circle{

    font-size:.55rem;

}

.shop-hero-bottom h1{

    font-size:clamp(
        2.4rem,
        8vw,
        4.5rem
    );

    line-height:.95;

    font-weight:900;

    letter-spacing:-.05em;

}

.hero-inline-status{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:10px;

    font-size:.92rem;

    font-weight:700;

}

.hero-inline-status .fa-circle{

    font-size:.55rem;

}

.shop-hero-bottom p{

    margin-top:18px;

    max-width:620px;

    font-size:1.05rem;

    line-height:1.6;

    color:var(--text-soft);

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

.shop-hero-meta{

    margin-top:24px;

    display:flex;

    align-items:center;

    gap:14px;

    flex-wrap:wrap;

}

.shop-hero-meta span{

    min-height:42px;

    padding:0 16px;

    border-radius:var(--radius-pill);

    display:flex;

    align-items:center;

    gap:10px;

    background:var(--glass-6);

    backdrop-filter:var(--blur-md);

    font-size:.9rem;

    font-weight:700;

}

.shop-actions{
    
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 10px;

    margin-top:16px;

    flex-wrap:wrap;
    
}

.shop-action-btn{

    min-height:54px;

    padding:0 22px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    background:var(--glass-4);

    border:1px solid var(--border-glass);

    font-weight:700;

    transition:.2s ease;

}

.shop-action-btn:hover{

    transform:translateY(-2px);

    background:var(--glass-6);

}

.product-top{

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:16px;

    margin-bottom:20px;

}

.product-top{
    display:flex;
    justify-content:space-between;
    gap:16px;
}

.product-top > div:first-child{
    flex:1;
    min-width:0;
}

.product-top > div:last-child{
    flex-shrink:0;
}

.product-card{

    transition:.25s ease;

}

.product-card:hover{

    transform:translateY(-4px);

    border-color:var(--border-hover);

}


@media(max-width:768px){
    
    .shop-hero{

        min-height:560px;

    }
    
    .shop-hero-bottom p{

        -webkit-line-clamp:4;

    }


    .shop-hero-overlay{

        padding:20px 12px;

    }

}

/*
|--------------------------------------------------------------------------
| HOME HERO V2
|--------------------------------------------------------------------------
*/

.shops-highlight-row{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:14px;

    margin-bottom:26px;

}

.shops-highlight-card{

    min-height:110px;

    padding:22px;

    border-radius:28px;

    background:var(--glass-3);

    border:
        1px solid var(--border-glass);

    display:flex;

    flex-direction:column;

    justify-content:center;

    gap:10px;

}

.shops-highlight-card strong{

    font-size:1.4rem;

    font-weight:900;

    letter-spacing:-.03em;

}

.shops-highlight-card span{

    color:var(--text-faded);

    line-height:1.5;

}

@media(max-width:768px){

    .shops-highlight-row{

        grid-template-columns:1fr;

    }

}

.home-map-trigger{

    margin-bottom:34px;

    display:flex;

    justify-content:center;

}

.home-map-btn{

    min-height:58px;

    padding:0 24px;

    border:none;

    border-radius:var(--radius-pill);

    background:var(--brand-primary);

    color:var(--text-primary);

    font-size:1rem;

    font-weight:800;

    display:flex;

    align-items:center;

    gap:12px;

    cursor:pointer;

}

.map-sheet{

    display:flex;

    flex-direction:column;

    gap:24px;

    height:100%;

}

#home-map{

    flex:1;

    width:100%;

    min-height:520px;

    border-radius:28px;

    overflow:hidden;

}

.map-sheet-header{

    margin-bottom:22px;

}

.map-sheet-header h1{

    font-size:2rem;

    font-weight:900;

    letter-spacing:-.04em;

}

.map-sheet-header p{

    margin-top:8px;

    color:var(--text-faded);

}

/*
|--------------------------------------------------------------------------
| PRODUCT EXPERIENCE V2
|--------------------------------------------------------------------------
*/

.products-grid{

    display:grid;

    gap:18px;

}

.product-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    background:var(--glass-3);

    border:
        1px solid var(--border-glass);

    transition:.22s ease;

}

.product-card:hover{

    transform:translateY(-3px);

    border-color:var(--border-glass-strong);

}

.product-image{

    position:relative;

    height:220px;

    overflow:hidden;

    background:var(--glass-2);

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.product-image::after{

    content:'';

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.45),
            transparent
        );

}

.product-image-placeholder{

    width:100%;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:58px;

    opacity:.18;

}

.product-badge{

    position:absolute;

    top:16px;

    left:16px;

    z-index:3;

    min-height:38px;

    padding:0 14px;

    border-radius:var(--radius-pill);

    display:flex;

    align-items:center;

    font-size:.82rem;

    font-weight:800;

    backdrop-filter:var(--blur-md);

}

.product-badge.unavailable{

    background:
        var(--danger-soft);

    color:var(--danger);

}

.product-content{

    padding:22px;

}

.product-content h3{

    font-size:1.2rem;

    line-height:1.1;

    margin-bottom:10px;

    letter-spacing:-.02em;

}

.product-content p{

    color:var(--text-faded);

    line-height:1.5;

    margin-bottom:18px;

}

.product-top strong{

    margin:0;

    white-space:nowrap;
    
    letter-spacing:-.03em;
    
    font-size:1.5rem;

    font-weight:900;

}

.add-cart-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    width: 100%;

    min-height: 54px;

    height: 44px;

    padding: 0 18px;

    border: none;

    border-radius: 18px;

    background: var(--brand-primary);

    color: var(--text-primary);

    font-weight: 800;

    cursor: pointer;

    transition: .2s ease;

    gap: 10px;

}

.add-cart-btn.disabled{

    background:
        var(--glass-5);

    color:
        var(--text-dim);

    border:
        1px solid var(--glass-4);

    cursor:not-allowed;

    box-shadow:none;

}

.add-cart-btn.disabled:hover{

    transform:none;

}

.add-cart-btn:hover{

    transform:translateY(-1px);

}

.panel-form-group select{

    width:100%;

    min-height:54px;

    padding:0 18px;

    border:1px solid var(--glass-4);

    border-radius:18px;

    background:var(--bg-input);

    color:var(--text-primary);

    font-size:.95rem;

    font-weight:600;

    outline:none;

    transition:.2s ease;

    appearance:none;

    -webkit-appearance:none;

    -moz-appearance:none;

    cursor:pointer;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M3.204 5h9.592L8 10.481 3.204 5z'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 18px center;

    background-size:14px;

    padding-right:48px;

}

.panel-form-group select:focus{

    border-color:var(--brand-primary);

    box-shadow:
        0 0 0 3px
        rgba(255,255,255,.05);

}

.panel-form-group select option{

    background:var(--bg-surface);

    color:var(--text-primary);

}

@media(max-width:768px){

    .product-image{

        height:180px;

    }

}

/*
|--------------------------------------------------------------------------
| CUSTOMER PANEL
|--------------------------------------------------------------------------
*/

.customer-panel{

    width:100%;

    max-width:860px;

    margin:0 auto;

    display:flex;

    flex-direction:column;

    gap:32px;

}

.panel-hero{

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:24px;

}

.panel-eyebrow{

    font-size:.82rem;

    font-weight:800;

    letter-spacing:.08em;

    text-transform:uppercase;

    color:var(--text-dim);

    margin-bottom:10px;

}

.panel-title{

    font-size:clamp(
        2.2rem,
        6vw,
        3.4rem
    );

    line-height:.95;

    letter-spacing:-.05em;

    font-weight:900;

}

.customer-section{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.customer-section-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:18px;

}

.customer-section-header h2{

    font-size:1.1rem;

    font-weight:800;

    letter-spacing:-.02em;

}

.customer-orders-grid{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.customer-order-card:hover{

    transform:translateY(-2px);

    border-color:var(--border-hover);

}

.customer-order-card.active{

    background:
        linear-gradient(
            180deg,
            var(--glass-5),
            rgba(255,255,255,.03)
        );

}

.customer-order-top{

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:18px;

    margin-bottom:24px;

}

.customer-order-progress{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:22px;

}

.customer-progress-dot{

    width:10px;

    height:10px;

    border-radius:var(--radius-pill);

    background:var(--glass-6);

    transition:.22s ease;

}

.customer-progress-dot.done{

    background:
        var(--glass-highlight);

}

.customer-progress-dot.current{

    background:var(--brand-primary);

    box-shadow:
        0 0 14px rgba(255,255,255,.55);

    transform:scale(1.2);

}

.customer-order-shop{

    display:flex;

    align-items:center;

    gap:16px;

}

.customer-order-shop strong{

    display:block;

    font-size:1.05rem;

    margin-bottom:6px;

}

.customer-order-shop p{

    color:
        var(--text-faded);

}



.customer-history-list{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.customer-history-card:hover{

    transform:translateY(-1px);

    background:
        var(--glass-4);

}

.customer-history-left{

    display:flex;

    align-items:center;

    gap:14px;

}

.customer-history-left img{

    width:52px;

    height:52px;

    border-radius:16px;

    object-fit:cover;

}

.customer-history-left strong{

    display:block;

    margin-bottom:4px;

}

.customer-history-left p{

    color:
        var(--text-faded);

}

.customer-history-right{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    gap:10px;

}

.customer-history-status{

    padding:7px 12px;

    border-radius:var(--radius-pill);

    font-size:.76rem;

    font-weight:800;

}

.customer-empty{

    min-height:320px;

    border-radius:36px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:
        linear-gradient(
            180deg,
            var(--glass-5),
            var(--glass-3)
        );

    border:
        1px solid var(--glass-4);

    backdrop-filter:var(--blur-md);

    overflow:hidden;

    position:relative;

}

.customer-empty p{

    color:var(--text-faded);

    font-size:22px;

    font-weight:600;

    letter-spacing:-0.03em;

}

.customer-order-meta{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

    color:var(--text-soft);

    font-size:.95rem;

    font-weight:600;

}

.customer-order-meta .dot{

    opacity:.32;

}


@media(max-width:768px){

    .customer-order-top{

        flex-direction:column;

    }
    
    .customer-history-card{

        flex-direction:column;

        align-items:flex-start;

    }

    .customer-history-right{

        width:100%;

        flex-direction:row;

        align-items:center;

        justify-content:space-between;

    }

}

.history-toggle{

    width:100%;

    min-height:58px;

    padding:0 22px;

    border:none;

    border-radius:22px;

    background:
        var(--glass-3);

    border:
        1px solid var(--glass-4);

    color:var(--text-primary);

    display:flex;

    align-items:center;

    justify-content:space-between;

    cursor:pointer;

    font-size:1rem;

    font-weight:800;

}

.history-toggle i{

    transition:.22s ease;

}

.history-toggle.active i{

    transform:rotate(180deg);

}

.customer-history-wrapper{

    display:none;

}

.customer-history-wrapper.active{

    display:block;

    animation:
        fadeHistory .22s ease;

}

@keyframes fadeHistory{

    from{

        opacity:0;

        transform:translateY(-6px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.unlock-order-card{
 
    cursor:pointer;

}

.delivery-error{

    padding:18px 20px;

    border-radius:22px;

    background:
        var(--danger-soft);

    border:
        1px solid var(--danger);

    color:var(--danger);

    font-weight:700;

}

.delivery-layout .cart-header-btn{

    display:none;

}

.delivery-layout .site-header{

    border-bottom:
        1px solid var(--glass-4);

}

.delivery-history{

    margin-top:32px;

}

.delivery-history summary{

    cursor:pointer;

    list-style:none;

    font-size:14px;

    font-weight:700;

    opacity:.7;

    margin-bottom:20px;

}

.delivery-history summary::-webkit-details-marker{

    display:none;

}

.delivery-empty-state{

    padding:42px 28px;

    border-radius:32px;

    background:
        var(--glass-3);

    border:
        1px solid var(--border-glass);

    text-align:center;

}

.delivery-empty-state h2{

    font-size:32px;

    margin-bottom:12px;

}

.delivery-empty-state p{

    color:var(--text-soft);

}

.site-logo-group{

    display:flex;

    flex-direction:column;

    gap:2px;

}

.delivery-network-label{

    font-size:11px;

    color:var(--text-dim);

    letter-spacing:.08em;

    text-transform:uppercase;

}

.quick-order-action-form{

    margin-top:14px;

}

.quick-order-action-btn{

    width:100%;

    min-height:54px;

    font-size:1rem;

    font-weight:800;

    transition:.2s ease;

}

.quick-order-action-btn:hover{

    transform:translateY(-1px);

}

.delivery-searching-badge{

    margin-top:14px;

    min-height:54px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        var(--glass-5);

    border:
        1px solid var(--glass-5);

    color:var(--text-primary);

    font-weight:700;

}

.order-operation-card{

    position:relative;

    overflow:hidden;

}

.order-operation-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:18px;

}

.order-operation-label{

    color:var(--text-dim);

    font-size:.85rem;

    margin-bottom:10px;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.order-operation-status{

    margin:0;

    font-size:2.3rem;

    line-height:1;

    font-weight:900;

}

.order-operation-summary{

    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:18px;

    margin-top:26px;

}

.order-operation-summary span{

    display:block;

    color:var(--text-dim);

    margin-bottom:8px;

    font-size:.82rem;

}

.order-operation-summary strong{

    font-size:1.05rem;

}

.operation-highlight-card{

    margin-top:26px;

    padding:20px;

    border-radius:26px;

    background:var(--bg-surface);

    border:
        1px solid var(--border-glass);

}

.operation-highlight-head{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:18px;

}

.operation-highlight-head small{

    display:block;

    color:var(--text-dim);

    margin-bottom:8px;

}

.operation-highlight-head strong{

    font-size:1.15rem;

}

.operation-highlight-price{

    font-size:1.4rem;

    font-weight:900;

}

.operation-highlight-actions{

    display:grid;

    gap:14px;

    margin-top:20px;

}

@media(min-width:768px){

    .operation-highlight-actions{

        grid-template-columns:
            220px 1fr;

    }

}

.compact-order-timeline{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin:20px 0;

}
.compact-order-step{

    flex:none;

    position:relative;

}

.compact-order-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:
        var(--glass-7);

    border:
        2px solid var(--glass-6);

}

.compact-order-step.completed
.compact-order-dot{

    background:
        var(--text-primary);

    border-color:
        var(--text-primary);

    opacity:.92;

    box-shadow:
        0 0 12px
        var(--glass-highlight);

}

.compact-order-step.current
.compact-order-dot{

    background:
        transparent;

    border-color:
        var(--text-primary);

    box-shadow:
        0 0 18px
        var(--glass-highlight);

    transform:
        scale(1.15);

}

.compact-order-step span{

    display:none;

}

.operation-confirmation-bar{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;

    margin-top:22px;
    padding:18px 20px;

    border-radius:24px;

    background:
        var(--glass-3);

    border:
        1px solid var(--border-glass);

}

.operation-confirmation-info{

    display:flex;
    flex-direction:column;
    gap:6px;

}

.operation-confirmation-info small{

    color:var(--text-dim);

    font-size:.78rem;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.operation-confirmation-info strong{

    font-size:1.4rem;
    font-weight:700;

}

.operation-confirmation-btn{

    width:auto !important;
    min-width:220px;

    margin-top:0 !important;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:0 24px !important;

    text-decoration:none;

}

@media(max-width:768px){

    .operation-confirmation-bar{

        flex-direction:column;
        align-items:stretch;

    }

    .operation-confirmation-btn{

        width:100% !important;
        min-width:0;

    }

}

.operation-confirmation-btn{

    transition:
        transform .18s ease,
        opacity .18s ease,
        background .18s ease;

}

.operation-confirmation-btn:hover{

    transform:translateY(-1px);

}

.operation-confirmation-btn:active{

    transform:scale(.97);

}

.operation-confirmation-btn:active{

    transform:
        scale(.965);

    opacity:.88;

}

.panel-order-secondary-actions{

    display:flex;
    gap:10px;

    margin-top:14px;

}

.panel-order-mini-btn{

    flex:1;

    height:42px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    text-decoration:none;

    font-size:.9rem;
    font-weight:600;

    background:
        var(--glass-4);

    border:
        1px solid var(--border-glass);

    transition:
        transform .18s ease,
        opacity .18s ease,
        background .18s ease;

}

.panel-order-mini-btn:hover{

    transform:translateY(-1px);

}

.panel-order-mini-btn:active{

    transform:scale(.97);

}

.panel-order-mini-btn.whatsapp{

    color:var(--text-primary);

}

.panel-order-delivery-proposal{

    margin-top:14px;

    padding:14px;

    border-radius:18px;

    background:
        var(--glass-4);

    border:
        1px solid var(--glass-4);

}

.panel-order-delivery-proposal-top{

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:12px;

    margin-bottom:12px;

}

.panel-order-delivery-proposal-top small{

    display:block;

    color:var(--text-dim);

    margin-bottom:4px;

}

.panel-order-delivery-price{

    font-size:1rem;

}

.panel-order-mini-btn.accept{

    background:
        var(--glass-6);

}

/*
|--------------------------------------------------------------------------
| AUTH BADGES
|--------------------------------------------------------------------------
*/

.auth-sheet-badges{

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 20px;
}

.auth-sheet-badges span{

    display: inline-flex;

    align-items: center;

    gap: 8px;

    min-height: 36px;

    padding: 0 14px;

    border-radius: var(--radius-pill);

    background:
        var(--glass-3);

    border:
        1px solid var(--glass-4);

    color:
        var(--text-soft);

    font-size: .82rem;

    font-weight: 700;
}


/*
|--------------------------------------------------------------------------
| USER ORDERS
|--------------------------------------------------------------------------
*/

.orders-page{

    width: 100%;

    max-width: 760px;

    margin: 0 auto;
}

.orders-header{

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 34px;
}

.orders-label{

    margin-bottom: 10px;

    font-size: .78rem;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    color:var(--text-dim);

}

.orders-header h1{

    font-size: clamp(
        2.2rem,
        7vw,
        3.4rem
    );

    line-height: .92;

    font-weight: 900;

    letter-spacing: -.06em;
}

.orders-subtitle{

    margin-top: 16px;

    max-width: 520px;

    color:var(--text-faded);

    line-height: 1.7;
}

.orders-count{

    min-width: 58px;

    height: 58px;

    padding: 0 18px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--glass-4);

    border:
        1px solid var(--border-glass);

    font-size: 1.1rem;

    font-weight: 800;
}

.orders-list{

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.order-card{

    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    gap: 22px;

    padding: 24px;

    border-radius: 30px;

    background:
        linear-gradient(
            180deg,
            var(--glass-6),
            var(--glass-4)
        );

    border:
        1px solid var(--border-glass);

    transition:
        transform .22s ease,
        border-color .22s ease,
        background .22s ease;

    text-decoration: none;
}

.order-card:hover{

    transform:
        translateY(-2px);

    border-color:
        var(--border-hover);

    background:
        var(--glass-4);
}

.order-card-top{

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 18px;
}

.order-card-id{

    margin-bottom: 14px;

    font-size: 1.15rem;

    font-weight: 800;

    letter-spacing: -.03em;
}

.order-card-total{

    font-size: 1.15rem;

    font-weight: 900;

    letter-spacing: -.03em;
}

.order-card-meta{

    display: flex;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

    color:var(--text-faded);

    font-size: .92rem;
}

.order-card-meta span{

    display: flex;

    align-items: center;

    gap: 10px;
}

.order-card-arrow{

    position: absolute;

    right: 22px;

    bottom: 22px;

    opacity: .22;

    transition: .22s ease;
}

.order-card:hover .order-card-arrow{

    opacity: .8;

    transform:
        translateX(2px);
}

.orders-empty{

    min-height: 58vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;
}

.orders-empty-icon{

    width: 92px;

    height: 92px;

    margin-bottom: 28px;

    border-radius: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--glass-3);

    border:
        1px solid var(--border-glass);

    font-size: 2rem;
}

.orders-empty h2{

    font-size: 1.8rem;

    margin-bottom: 14px;

    letter-spacing: -.04em;
}

.orders-empty p{

    max-width: 420px;

    line-height: 1.7;

    color:var(--text-faded);

}

.orders-empty-btn{

    min-height: 56px;

    margin-top: 28px;

    padding: 0 26px;

    border-radius: 18px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--brand-primary);

    color: var(--text-primary);

    font-weight: 800;

    text-decoration: none;
}

@media(max-width:768px){

    .orders-header{

        flex-direction: column;
    }

    .orders-count{

        width: 100%;
    }

}

/*
|--------------------------------------------------------------------------
| CUSTOMER EXPERIENCE REDESIGN
|--------------------------------------------------------------------------
*/

.customer-orders-stack{

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.customer-order-card{

    position: relative;

    overflow: hidden;

    padding: 28px;

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.02)
        );

    border:
        1px solid var(--glass-5);

    transition:
        transform .22s ease,
        border-color .22s ease;
}

.customer-order-card:hover{

    transform:
        translateY(-2px);

    border-color:
        var(--border-hover);
}

.customer-order-top{

    align-items: flex-start;

    margin-bottom: 26px;
}

.customer-order-shop{

    gap: 14px;
}

.customer-order-shop img{

    width: 58px;

    height: 58px;

    border-radius: 18px;

    object-fit: cover;

    border:
        1px solid var(--border-glass-strong);
}

.customer-order-shop strong{

    display: block;

    margin-bottom: 8px;

    font-size: 1.5rem;

    font-weight: 800;

    letter-spacing: -.04em;
}

.customer-order-shop p{

    color:
        var(--text-faded);

    font-size: .95rem;
}

.customer-order-status{

    padding:
        10px 18px;

    border-radius: var(--radius-pill);

    font-size: .82rem;

    font-weight: 800;

    letter-spacing: .02em;

    text-transform: uppercase;
}

.customer-order-progress-bar{

    width: 100%;

    height: 8px;

    margin-bottom: 26px;

    overflow: hidden;

    border-radius: var(--radius-pill);

    background:
        var(--glass-5);
}

.customer-order-progress-fill{

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--text-primary),
            var(--text-soft)
        );
}

.customer-order-footer{

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.customer-order-price{

    font-size: 1.45rem;

    font-weight: 900;

    letter-spacing: -.04em;
}

.customer-order-action{

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        var(--text-faded);

    font-weight: 700;
}

.customer-history-card{

    padding: 20px 22px;

    border-radius: 24px;

    background:
        var(--glass-3);

    border:
        1px solid var(--glass-4);

    transition:
        background .22s ease,
        border-color .22s ease;
}

.customer-history-card:hover{

    background:
        var(--glass-4);

    border-color:
        var(--border-hover);
}

.customer-history-left{

    gap: 14px;
}

.customer-history-left img{

    width: 52px;

    height: 52px;

    border-radius: 16px;

    object-fit: cover;
}

.customer-history-left strong{

    display: block;

    margin-bottom: 6px;

    font-size: 1rem;

    font-weight: 800;
}

.customer-history-left p{

    color:
        var(--text-faded);
}

.history-toggle{

    padding: 24px 26px;

    border-radius: 26px;
}

@media(max-width:768px){

    .customer-order-card{

        padding: 22px;
    }

    .customer-order-shop strong{

        font-size: 1.18rem;
    }

    .customer-order-price{

        font-size: 1.18rem;
    }

}

/*
|--------------------------------------------------------------------------
| CUSTOMER HERO
|--------------------------------------------------------------------------
*/

.customer-hero{

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 34px;

    margin-bottom: 36px;

    border-radius: 38px;

    background:
        linear-gradient(
            145deg,
            var(--glass-6),
            var(--glass-3)
        );

    border:
        1px solid var(--border-glass);
}

.customer-hero::before{

    content: '';

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(255,180,80,.16),
            transparent 42%
        );

    pointer-events: none;
}

.customer-hero-content{

    position: relative;

    z-index: 2;
}

.customer-hero .panel-eyebrow{

    margin-bottom: 18px;

    font-size: .76rem;

    font-weight: 800;

    letter-spacing: .18em;

    text-transform: uppercase;

    color:
        var(--text-dim);
}

.customer-hero .panel-title{

    font-size: clamp(
        3rem,
        9vw,
        5.5rem
    );

    line-height: .88;

    font-weight: 900;

    letter-spacing: -.08em;
}

.customer-hero-subtitle{

    margin-top: 20px;

    color:
        var(--text-faded);

    font-size: 1rem;
}

.customer-hero-badge{

    position: relative;

    z-index: 2;

    width: 74px;

    height: 74px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 26px;

    background:
        var(--glass-5);

    border:
        1px solid var(--border-glass-strong);

    font-size: 1.3rem;
}

@media(max-width:768px){

    .customer-hero{

        padding: 26px;
    }

    .customer-hero .panel-title{

        font-size: 3.4rem;
    }

    .customer-hero-badge{

        width: 60px;

        height: 60px;

        border-radius: 22px;
    }

}

/*
|--------------------------------------------------------------------------
| LIVE EXPERIENCE
|--------------------------------------------------------------------------
*/



.customer-order-glow{

    position: absolute;

    top: -120px;

    right: -120px;

    width: 260px;

    height: 260px;

    border-radius: 999px;

    background:
        radial-gradient(
            circle,
            rgba(255,180,80,.12),
            transparent 70%
        );

    pointer-events: none;

    z-index: 0;
}

.customer-order-top,
.customer-order-progress-bar,
.customer-order-footer,
.customer-order-live{

    position: relative;

    z-index: 2;
}

.customer-order-live{

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    color:var(--text-faded);

    font-size: .88rem;

    font-weight: 700;
}

.customer-live-dot{

    width: 10px;

    height: 10px;

    border-radius: var(--radius-pill);

    background:var(--success);

    box-shadow:
        0 0 18px var(--success-soft);

    animation:
        customerLivePulse 1.6s infinite;

}

@keyframes customerLivePulse{

    0%{

        transform: scale(1);

        opacity: 1;
    }

    50%{

        transform: scale(1.35);

        opacity: .7;
    }

    100%{

        transform: scale(1);

        opacity: 1;
    }

}

/*
|--------------------------------------------------------------------------
| PROFILE HEADER BUTTON
|--------------------------------------------------------------------------
*/

.profile-header-btn{

    width: 58px;

    height: 58px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 22px;
}

.profile-header-btn i{

    font-size: 1rem;
}

.profile-page{

    width:min(920px, calc(100% - 2rem));

    margin:0 auto;

    padding:
        7rem
        0
        5rem;

}

.profile-hero{

    display:flex;

    align-items:center;

    gap:1.5rem;

    padding:2rem;

    border-radius:2rem;

    border:1px solid var(--border-glass);

    background:
        linear-gradient(
            135deg,
            var(--glass-4),
            var(--glass-2)
        ),
        linear-gradient(
            90deg,
            rgba(255,170,0,.10),
            transparent
        );

    margin-bottom:2rem;

    overflow:hidden;

}

.profile-avatar{

    width:96px;

    height:96px;

    border-radius:2rem;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    font-size:2.4rem;

    font-weight:800;

    color:var(--text-primary);

    background:
        linear-gradient(
            135deg,
            rgba(255,170,0,.22),
            var(--glass-3)
        );

    border:1px solid var(--border-glass-strong);

}

.profile-label{

    display:inline-block;

    margin-bottom:.5rem;

    font-size:.78rem;

    font-weight:700;

    letter-spacing:.14em;

    color:var(--text-dim);

}

.profile-title{

    margin:0;

    font-size:clamp(
        2.5rem,
        7vw,
        4.8rem
    );

    line-height:.95;

    color:var(--text-primary);

}

.profile-subtitle{

    margin-top:.8rem;

    color:var(--text-faded);

}

.profile-form{

    display:flex;

    flex-direction:column;

    gap:1.5rem;

}

.profile-card{

    padding:1.5rem;

    border-radius:2rem;

    border:1px solid var(--border-glass);

    background:
        linear-gradient(
            135deg,
            var(--glass-3),
            var(--glass-2)
        );

}

.profile-card-header{

    margin-bottom:1.5rem;

}

.profile-card-header h2{

    margin:0;

    font-size:2.2rem;

    font-weight:800;

    color:var(--text-primary);

}

.profile-field{

    display:flex;

    flex-direction:column;

    gap:.7rem;

    margin-bottom:1.3rem;

}

.profile-field:last-child{

    margin-bottom:0;

}

.profile-field label{

    font-size:.92rem;

    font-weight:700;

    color:var(--text-soft);

}

.profile-input{

    width:100%;

    height:64px;

    border:1px solid var(--border-glass);

    border-radius:1.3rem;

    background:var(--bg-input) !important;

    padding:0 1.2rem;

    font-size:1rem;

    color:var(--text-primary) !important;

    outline:none;

    transition:.2s ease;

    appearance:none;

    -webkit-appearance:none;

}

.profile-input::placeholder{

    color:var(--text-dim);

}

.profile-input:focus{

    border-color:rgba(255,170,0,.28);

    background:#111 !important;

}

.profile-input:-webkit-autofill,
.profile-input:-webkit-autofill:hover,
.profile-input:-webkit-autofill:focus{

    -webkit-box-shadow:
        0 0 0 1000px #0d0d0d inset !important;

    -webkit-text-fill-color:
        #fff !important;

    caret-color:#fff;

    border:1px solid var(--glass-5) !important;

    transition:
        background-color 9999s ease-in-out 0s;

}

.profile-submit{

    width:100%;

    height:64px;

    border:none;

    border-radius:1.4rem;

    background:var(--brand-primary);

    color:var(--text-primary);

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

    transition:.2s ease;

}

.profile-submit:hover{

    transform:translateY(-1px);

}

@media(max-width:768px){

    .profile-page{

        padding-top:6rem;

    }

    .profile-hero{

        flex-direction:column;

        align-items:flex-start;

    }

    .profile-title{

        font-size:3rem;

    }

    .profile-card-header h2{

        font-size:1.9rem;

    }

}

.profile-input-static{

    display: flex;

    align-items: center;

    pointer-events: none;

    user-select: none;

    opacity: .7;

}

.profile-alert{

    padding:1rem 1.2rem;

    border-radius:1rem;

    margin-bottom:1.2rem;

    font-size:.95rem;

    font-weight:600;

}

.profile-alert.error{

    background:var(--danger-soft);

    border:
        1px solid var(--danger);

    color:var(--danger);

}

.profile-alert.success{

    background:var(--success-soft);

    border:
        1px solid var(--success);

    color:var(--success);

}

.shop-header-meta{

    display:flex;

    align-items:center;

    gap:.7rem;

    flex-wrap:wrap;

    margin-top:.2rem;

}

.shop-header-status{

    margin:0;

}

.shop-header-balance{

    display:flex;

    align-items:center;

    gap:.45rem;

    font-size:.82rem;

    font-weight:600;

    color:var(--text-soft);

}

.shop-header-warning{

    display:inline-flex;

    width:fit-content;

    margin-top:.45rem;

}

.shop-name-form{

    display:flex;

    align-items:center;

    gap:.8rem;

    width:100%;

    min-width:0;

}

.shop-name-input{

    flex:1;

    width:100%;

    min-width:0;

    max-width:100%;

    height:58px;

    padding: 0 1.2rem;

    border: 1px solid var(--border-glass-strong);

    border-radius: 1.2rem;

    background:
        var(--glass-3);

    color: var(--text-primary);

    font-size: 2rem;

    font-weight: 800;

    letter-spacing: -.04em;

    outline: none;

    transition:
        border-color .2s ease,
        background .2s ease;

}

.shop-name-input:focus{

    border-color:
        rgba(255,180,80,.34);

    background:
        var(--glass-5);

}

.shop-name-input::placeholder{

    color:
        rgba(255,255,255,.34);

}

.shop-name-submit{

    width: 58px;

    height: 58px;

    border: none;

    border-radius: 1.2rem;

    background: var(--brand-primary);

    color: var(--text-primary);

    font-size: 1rem;

    cursor: pointer;

    flex-shrink: 0;

    transition:
        transform .2s ease,
        opacity .2s ease;

}

.shop-name-submit:hover{

    transform:
        translateY(-1px);

}

.shop-name-submit:active{

    transform:
        scale(.98);

}

.shop-location-form{

    display:flex;

    flex-direction:column;

    gap:1rem;

}

.shop-input,
.shop-textarea{

    width:100%;

    border:none;

    outline:none;

    border-radius:1.2rem;

    background:
        var(--glass-3);

    color:var(--text-primary);

    padding:1rem 1.1rem;

    font:inherit;

}

.shop-textarea{

    min-height:110px;

    resize:none;

}

.shop-location-grid{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:.8rem;

}

.shop-location-btn,
.shop-save-btn{

    height:54px;

    border:none;

    border-radius:1.2rem;

    background:
        var(--glass-5);

    color:var(--text-primary);

    font-weight:600;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:.7rem;

}

.shop-save-btn{

    width:100%;

    background:var(--brand-primary);

    color:var(--text-primary);

}



.shop-header-balance.warning{

    color:
        #ffb347;

    animation:
        pulseWarning 2s infinite;

}

.shop-header-balance.negative{

    color:
        var(--danger);

    animation:
        pulseWarning 1.6s infinite;

}

.shop-header-warning{

    margin-top:.4rem;

    font-size:.72rem;

    color:
        rgba(255,120,120,.92);

}

@keyframes pulseWarning{

    0%{

        opacity:1;

    }

    50%{

        opacity:.45;

    }

    100%{

        opacity:1;

    }

}

.shop-header{

    position:sticky;

    top:0;

    z-index:40;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:1rem;

    padding:
        .9rem
        1.2rem;

    background:
        rgba(0,0,0,.72);

    backdrop-filter:
        var(--blur-md);

    border-bottom:
        1px solid var(--glass-4);

}

.shop-header-info{

    flex:1;

    min-width:0;

    display:flex;

    flex-direction:column;

    gap:.22rem;

}

.shop-header-top{

    display:flex;

    align-items:center;

    gap:.7rem;

    min-width:0;

}

.shop-header-title{

    font-size:1rem;

    font-weight:800;

    letter-spacing:-.03em;

    color:var(--text-primary);

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;

}

.shop-header-status{

    font-size:.8rem;

    color:var(--text-faded);

    font-weight:600;

}

.shop-header-balance{

    display:inline-flex;

    align-items:center;

    gap:.35rem;

    padding:
        .2rem
        .55rem;

    border-radius:999px;

    background:
        var(--glass-4);

    font-size:.75rem;

    font-weight:700;

    flex-shrink:0;

}

.shop-header-balance.warning{

    color:#ffb347;

}

.shop-header-balance.negative{

    color:#ff7b7b;

}

.shop-header-actions{

    flex-shrink:0;

}

.shop-header-icon{

    width:46px;

    height:46px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        var(--glass-5);

    border:
        1px solid var(--border-glass);

    color:var(--text-primary);

    text-decoration:none;

}

@media(max-width:768px){

    .shop-name-form{

        align-items:stretch;

    }

    .shop-name-submit{

        width:64px;

        min-width:64px;

    }

}

@media(max-width:768px){

    .panel-card{

        border-radius:28px;

        padding:20px;

    }

}

.shop-recharge-bar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:1rem;

    margin-top:1.4rem;

    margin-bottom:1.6rem;

    flex-wrap:wrap;

}

.shop-recharge-balance{

    display:flex;

    flex-direction:column;

    gap:.2rem;

}

.shop-recharge-balance span{

    font-size:.78rem;

    color:var(--text-dim);

    text-transform:uppercase;

    letter-spacing:.08em;

}

.shop-recharge-balance strong{

    font-size:1.5rem;

    font-weight:800;

    color:var(--text-primary);

}

.shop-recharge-actions{

    display:flex;

    align-items:center;

    gap:.8rem;

    flex-wrap:wrap;

}

.shop-recharge-btn{

    height:52px;

    padding:0 1.4rem;

    border-radius:1rem;

    background:
        var(--glass-4);

    border:
        1px solid var(--border-glass);

    color:var(--text-primary);

    font-weight:700;

    text-decoration:none;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:
        transform .2s ease,
        background .2s ease;

}

.shop-recharge-btn:hover{

    transform:
        translateY(-1px);

    background: var(--brand-primary-hover);

}


.home-actions-section{

    margin-top:24px;

    opacity:1;

    transform:translateY(0);

    transition:
        opacity .25s ease,
        transform .25s ease;

}

.home-actions-section.hidden{

    opacity:0;

    transform:translateY(-20px);

    pointer-events:none;

}

.home-floating-button{

    width:56px;

    height:56px;

    border:none;

    border-radius:50%;

    background:
        var(--bg-glass-heavy);

    backdrop-filter:
        blur(20px);

    color:var(--text-primary);

    font-size:18px;

    cursor:pointer;

}

/*
|--------------------------------------------------------------------------
| TOP ACTIONS
|--------------------------------------------------------------------------
*/

.home-top-actions{

    position:fixed;

    left:50%;

    bottom:24px;

    transform:
        translateX(-50%)
        translateY(100px);

    display:flex;

    align-items:center;

    gap:18px;

    z-index:9999;

    opacity:0;

    pointer-events:none;

    transition:
        opacity .25s ease,
        transform .25s ease;

}

.home-top-actions.visible{

    opacity:1;

    pointer-events:auto;

    transform:
        translateX(-50%)
        translateY(0);

}

.home-top-action{

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:
        var(--bg-glass-heavy);

    backdrop-filter:
        blur(20px);

    color:var(--text-primary);

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    border:
        1px solid var(--border-glass);

    box-shadow:
        var(--shadow-md);

}

.auth-logo-wrap{

    display:flex;

    justify-content:center;

    margin-bottom:20px;

}

.auth-logo{

    height:62px;

    width:auto;

    display:block;

}

.proposal-pending{

    animation:
        proposalPulse 1.5s infinite;

}

@keyframes proposalPulse{

    0%{

        transform:scale(1);

        box-shadow:
            0 0 0 0
            rgba(
                125,
                255,
                193,
                .45
            );

    }

    70%{

        transform:scale(1.06);

        box-shadow:
            0 0 0 14px
            rgba(
                125,
                255,
                193,
                0
            );

    }

    100%{

        transform:scale(1);

        box-shadow:
            0 0 0 0
            rgba(
                125,
                255,
                193,
                0
            );

    }

}



.home-delivery-cta{

    width:100%;

    margin-top:16px;

    min-height:56px;

    border:none;

    border-radius:20px;

    background:
        var(--glass-4);

    border:
        1px solid var(--border-glass);

    color:
        var(--text-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    font-weight:700;

    cursor:pointer;

    backdrop-filter:
        blur(var(--blur-md));

}

.home-delivery-cta i{

    font-size:1rem;

}

.home-delivery-cta + .home-delivery-cta{

    margin-top:12px;

}

.preorders-section{

    margin-bottom:24px;

}

.preorders-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:14px;

}

.preorders-header h2{

    margin:0;

    font-size:1rem;

}

.preorders-header span{

    opacity:.6;

}

.preorders-grid{

    display:grid;

    gap:14px;

}

.preorder-card{

    padding:18px;

    border-radius:22px;

    background:var(--glass-3);

    border:1px solid var(--border-glass);

}

.preorder-card-top h3{

    margin:0;

}

.preorder-date{

    margin-top:10px;

    opacity:.7;

    font-size:.9rem;

}

.preorder-stats{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:12px;

    margin-top:18px;

}

.preorder-stats span{

    display:block;

    opacity:.55;

    font-size:.8rem;

}

.preorder-stats strong{

    display:block;

    margin-top:4px;

}

.preorders-page-grid{

    display:grid;

    gap:18px;

}

.preorder-page-card{

    padding:22px;

    border-radius:24px;

    background:var(--glass-3);

    border:1px solid var(--border-glass);

}

.preorder-page-top h3{

    margin:0;

}

.preorder-page-date{

    margin-top:10px;

    opacity:.7;

}

.preorder-page-stats{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:16px;

    margin-top:20px;

}

.preorder-page-stats span{

    display:block;

    opacity:.6;

    font-size:.8rem;

}

.preorder-page-stats strong{

    display:block;

    margin-top:4px;

}

.preorder-status{
    
    width:100%;

    display:flex;

    align-items:center;

    gap:8px;

    padding:12px 16px;

    border-radius:999px;

    font-size:.95rem;

    font-weight:700;

    margin:18px 0;

}

.preorder-status.confirmed{

    background:
        rgba(
            154,
            205,
            50,
            .12
        );

    border:
        1px solid
        rgba(
            154,
            205,
            50,
            .25
        );

    color:
        var(--brand-green);

}

.preorder-status.pending{

    background:
        rgba(
            255,
            132,
            36,
            .12
        );

    border:
        1px solid
        rgba(
            255,
            132,
            36,
            .35
        );

    color:
        var(--brand-orange);

}

.preorder-actions{

    display:flex;

    align-items:center;

    gap:14px;

    flex-wrap:wrap;

    margin-top:18px;

}

.preorder-actions a,

.preorder-actions button{

    min-width:180px;

}

.preorder-confirm-form{

    margin:0;

}

.preorder-confirm-form button{

    width:100%;

}

.preorder-customer-stats{

    display:grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:16px;

    margin-top:18px;

}

.preorder-stat{

    padding:12px 14px;

    border-radius:16px;

    background:var(--glass-2);

    border:1px solid var(--border-glass);

}

.preorder-stat-label{

    opacity:.6;

    font-size:.82rem;

}

.preorder-stat-value{

    font-size:1rem;

    font-weight:700;

    margin-top:6px;

}

.order-card{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.panel-secondary-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:180px;

}

@media(
    max-width:768px
){

    .preorder-customer-stats{

        grid-template-columns:1fr;

    }

    .preorder-actions{

        flex-direction:column;

        align-items:stretch;

    }

    .preorder-actions a,

    .preorder-actions button,

    .panel-secondary-btn{

        width:100%;

        min-width:0;

    }

}

.preorder-customer-card{

    padding:24px;

    border-radius:28px;

    background:var(--glass-3);

    border:1px solid var(--border-glass);

    display:flex;

    flex-direction:column;

    gap:18px;

}

.preorder-customer-card h3{

    margin:0;

    font-size:1.5rem;

}

.preorder-customer-stats{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:16px;

}

.preorder-stat{

    padding:18px;

    border-radius:18px;

    background:var(--glass-2);

    border:1px solid var(--border-glass);

}

.preorder-stat-label{

    font-size:.85rem;

    opacity:.6;

}

.preorder-stat-value{

    margin-top:8px;

    font-size:2rem;

    font-weight:700;

}

.preorder-actions{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:14px;

}

.preorder-actions a,

.preorder-actions button{

    width:100%;

    min-width:0;

}

.preorder-confirm-form{

    margin:0;

}

.preorder-confirm-form button{

    width:100%;

}

@media(max-width:768px){

    .preorder-customer-stats{

        grid-template-columns:1fr;

    }

    .preorder-actions{

        grid-template-columns:1fr;

    }

}

.preorder-actions{

    display:flex !important;

    align-items:center !important;

    gap:16px !important;

    flex-wrap:nowrap !important;

}

.preorder-actions a{

    width:auto !important;

    min-width:180px !important;

    flex:none !important;

}

.preorder-confirm-form{

    margin:0 !important;

    flex:none !important;

}

.preorder-confirm-form button{

    width:auto !important;

    min-width:220px !important;

}

.preorder-customer-card{

    padding:26px;

    border-radius:28px;

    background:var(--glass-3);

    border:1px solid var(--border-glass);

}

.preorder-customer-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

}

.preorder-customer-top h3{

    margin:0;

    font-size:1.5rem;

}

.preorder-customer-order{

    margin-top:6px;

    opacity:.6;

}

.preorder-customer-amount{

    font-size:2rem;

    font-weight:900;

}

.preorder-customer-middle{

    display:flex;

    align-items:center;

    gap:16px;

    margin-top:20px;

}

.preorder-pill{

    display:flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    border-radius:999px;

    background:var(--glass-2);

    border:1px solid var(--border-glass);

}

.preorder-customer-actions{

    display:flex;

    gap:12px;

    margin-top:22px;

}

.preorder-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:14px 22px;

    border:none;

    border-radius:16px;

    background:var(--brand-primary);

    color:#fff;

    font-weight:700;

    text-decoration:none;

}

.preorder-btn.secondary{

    background:var(--glass-2);

}

.preorder-bank-card{

    padding:16px;

    border-radius:18px;

    background:
        rgba(
            31,
            86,
            184,
            .08
        );

    border:
        1px solid
        rgba(
            31,
            86,
            184,
            .20
        );

    margin-bottom:18px;

}

.preorder-bank-label{

    font-size:.8rem;

    opacity:.6;

    margin-bottom:6px;

}

.preorder-bank-card strong{

    display:block;

}

.preorder-bank-card span{

    display:block;

    margin-top:6px;

    font-family:monospace;

    font-size:1rem;

}

.preorder-status small{

    margin-left:auto;

    opacity:.7;

    font-size:.8rem;

    font-weight:600;

}

.preorder-summary-row{

    display:flex;

    gap:18px;

    margin-top:14px;

    font-size:.9rem;

    opacity:.75;

}

.preorder-customer-actions{

    display:flex;

    gap:12px;

    margin-top:18px;
}

.preorder-customer-actions .panel-submit-btn{

    flex:1;
}

.preorder-customer-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    opacity:.75;

    font-weight:600;

    text-decoration:none;
}

.preorder-customer-link:hover{

    opacity:1;
}

.preorders-today{

    margin-bottom:24px;

    padding:22px;

    border-radius:24px;

    background:var(--glass-3);

    border:1px solid var(--border-glass);

}

.preorders-today-header{

    margin-bottom:18px;

}

.preorders-today-header h2{

    margin:0;

}

.preorders-today-card{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:16px;

    padding:14px 0;

    border-bottom:
        1px solid
        var(--border-glass);

}

.preorders-today-card:last-child{

    border-bottom:none;

}

.preorders-today-customer{

    margin-top:4px;

    opacity:.65;

    font-size:.9rem;

}

.preorders-today-qty{

    width:42px;

    height:42px;

    border-radius:999px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:800;

    background:var(--glass-2);

}

.preorders-product-group{

    margin-top:22px;

    padding-top:22px;

    border-top:
        1px solid
        var(--border-glass);

}

.preorders-product-group:first-child{

    margin-top:0;

    padding-top:0;

    border-top:none;

}

.preorders-product-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:16px;

}

.preorders-product-total{

    width:46px;

    height:46px;

    border-radius:999px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:800;

    background:
        var(--brand-primary);

    color:#fff;

}

.preorders-product-subtitle{

    margin-top:8px;

    margin-bottom:14px;

    opacity:.7;

    font-size:.92rem;

}


.preorders-delivery-actions{

    display:flex;

    gap:12px;

    margin-bottom:18px;

    flex-wrap:wrap;

}

.preorders-delivery-actions form{

    flex:1;

}

.preorders-delivery-actions button{

    width:100%;

}

.order-preorder-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:8px;

    padding:6px 12px;

    border-radius:999px;

    background:
        rgba(
            255,
            132,
            36,
            .12
        );

    border:
        1px solid
        rgba(
            255,
            132,
            36,
            .25
        );

    color:
        var(--brand-orange);

    font-size:.78rem;

    font-weight:700;

    letter-spacing:.02em;

}

/*
|--------------------------------------------------------------------------
| CATEGORIES
|--------------------------------------------------------------------------
*/

.shop-categories-form{

    display:flex;

    flex-direction:column;

    gap:1rem;

}

.shop-categories-grid{

    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(
                150px,
                1fr
            )
        );

    gap:.8rem;

}

@media (max-width:768px){
    .shop-categories-grid{

    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(
                120px,
                1fr
            )
        );

    gap:.7rem;

}
}

.shop-category-option{

    position:relative;

    cursor:pointer;

}

.shop-category-option input{

    position:absolute;

    opacity:0;

    pointer-events:none;

}

.shop-category-option span{

    width:100%;

    min-height:54px;

    border-radius:1.2rem;

    background:
        var(--glass-3);

    color:
        var(--text-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    gap:.7rem;

    padding:
        .9rem
        1rem;

    transition:.2s;

    border:
        1px solid
        transparent;

    font-weight:600;

}

.shop-category-option:hover span{

    background:
        var(--glass-5);

}

.shop-category-option input:checked + span{

    background:
        rgba(
            152,
            204,
            79,
            .12
        );

    border:
        1px solid
        var(--brand-green);

    color:
        var(--text-primary);


    box-shadow:
        0 0 0 1px
        rgba(
            255,
            255,
            255,
            .08
        );

}

.shop-category-option i{

    font-size:.95rem;

    opacity:.9;

}

.shop-settings-group{

    padding:2rem;

}

.shop-settings-group p.right{
    text-align: right;
}

.shop-settings-group + .shop-settings-group{

    margin-top:1.8rem;

}

.shop-settings-content {
    margin-bottom: 5px;    
}

/*
|--------------------------------------------------------------------------
| SHOP STATUS PANEL
|--------------------------------------------------------------------------
*/

.shop-status-open{

    background:
        rgba(
            74,
            222,
            128,
            .08
        );

    border:
        1px solid
        rgba(
            74,
            222,
            128,
            .18
        );

}

.shop-status-closed{

    background:
        rgba(
            239,
            68,
            68,
            .08
        );

    border:
        1px solid
        rgba(
            239,
            68,
            68,
            .18
        );

}


.panel-product-preorder{

    display:inline-flex;

    align-items:center;

    gap:6px;

    margin:8px 0 10px;

    padding:4px 10px;

    border-radius:999px;

    font-size:.75rem;

    font-weight:600;

    background:
        rgba(
            255,
            166,
            0,
            .12
        );

    border:
        1px solid
        rgba(
            255,
            166,
            0,
            .25
        );

    color:
        #ffb84d;

}


/*
|--------------------------------------------------------------------------
| SHOP MINI PANEL
|--------------------------------------------------------------------------
*/

.shop-mini-panel{

    position:fixed;

    top:16px;

    right:16px;

    z-index:1200;

    min-width:140px;

    padding:12px 14px;

    border-radius:18px;

    background:var(--glass-6);

    backdrop-filter:blur(18px);

    border:
        1px solid
        var(--border-glass);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.35);

}

.shop-mini-panel.minimized{

    width:auto;

    min-width:auto;

    padding:10px;

}

.shop-mini-panel.minimized
.shop-header-info{

    display:none;

}

.shop-mini-panel.minimized
.shop-header-actions{

    justify-content:center;

}

.shop-mini-panel.minimized
.shop-header-info{

    display:none;

}

.shop-mini-panel.minimized{

    min-width:auto;

    width:auto;

    padding:12px;

}

.shop-mini-panel.minimized
.shop-header-actions{

    width:100%;

    justify-content:center;

}

.shop-mini-panel.minimized
.shop-header-info{

    display:none;

}

.order-contact-links{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin:18px 0 28px;

    font-size:.95rem;

    color:var(--text-faded);

}

.order-contact-links a{

    color:inherit;

    text-decoration:none;

    transition:.2s;

}

.order-contact-links a:hover{

    color:var(--text-primary);

}

.order-contact-links span{

    opacity:.45;

}

.preorders-list{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.preorder-row{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:16px;

    padding:14px 18px;

    border-radius:16px;

    background:
        var(--bg-surface-2);

    border:
        1px solid
        var(--glass-4);

}

.preorder-row-main{

    display:flex;

    flex-direction:column;

    gap:4px;

    min-width:0;

}

.preorder-row-main strong{

    font-size:.95rem;

    color:
        var(--text-primary);

}

.preorder-row-main span{

    font-size:.82rem;

    color:
        var(--text-faded);

}

.preorder-row-total{

    flex-shrink:0;

    color:
        var(--local-orange);

    font-size:1rem;

}

.customer-floating-panel{

    position:fixed;

    top:auto;

    bottom:24px;
    
    left:50%;
    
    transform:translateX(-50%);

    z-index:950;

    display:flex;

    align-items:center;

    gap:10px;

    padding:10px;

    border-radius:24px;

    background:
        rgba(10,10,10,.82);

    backdrop-filter:
        blur(18px);

    border:
        1px solid
        var(--glass-4);

    box-shadow:
        0 10px 40px
        rgba(0,0,0,.35);

}

.customer-floating-panel button,
.customer-floating-home{

    width:50px;

    height:50px;

    border-radius:18px;

    background:#ffffff08;

    border:1px solid #ffffff10;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.customer-floating-panel button:hover{

    transform:
        translateY(-2px);

}

.customer-floating-panel i{

    color:#fff;

    opacity:.92;

    font-size:1.15rem;

}

.customer-floating-panel span{

    position:absolute;

    top:-6px;

    right:-6px;

    min-width:22px;

    height:22px;

    padding:0 6px;

    border-radius:999px;

    background:
        var(--local-primary);

    color:#fff;

    font-size:.72rem;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

.customer-floating-home{

    display:flex;

    align-items:center;

    justify-content:center;

    width:68px;

    height:58px;

    border-radius:18px;

    background:
        var(--bg-surface);

    overflow:hidden;

}

.customer-floating-home img{

    height:26px;

    width:auto;

    display:block;

}

@media (max-width:768px){

    .customer-floating-panel{

        left:50%;

        right:auto;

        top:auto;

        bottom:4px;

        transform:
            translateX(-50%);

    }

}

.customer-cart-btn{

    position:relative;

}

.customer-cart-count{

    position:absolute;

    top:-6px;

    right:-6px;

    min-width:20px;

    height:20px;

    padding:0 6px;

    border-radius:999px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        var(--local-green);

    color:#fff;

    font-size:.72rem;

    font-weight:700;

}


/*
|--------------------------------------------------------------------------
| APPOINTMENTS
|--------------------------------------------------------------------------
*/

.appointment-card{

    display:flex;

    flex-direction:column;

    gap:10px;

    padding:14px 18px;
    
    margin-bottom: 5px;

    border-radius:20px;

    background:var(--bg-card);

    border:1px solid var(--glass-border);

    text-decoration:none;

    color:inherit;

    transition:.2s ease;

}

.appointment-card:hover{

    transform:translateY(-2px);

    background:var(--bg-card-hover);

}

.appointment-card-title{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:12px;

}

.appointment-card-title strong{

    font-size:1rem;

    color:var(--text-primary);

}

.appointment-status{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:90px;

    padding:6px 12px;

    border-radius:999px;

    font-size:.75rem;

    font-weight:700;

    text-transform:uppercase;

}

.appointment-status.pending{

    background:
        rgba(255,200,87,.15);

    color:
        var(--warning);

}

.appointment-status.confirmed{

    background:
        rgba(74,222,128,.15);

    color:
        var(--success);

}

.appointment-status.cancelled{

    background:
        rgba(239,68,68,.15);

    color:
        var(--danger);

}

.appointment-status.completed{

    background:
        rgba(24,167,192,.15);

    color:
        var(--local-cyan);

}

.appointment-meta{

    display:grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap:12px;

}

.appointment-meta-item{

    display:flex;

    flex-direction:column;

    gap:4px;

}

.appointment-meta-label{

    font-size:.75rem;

    color:var(--text-faded);

    text-transform:uppercase;

    letter-spacing:.05em;

}

.appointment-meta-value{

    color:var(--text-primary);

    font-weight:600;

}

/*
|--------------------------------------------------------------------------
| APPOINTMENT DETAIL
|--------------------------------------------------------------------------
*/

.appointment-detail-card{

    display:flex;

    flex-direction:column;

    gap:20px;

    padding:20px;

    border-radius:20px;

    background:var(--bg-card);

    border:1px solid var(--glass-border);

}

.appointment-detail-top{

    display:flex;

    justify-content:flex-end;

}

.appointment-status-badge{

    padding:8px 14px;

    border-radius:999px;

    font-size:.8rem;

    font-weight:700;

}

.appointment-status-badge.status-pending{

    background:
        rgba(255,200,87,.15);

    color:
        var(--warning);

}

.appointment-status-badge.status-confirmed{

    background:
        rgba(74,222,128,.15);

    color:
        var(--success);

}

.appointment-status-badge.status-completed{

    background:
        rgba(24,167,192,.15);

    color:
        var(--local-cyan);

}

.appointment-status-badge.status-cancelled{

    background:
        rgba(239,68,68,.15);

    color:
        var(--danger);

}

.appointment-detail-grid{

    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(
                160px,
                1fr
            )
        );

    gap:16px;

}

.appointment-detail-grid span{

    display:block;

    margin-bottom:4px;

    font-size:.8rem;

    color:var(--text-faded);

    text-transform:uppercase;

    letter-spacing:.05em;

}

.appointment-detail-grid strong{

    color:var(--text-primary);

}

.appointment-actions{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.appointment-actions form{

    margin:0;

}

.appointment-actions{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.appointment-actions form{

    width:100%;

    margin:0;

}

.appointment-actions .panel-submit-btn,
.appointment-actions .panel-order-btn{

    width:100%;

}

.appointment-stats{

    display:grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:12px;

    margin-bottom:24px;

}

.appointment-stat{

    background:
        var(--bg-surface-2);

    border-radius:18px;

    padding:16px;

    text-align:center;

}

.appointment-stat strong{

    display:block;

    font-size:1.4rem;

}

.appointment-stat span{

    color:
        var(--text-faded);

    font-size:.85rem;

}

.appointment-date-group{

    margin:

        24px
        0
        12px;

    font-weight:700;

    color:
        var(--text-faded);

    display:flex;

    align-items:center;

    gap:12px;

}

.appointment-date-group::after{

    content:'';

    flex:1;

    height:1px;

    background:
        var(--glass-border);

}

.appointment-agenda-row{

    display:flex;

    gap:16px;

    align-items:center;

}

.appointment-time{

    min-width:60px;

    font-weight:700;

    font-size:1rem;

}

.appointment-service{

    font-weight:700;

}

.appointment-customer{

    color:
        var(--text-faded);

    margin-top:4px;

}

.appointment-filters{

    display:flex;

    gap:10px;

    margin-bottom:24px;

    overflow-x:auto;

    scrollbar-width:none;

}

.appointment-filters::-webkit-scrollbar{

    display:none;

}

.appointment-filter{

    border:none;

    background:
        var(--bg-surface-2);

    color:
        var(--text-faded);

    padding:
        10px 16px;

    border-radius:999px;

    cursor:pointer;

    white-space:nowrap;

    font-weight:600;

    transition:.18s;

}

.appointment-filter.active{

    background:
        var(--local-primary);

    color:
        #fff;

}

.admin-layout .app-content{

    max-width: 900px;

    margin: 0 auto;

    padding:
        1rem;

}

.admin-nav{

    display:flex;

    gap:.5rem;

    flex-wrap:wrap;

    padding:1rem;

    border-bottom:
        1px solid
        var(--glass-border);

}

.admin-nav-link{

    padding:
        .55rem .85rem;

    border-radius:
        999px;

    text-decoration:none;

    color:
        var(--text-primary);

    background:
        var(--glass-2);

    font-size:
        .9rem;

}

.admin-nav-link:hover{

    background:
        var(--glass-4);

}

.admin-grid{

    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(
                220px,
                1fr
            )
        );

    gap:1rem;

    margin-top:1rem;

}

.admin-tool-card{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:.75rem;

    padding:1rem;

    border:none;

    border-radius:18px;

    background:
        var(--glass-2);

    color:
        var(--text-primary);

    cursor:pointer;

    text-align:left;

}

.admin-tool-card i{

    font-size:1.3rem;

}

.admin-tool-card strong{

    font-size:1rem;

}

.admin-tool-card span{

    font-size:.85rem;

    color:
        var(--text-faded);

}

.wallet-user-card{

    width:100%;

    border:none;

    cursor:pointer;

    background:
        var(--glass-2);

    color:
        var(--text-primary);

    display:flex;

    align-items:center;

    gap:1rem;

    text-align:left;

    transition:.2s;

}

.wallet-user-card:hover{

    background:
        var(--glass-4);

}

.wallet-user-card i{

    font-size:1rem;

    width:24px;

    text-align:center;

}

.wallet-user-card strong{

    display:block;

}

.wallet-user-card small{

    color:
        var(--text-faded);

}

.wallet-balance-card{

    padding:1rem;

    margin-bottom:1rem;

    border-radius:18px;

    background:
        var(--glass-2);

    display:flex;

    flex-direction:column;

    gap:.35rem;

}

.wallet-balance-card span{

    color:
        var(--text-faded);

}

.wallet-balance-card strong{

    font-size:2rem;

    line-height:1;

}

.wallet-balance-card.is-negative{
    border:1px solid #fecaca;
    background:#fef2f2;
}

.wallet-quick-amounts{

    display:grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:.75rem;

    margin-bottom:1rem;

}

.wallet-amount-btn{

    border:none;

    border-radius:14px;

    background:
        var(--glass-2);

    color:
        var(--text-primary);

    padding:1rem;

    cursor:pointer;

    font-weight:600;

}

.wallet-history-title{

    margin:
        2rem 0 1rem;

}

.wallet-history-card{

    padding:1rem;

    border-radius:16px;

    background:
        var(--glass-2);

    margin-bottom:.75rem;

}

.wallet-history-card strong{

    display:block;

    margin-bottom:.35rem;

}

.wallet-history-card p{

    margin:0 0 .35rem;

}

.wallet-history-card small{

    color:
        var(--text-faded);

}

.shop-mini-footer{
    position:fixed;
    left:16px;
    right:16px;
    bottom:16px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:14px 16px;

    background: #0d0e12;

    border:1px solid var(--glass-border);

    border-radius:18px;

    backdrop-filter:blur(20px);

    z-index:999;

    cursor:pointer;
}

.shop-mini-footer-info{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.shop-mini-footer-info strong{
    font-size:14px;
}

.shop-mini-footer-info span{
    font-size:12px;
    color:var(--text-faded);
}

.shop-mini-footer-right{
    display:flex;
    align-items:center;
    gap:12px;
}

.shop-mini-balance{
    display:flex;
    align-items:center;
    gap:6px;

    font-size:13px;
    font-weight:600;
}

.shop-mini-footer .fa-store{
    color:var(--local-cyan);
    font-size:18px;
}


.shop-hero-logo{
    position:absolute;
    top:24px;
    left:24px;

    width:88px;
    height:88px;

    border-radius:24px;

    overflow:hidden;

    background:#fff;

    border:3px solid rgba(255,255,255,.2);

    backdrop-filter:blur(20px);
}

.shop-hero-logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.shop-logo-floating{
    width:96px;
    height:96px;

    margin:-28px auto 16px;

    border-radius:50%;

    overflow:hidden;

    background:#fff;

    border:4px solid #fff;

    position:relative;
    z-index:20;

    box-shadow:
        0 12px 40px rgba(0,0,0,.35);
}

.shop-logo-floating img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.shop-settings-group{

    display:flex;
    flex-direction:column;
    gap:20px;

}

.shop-settings-group h2{

    margin:0;
    font-size:1.15rem;

}

.shop-location-form{

    display:flex;
    flex-direction:column;
    gap:16px;

}

/* ---------- SERVICE MODE ---------- */

.shop-mode-option{

    position:relative;
    display:block;
    cursor:pointer;

}

.shop-mode-option input{

    position:absolute;
    opacity:0;
    pointer-events:none;

}

.shop-mode-option span{

    display:flex;
    align-items:center;
    gap:14px;

    padding:16px 18px;

    border-radius:16px;

    background:var(--bg-surface-2);

    border:1px solid var(--glass-border);

    transition:.25s ease;

    font-weight:600;

}

.shop-mode-option i{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:rgba(255,255,255,.05);

    color:var(--local-cyan);

    font-size:1rem;

}

.shop-mode-option:hover span{

    border-color:rgba(
        255,
        255,
        255,
        .15
    );

    transform:translateY(-2px);

}

.shop-mode-option input:checked + span{

    border-color:var(--local-cyan);

    background:
        linear-gradient(
            135deg,
            rgba(24,167,192,.15),
            rgba(24,167,192,.05)
        );

    box-shadow:
        0 0 0 1px
        rgba(24,167,192,.25);

}

/* ---------- SETTINGS ITEMS ---------- */

.shop-settings-item{

    padding:18px;

    border-radius:16px;

    background:var(--bg-surface-2);

    border:1px solid var(--glass-border);

}

.shop-settings-content{

    display:flex;
    flex-direction:column;
    gap:6px;

}



.shop-settings-content strong{

    font-size:.95rem;

    color:var(--text-primary);

}

.shop-settings-content p{

    margin:0;

    color:var(--text-faded);

    font-size:.88rem;

    line-height:1.5;

}

/* ---------- INPUTS ---------- */

.shop-input,
.shop-textarea{

    width:100%;

    border:none;

    outline:none;

    border-radius:14px;

    background:var(--bg-input);

    border:1px solid var(--glass-border);

    color:var(--text-primary);

    padding:14px 16px;

    transition:.2s ease;

}

.shop-input:focus,
.shop-textarea:focus{

    border-color:var(--local-cyan);

    box-shadow:
        0 0 0 3px
        rgba(24,167,192,.15);

}

.shop-textarea{

    min-height:110px;

    resize:vertical;

}


/* ---------- LOCATION BUTTON ---------- */

.shop-location-btn{

    width:100%;

    border:none;

    border-radius:14px;

    padding:14px;

    font-weight:600;

    cursor:pointer;

    background:
        rgba(24,167,192,.12);

    color:var(--local-cyan);

    transition:.2s ease;

}

.shop-location-btn:hover{

    background:
        rgba(24,167,192,.18);

}

/* ---------- SAVE ---------- */

.shop-save-btn{

    margin-top:8px;

    height:56px;

    border:none;

    border-radius:16px;

    font-weight:700;

    font-size:.95rem;

    cursor:pointer;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--local-cyan),
            var(--local-blue)
        );

    transition:.25s ease;

}

.shop-save-btn:hover{

    transform:translateY(-2px);

}

.shop-save-btn:active{

    transform:translateY(0);

}

body.map-open .customer-floating-panel{

    opacity:0;

    pointer-events:none;

}


.wallet-positive{
    color:#16a34a;
}

.wallet-negative{
    color:#dc2626;
}

.profile-help{

    display:block;

    margin-top:6px;

    font-size:12px;

    color:#6b7280;

}

.shop-share-actions{

    display:flex;

    gap:12px;

    margin-top:16px;

}

.shop-share-btn{

    flex:1;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    height:48px;

    border:none;

    border-radius:12px;

    background:#f5f5f5;

    color:#111;

    text-decoration:none;

    cursor:pointer;

    font-weight:600;

}

.shop-share-btn:hover{

    background:#ececec;

}

.shop-section-header{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;
    margin-top: 20px;

}

.shop-section-step{

    width:32px;

    height:32px;

    border-radius:50%;

    background:#f4f4f5;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:.9rem;

    font-weight:700;
    
    color:
    var(--bg-primary);

}

.shop-section-header h2{

    margin:0;

}

.shop-section-header p{

    margin:2px 0 0;

    color:#666;

    font-size:.9rem;

}


.shop-mini-footer{

    flex-direction:column;

    align-items:stretch;

    gap:12px;
}

.shop-mini-footer-top{

    display:flex;

    align-items:center;

    justify-content:space-between;
}

.shop-mini-footer-nav{

    display:flex;

    align-items:center;

    justify-content:space-around;

    padding-top:10px;

    border-top:1px solid var(
        --glass-border
    );
}

.shop-mini-nav-item{

    display:flex;

    align-items:center;

    justify-content:center;

    width:40px;

    height:40px;

    border:none;

    background:none;

    color:var(
        --text-faded
    );

    text-decoration:none;

    cursor:pointer;

    border-radius:12px;

    transition:.2s;
}

.shop-mini-nav-item:hover{

    background:rgba(
        255,
        255,
        255,
        .05
    );

    color:var(
        --text-color
    );
}

.shop-mini-nav-item i{

    font-size:16px;
}

.recharge-sheet-balance{

    margin:1rem 0;

    padding:1rem;

    border-radius:20px;

    background:
        var(
            --bg-surface-2
        );

    border:1px solid
        var(
            --glass-border
        );

    text-align:center;
}

.recharge-sheet-balance small{

    display:block;

    margin-bottom:.35rem;

    color:
        var(
            --text-faded
        );
}

.recharge-sheet-balance strong{

    font-size:2rem;

    font-weight:700;
}

.recharge-sheet-balance.negative strong{

    color:
        var(
            --danger
        );
}

.recharge-options{

    display:grid;

    gap:.75rem;

    margin-top:1rem;
}

.recharge-option{

    height:56px;

    border:none;

    border-radius:18px;

    background:
        var(
            --bg-surface-2
        );

    border:1px solid
        var(
            --glass-border
        );

    color:
        var(
            --text-primary
        );

    font-weight:700;

    font-size:1rem;

    cursor:pointer;

    transition:
        var(
            --transition
        );
}

.recharge-option:hover{

    border-color:
        var(
            --local-cyan
        );

    transform:
        translateY(-1px);
}

.shop-mini-nav-item{

    position:relative;
}

.wallet-warning{

    color:var(
        --danger
    );
}

.shop-mini-nav-item.has-alert::after{

    content:'';

    position:absolute;

    top:8px;

    right:8px;

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(
        --danger
    );

    box-shadow:
        0 0 8px
        var(
            --danger
        );
}

.shop-space-big {
    margin-bottom: 10px;
}

.shop-video-btn{

    margin-top:12px;

    display:flex;

    align-items:center;

    gap:10px;

    height:42px;

    padding:0 16px;

    border:none;

    border-radius:999px;

    background:#ffffff18;

    color:#fff;

    font-weight:600;

    backdrop-filter:blur(10px);

    cursor:pointer;

}

#shopVideoModal{

    position:fixed;

    inset:0;

    background:#000;

    z-index:99999;

    display:flex;

    align-items:center;

    justify-content:center;

}

#shopVideoFrame{

    width:100vw;

    height:100vh;

    border:none;

}

.shop-location-section{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.shop-location-head{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;

}


/* ---------- MAP ---------- */

#shopLocationMap{

    width:100% !important;

    height:320px !important;

    min-height:320px !important;

    border-radius:20px;

    overflow:hidden;

    border:1px solid var(--glass-border);

    background:var(--glass-3);

    box-shadow:
        0 20px 40px rgba(0,0,0,.25);

}

.shop-location-section{

    display:flex;

    flex-direction:column;

    gap:18px;

    padding:24px;

    border-radius:24px;

    background:var(--glass-2);

    border:1px solid var(--glass-border);

}

.shop-location-head{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:16px;

}

.shop-location-head strong{

    font-size:1rem;

    font-weight:700;

}

.shop-location-btn{

    height:52px;

    padding:0 20px;

    border:none;

    border-radius:16px;

    font-weight:600;

}

.shop-location-reference{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.shop-location-reference textarea{

    min-height:90px;

}

.shop-contact-grid{

    display:grid;

    gap:18px;

}

.sheet-header{
    text-align:center;
}

.sheet-title{
    margin-top:16px;
}

.sheet-subtitle{
    max-width:320px;
    margin:0 auto;
}
