/* =====================================
WILD AZ HELL PWA STYLE (CORE FOUNDATION)
===================================== */

:root{
--accent:#00eaff;
--accent2:#3ecfff;
--dark:#050505;
--panel:#0b0f18;
--text:#ffffff;
--muted:rgba(255,255,255,.78);
--line:rgba(255,255,255,.08);
--danger:#ff4a4a;
}

/* =====================================
RESET
===================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}

html,body{
height:100%;
min-height:100dvh;
background:#000;
color:var(--text);

/* 🔥 FIX: allow vertical scroll */
overflow-x:hidden;
}

/* =====================================
APP LAYOUT (LOCKED)
===================================== */

body{
display:block;
background:#000;
}

/* =====================================
GLOBAL APP CONTROL
===================================== */

.main-content{
position:fixed;
top:70px;
left:0;
right:0;
bottom:60px;
display:flex;
flex-direction:column;
overflow:hidden;
min-height:0;
}

/* injected wrapper from app.js */
.component{
flex:1;
display:flex;
flex-direction:column;
min-height:0;
height:100%;

/* 🔥 FIX: enable scrolling */
overflow-y:auto;
overflow-x:hidden;

-webkit-overflow-scrolling:touch;
scroll-behavior:smooth;
}

.page{
flex:1;
display:flex;
flex-direction:column;
min-height:0;
height:100%;
}

.page-inner{
flex:1;
display:flex;
flex-direction:column;
min-height:0;

/* 🔥 FIX */
overflow-y:auto;

padding:14px;
box-sizing:border-box;
}

.page-inner > *{
flex:1;
display:flex;
flex-direction:column;
min-height:0;
}

.component *{
max-width:100%;
}

/* =====================================
GLOBAL HELPERS
===================================== */

.gradient-text{
background:linear-gradient(90deg,var(--accent),var(--accent2),var(--accent));
-webkit-background-clip:text;
color:transparent;
}

.section-title{
font-size:22px;
color:var(--accent);
padding:6px 2px 14px;
}

.panel{
padding:16px;
border-radius:14px;
background:rgba(11,15,24,.92);
border:1px solid var(--line);
}


/* =====================================
HEADER
===================================== */

.header{
position:fixed;
top:0;
left:0;
width:100%;
height:70px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 15px;
background:var(--dark);
border-bottom:2px solid var(--accent);
z-index:1000;
}

.header-left{
display:flex;
align-items:center;
gap:12px;
min-width:0;
}

.logo{
width:40px;
flex:0 0 auto;
}

.title{
font-size:18px;
font-weight:700;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}

/* =====================================
NAVIGATION
===================================== */

.nav-menu{
display:flex;
gap:10px;
align-items:center;
}

.nav-menu button{
background:none;
border:none;
color:#fff;
padding:8px 12px;
border-radius:8px;
cursor:pointer;
font-size:14px;
transition:.2s;
}

.nav-menu button:hover{
background:#00eaff20;
}

.menu-toggle{
display:none;
font-size:26px;
background:none;
border:none;
color:#fff;
cursor:pointer;
}

/* =====================================
BACKGROUND LOGO
===================================== */

.bg-logo{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:url("media/logo.png") center/contain no-repeat;
opacity:.05;
pointer-events:none;
}

/* =====================================
FOOTER
===================================== */

.footer{
position:fixed;
bottom:0;
left:0;
width:100%;
height:60px;
display:flex;
align-items:center;
justify-content:center;
background:var(--dark);
border-top:2px solid var(--accent);
text-align:center;
z-index:1000;
}

.footer span{
font-weight:700;
letter-spacing:.4px;
background:linear-gradient(90deg,var(--accent),var(--accent2),var(--accent));
-webkit-background-clip:text;
color:transparent;
}
/* =====================================
HOME PAGE
===================================== */

.home-page{
width:100%;
padding:0; /* was 14px, removed to stop double spacing */
}

.shorts-grid,
.long-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
width:100%;
margin-bottom:22px;
}

.short-card,
.long-card{
background:#111;
border-radius:12px;
overflow:hidden;
width:100%;
border:1px solid rgba(255,255,255,.05);
transition:.2s;
}

.short-card:hover,
.long-card:hover{
transform:translateY(-2px);
box-shadow:0 0 12px rgba(0,234,255,.22);
}

.short-card video{
width:100%;
height:240px;
object-fit:cover;
display:block;
background:#000;
}

.short-caption{
padding:10px;
text-align:left;
background:linear-gradient(transparent, rgba(0,0,0,.75));
}

.short-title{
font-weight:700;
margin-bottom:4px;
}

.short-tags{
font-size:12px;
color:var(--accent);
opacity:.9;
}

.long-thumb{
width:100%;
height:150px;
background:#000;
}

.long-thumb img,
.long-thumb video{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.long-body{
padding:10px;
text-align:left;
}

.long-title{
font-weight:700;
color:var(--accent);
margin-bottom:6px;
}

.long-desc{
font-size:14px;
line-height:1.35;
color:var(--muted);
margin-bottom:6px;
}

.long-tags{
font-size:12px;
color:var(--accent);
}

/* =====================================
ARTISTS PAGE
===================================== */

.artists-page{
width:100%;
padding:0;
}

.artists-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
width:100%;
margin-bottom:20px;
}

.artist-card{
background:#111;
border-radius:12px;
overflow:hidden;
text-align:center;
cursor:pointer;
border:1px solid rgba(255,255,255,.05);
transition:.2s;
}

.artist-card:hover{
transform:scale(1.03);
box-shadow:0 0 14px rgba(0,234,255,.25);
}

.artist-card img{
width:100%;
height:110px;
object-fit:cover;
display:block;
background:#000;
}

.artist-name{
padding:8px 6px;
font-size:14px;
font-weight:700;
color:var(--accent);
}

.label-panel,
.label-section{
background:rgba(11,15,24,.94);
border-radius:14px;
padding:18px;
text-align:left;
border:1px solid var(--line);
box-shadow:0 0 20px rgba(0,0,0,.45);
}

.label-panel h3,
.label-title{
font-size:18px;
margin-bottom:10px;
color:#fff;
}

.label-panel p,
.label-bio{
font-size:15px;
line-height:1.45;
color:var(--text);
}

/* popup */

.artist-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.92);
display:none;
z-index:2000;
}

.artist-popup.active{
display:block;
}

.artist-popup-inner{
width:100%;
height:100%;
position:relative;
background:#000;
}

#artistFrame{
width:100%;
height:100%;
border:none;
background:#000;
}

#closeArtist{
position:absolute;
top:10px;
right:10px;
width:42px;
height:42px;
border:none;
border-radius:50%;
background:rgba(0,0,0,.55);
color:#fff;
font-size:22px;
cursor:pointer;
z-index:5;
}

/* =====================================
PRODUCTS PAGE
===================================== */

.products-page{
width:100%;
padding:0;
}

.products-grid,
.product-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
width:100%;
}

.product-card{
background:#111;
border-radius:12px;
overflow:hidden;
text-align:center;
border:1px solid rgba(255,255,255,.05);
transition:.2s;
}

.product-card:hover{
transform:translateY(-2px);
box-shadow:0 0 12px rgba(0,234,255,.25);
}

.product-card img{
width:100%;
height:140px;
object-fit:cover;
display:block;
background:#000;
}

.product-body{
padding:10px;
}

.product-title{
font-weight:700;
margin-bottom:6px;
}

.product-price{
color:var(--accent);
font-weight:800;
margin-bottom:10px;
font-size:16px;
}

.product-btn{
background:var(--accent);
border:none;
padding:9px 14px;
border-radius:8px;
color:#000;
font-weight:700;
cursor:pointer;
transition:.2s;
}

.product-btn:hover{
background:var(--accent2);
}

/* =====================================
CONTACT PAGE
===================================== */

.contact-page{
width:100%;
padding:0;
}

.contact-card{
width:100%;
background:rgba(11,15,24,.94);
padding:20px;
border-radius:14px;
border:1px solid var(--line);
box-shadow:0 0 20px rgba(0,0,0,.4);
text-align:center;
}

.contact-logo{
margin-bottom:16px;
}

.contact-logo img{
width:82px;
display:block;
margin:0 auto;
}

.contact-form{
display:flex;
flex-direction:column;
gap:12px;
}

.contact-input,
.contact-textarea{
width:100%;
padding:11px 12px;
border-radius:8px;
border:1px solid #222;
background:#111;
color:#fff;
}

.contact-textarea{
min-height:120px;
resize:none;
}

.contact-btn{
background:var(--accent);
border:none;
padding:11px 14px;
border-radius:8px;
color:#000;
font-weight:700;
cursor:pointer;
transition:.2s;
}

.contact-btn:hover{
background:var(--accent2);
}

.contact-info{
margin-top:16px;
font-size:14px;
color:var(--muted);
}

/* =====================================
LOGIN PAGE
===================================== */

.login-page{
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
padding:0;
}

.login-card{
width:100%;
max-width:340px;
background:rgba(11,15,24,.95);
padding:26px 22px;
border-radius:16px;
border:1px solid rgba(0,234,255,.18);
box-shadow:0 0 28px rgba(0,234,255,.12);
text-align:center;
backdrop-filter:blur(6px);
}

.login-logo{
margin-bottom:10px;
}

.login-logo img{
width:72px;
margin:0 auto 4px;
display:block;
}

.login-title{
color:var(--accent);
margin-bottom:14px;
font-size:24px;
}

.login-input{
width:100%;
padding:12px;
margin-bottom:12px;
border-radius:8px;
border:1px solid #222;
background:#0b0f18;
color:#fff;
outline:none;
}

.login-input:focus{
border-color:var(--accent);
box-shadow:0 0 8px rgba(0,234,255,.25);
}

.login-btn{
width:100%;
padding:12px;
border:none;
border-radius:8px;
background:linear-gradient(90deg,var(--accent),var(--accent2));
color:#000;
font-weight:800;
cursor:pointer;
transition:.2s;
}

.login-btn:hover{
transform:scale(1.02);
}

.login-error{
color:var(--danger);
margin-top:10px;
min-height:16px;
font-size:13px;
}

/* =====================================
DASHBOARD PAGE (ENHANCED)
===================================== */

.dashboard-page{
width:100%;
height:auto;
padding:0;
display:flex;
flex-direction:column;
gap:14px;
}

.crm-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
width:100%;
}

.crm-card{
background:linear-gradient(145deg,#0b0f18,#0f1522);
border-radius:16px;
padding:18px 14px;
text-align:center;
border:1px solid rgba(0,234,255,.08);
box-shadow:
0 0 20px rgba(0,0,0,.5),
inset 0 0 10px rgba(0,234,255,.05);
transition:.2s;
position:relative;
overflow:hidden;
}

.crm-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:2px;
background:linear-gradient(90deg,var(--accent),transparent);
opacity:.7;
}

.crm-card:hover{
transform:translateY(-3px);
box-shadow:
0 0 25px rgba(0,234,255,.2),
0 0 10px rgba(0,0,0,.6);
}

.crm-title{
font-size:13px;
color:rgba(255,255,255,.6);
margin-bottom:6px;
letter-spacing:.3px;
}

.crm-number{
font-size:28px;
font-weight:800;
color:var(--accent);
letter-spacing:.5px;
}

.crm-table-wrapper{
width:100%;
flex:1;
overflow:auto;
background:rgba(11,15,24,.95);
border-radius:16px;
border:1px solid rgba(255,255,255,.06);
box-shadow:0 0 20px rgba(0,0,0,.5);
}

.crm-table-wrapper::-webkit-scrollbar{
height:6px;
width:6px;
}

.crm-table-wrapper::-webkit-scrollbar-thumb{
background:rgba(0,234,255,.3);
border-radius:6px;
}

.crm-table{
width:100%;
border-collapse:collapse;
min-width:600px;
}

.crm-table thead{
background:#0f1522;
position:sticky;
top:0;
z-index:2;
}

.crm-table th{
padding:14px 12px;
text-align:left;
font-size:13px;
color:var(--accent);
border-bottom:1px solid rgba(255,255,255,.08);
}

.crm-table td{
padding:12px;
font-size:14px;
color:#fff;
border-bottom:1px solid rgba(255,255,255,.05);
}

.crm-table tbody tr:hover{
background:rgba(0,234,255,.06);
}

.status-active{
color:#00ff9d;
font-weight:700;
}

.status-pending{
color:#ffcc00;
font-weight:700;
}

.status-failed{
color:#ff4a4a;
font-weight:700;
}

/* =====================================
CAMERA PAGE
===================================== */

.camera-page{
position:relative;
width:100%;
height:100%;
overflow:hidden;
background:#000;
}

#sceneCanvas,
#liveVideo,
#aiCanvas{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

#sceneCanvas{ z-index:1; }
#liveVideo{ z-index:2; object-fit:cover; }
#aiCanvas{ z-index:3; pointer-events:none; }

.ai-speech{
position:absolute;
top:20%;
left:50%;
transform:translateX(-50%);
padding:12px 16px;
background:rgba(0,0,0,0.75);
border-radius:12px;
color:#fff;
font-size:14px;
z-index:5;
backdrop-filter:blur(6px);
max-width:80%;
text-align:center;
opacity:0;
transition:.3s;
}

.camera-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:16px;
z-index:4;
background:linear-gradient(
to top,
rgba(0,0,0,0.95),
rgba(0,0,0,0.6),
transparent
);
}

.camera-top{
display:grid;
grid-template-columns:2fr 1fr;
gap:12px;
margin-bottom:12px;
}

.camera-bottom{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:12px;
}

.camera-mode{
display:flex;
gap:12px;
margin-top:12px;
}

.mode-btn{
flex:1;
padding:12px;
border:none;
border-radius:12px;
background:#111;
color:#fff;
font-weight:700;
cursor:pointer;
transition:.2s;
}

.mode-btn.active{
background:linear-gradient(90deg,var(--accent),var(--accent2));
color:#000;
box-shadow:0 0 12px rgba(0,234,255,.4);
}

.cam-btn{
padding:14px;
border:none;
border-radius:12px;
font-weight:700;
font-size:14px;
cursor:pointer;
background:#111;
color:#fff;
border:1px solid rgba(255,255,255,0.08);
transition:.2s;
}

.cam-btn:hover{
transform:translateY(-2px);
box-shadow:0 0 12px rgba(0,234,255,.25);
}

.cam-btn.record{
background:#ff2a2a;
color:#fff;
box-shadow:0 0 12px rgba(255,0,0,.4);
}

.cam-btn.stop{
background:#1a1a1a;
color:#fff;
}

.cam-btn.photo{
background:linear-gradient(90deg,var(--accent),var(--accent2));
color:#000;
box-shadow:0 0 12px rgba(0,234,255,.4);
}

.cam-btn.flip{
background:#0d1b2a;
color:#00eaff;
}

.cam-select{
padding:14px;
border-radius:12px;
background:#111;
color:#fff;
border:1px solid rgba(255,255,255,0.1);
font-size:14px;
outline:none;
}


/* ===============================
MESSENGER
=============================== */

.messenger-page{
    position:relative;
    width:100%;
    height:100%;
    min-height:0;
    background:#000;
    overflow:hidden;
}

/* ===============================
CHAT LIST
=============================== */

.messenger-list{
    width:100%;
    height:100%;
    overflow-y:auto;
    background:#050505;
}

.chat-row{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px;
    border-bottom:1px solid rgba(255,255,255,.05);
    cursor:pointer;
    transition:.2s;
}

.chat-row:hover{
    background:#0a0a0a;
}

.chat-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#222;
    overflow:hidden;
}

.chat-info{
    flex:1;
    display:flex;
    flex-direction:column;
}

.chat-name{
    font-weight:700;
    font-size:14px;
}

.chat-preview{
    font-size:12px;
    color:rgba(255,255,255,.6);
}

/* ===============================
CHAT WINDOW (FIXED)
=============================== */

.chat-window{
    position:absolute;
    inset:0;

    display:none;
    flex-direction:column;

    background:#000;
    z-index:20;

    height:100%;
    min-height:0;
}

.chat-window.active{
    display:flex;
}

/* ===============================
HEADER (YOUR ORIGINAL STYLE)
=============================== */

.chat-header{
    flex-shrink:0;
    display:flex;
    align-items:center;
    gap:12px;

    padding:12px;

    background:#050505; /* ðŸ”¥ ORIGINAL */
    border-bottom:1px solid rgba(255,255,255,.05);
}

.chat-back{
    border:none;
    background:none;
    color:#fff;
    font-size:20px;
    cursor:pointer;
}

.chat-avatar-lg{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#222;
    overflow:hidden;
}

.chat-title{
    font-weight:700;
    font-size:16px;
    color:#fff;
}

.chat-status{
    font-size:12px;
    color:rgba(255,255,255,.6);
}

.chat-actions{
    margin-left:auto;
    display:flex;
    gap:10px;
}

.chat-icon{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#111; /* ðŸ”¥ ORIGINAL */
    color:var(--accent);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

/* ===============================
MESSAGES
=============================== */

.chat-messages{
    flex:1;
    min-height:0;
    overflow-y:auto;

    display:flex;
    flex-direction:column;
    gap:10px;

    padding:14px;
}

/* ===============================
BUBBLES
=============================== */

.chat-bubble{
    max-width:75%;
    padding:12px 16px;
    border-radius:18px;
    font-size:14px;
}

.chat-bubble.left{
    background:#1a1a1a;
    color:#fff;
    align-self:flex-start;
}

.chat-bubble.right{
    background:linear-gradient(90deg,var(--accent),var(--accent2));
    color:#000;
    align-self:flex-end;
}

/* ===============================
INPUT (YOUR ORIGINAL STYLE)
=============================== */

.chat-input{
    flex-shrink:0;

    display:flex;
    align-items:center;
    gap:10px;

    padding:10px;
    padding-bottom:calc(10px + env(safe-area-inset-bottom));

    background:#050505; /* ðŸ”¥ ORIGINAL */
    border-top:1px solid rgba(255,255,255,.05);
}

.chat-attach{
    font-size:22px;
    color:var(--accent);
}

.chat-input input{
    flex:1;
    padding:14px;
    border-radius:20px;
    border:none;
    background:#111;
    color:#fff;
    outline:none;
}

.chat-input button{
    width:48px;
    height:48px;
    border-radius:50%;
    border:none;
    background:linear-gradient(90deg,var(--accent),var(--accent2));
    color:#000;
    font-weight:900;
    cursor:pointer;
}

/* ===============================
STATE
=============================== */

.messenger-page.chat-active .messenger-list{
    display:none !important;
}

/* ===============================
DESKTOP
=============================== */

@media(min-width:769px){

.messenger-page{
    display:flex;
    flex-direction:row;
}

.messenger-list{
    width:35%;
    border-right:1px solid rgba(255,255,255,.05);
}

.chat-window{
    position:relative;
    display:flex;
    width:65%;
}

.messenger-page.chat-active .messenger-list{
    display:block !important;
}

}
/* =====================================
PREVIEW / MEDIA GRID
===================================== */

.media-page{
padding:0;
height:auto;
overflow-y:auto;
}

.media-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
gap:10px;
}

.media-card{
position:relative;
width:100%;
padding-top:100%;
background:#111;
border-radius:12px;
overflow:hidden;
cursor:pointer;
}

.media-card img,
.media-card video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
}

.media-card::after{
content:"ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¶";
position:absolute;
bottom:6px;
right:6px;
background:rgba(0,0,0,0.6);
padding:2px 6px;
border-radius:6px;
font-size:10px;
display:none;
}

.media-card.video::after{
display:block;
}

/* =====================================
RESPONSIVE
===================================== */

@media(max-width:900px){
.nav-menu{
display:none;
position:absolute;
top:70px;
right:0;
flex-direction:column;
background:var(--dark);
width:220px;
border-left:1px solid #111;
border-bottom:1px solid #111;
}

.nav-menu.active{
display:flex;
}

.nav-menu button{
padding:14px;
text-align:left;
}

.menu-toggle{
display:block;
}
}

@media(max-width:768px){

    .messenger-page{
        flex-direction:column;
    }

    .messenger-list{
        width:100%;
    }

    .chat-window{
        position:absolute; /* ðŸ”¥ KEEP FULLSCREEN */
        inset:0;
        height:100%;
    }

}

#chatBack{
font-size:20px;
}


@media(max-width:480px){
.camera-overlay{
padding:14px;
}

.cam-btn,
.cam-select{
font-size:13px;
padding:12px;
}

.mode-btn{
padding:10px;
}
}

@media(min-width:700px){
.shorts-grid,
.long-grid,
.products-grid,
.product-grid,
.media-grid{
grid-template-columns:repeat(3,1fr);
}

.crm-grid{
grid-template-columns:repeat(3,1fr);
}
}

@media(min-width:1024px){
.shorts-grid,
.long-grid,
.products-grid,
.product-grid,
.media-grid{
grid-template-columns:repeat(4,1fr);
}

.crm-grid{
grid-template-columns:repeat(4,1fr);
}
}