/* ========================================================
WEBPHONE CHILD THEME - FULL FINAL CSS (ERROR-FREE)
======================================================== */

/* ---------------- ROOT ---------------- */
:root{
--wp-blue:#2563eb;
--wp-cyan:#06b6d4;
--wp-green:#10b981;
--wp-pink:#ec4899;
--wp-purple:#7c3aed;
--wp-dark:#0f172a;

--wp-radius:22px;
--wp-radius-lg:32px;

--wp-shadow:0 20px 50px rgba(15,23,42,.08);

--wp-grad-main:linear-gradient(90deg,#e85adf,#8b4dff,#3488ff,#17bfff,#18d3b7);
--wp-grad-blue:linear-gradient(90deg,#0f6fff,#17bfff);
--wp-grad-pink:linear-gradient(90deg,#ff2f92,#ff5d8f);
--wp-grad-gold:linear-gradient(90deg,#ffd85a,#ffb23f);

}

/* ---------------- BASE ---------------- */
body{
font-family:system-ui,-apple-system,sans-serif;
background:#f8fafc;
color:var(--wp-dark);
}

a{
text-decoration:none;
}

/* ========================================================
HEADER
======================================================== */
.webphone-header{
position:sticky;
top:0;
z-index:9999;
background:var(--wp-grad-main);
color:#fff;
box-shadow:0 12px 40px rgba(0,0,0,.12);
}

/* TOP BAR */
.webphone-header-top{
background:rgba(255,255,255,.08);
}

.webphone-header-top-inner{
max-width:1200px;
margin:auto;
padding:10px 20px;
display:flex;
justify-content:space-between;
align-items:center;
}

/* PILL */
.webphone-header-pill{
background:rgba(255,255,255,.15);
padding:6px 14px;
border-radius:999px;
font-size:12px;
font-weight:900;
}

/* SHARE */
.webphone-header-share{
display:flex;
align-items:center;
gap:8px;
}

.webphone-header-share a{
width:32px;
height:32px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(255,255,255,.15);
color:#fff;
transition:.2s;
}

.webphone-header-share a:hover{
background:rgba(255,255,255,.3);
transform:translateY(-2px);
}

/* MAIN HEADER */
.webphone-header-main{
max-width:1200px;
margin:auto;
padding:18px 20px;
display:flex;
justify-content:space-between;
align-items:center;
}

/* BRAND */
.webphone-header-brand{
display:flex;
align-items:center;
gap:12px;
}

.webphone-header-logo{
width:52px;
height:52px;
background:#fff;
color:#7c3aed;
border-radius:18px;
display:flex;
align-items:center;
justify-content:center;
font-weight:900;
}

.webphone-header-site-title{
font-weight:900;
font-size:18px;
}

.webphone-header-site-tagline{
font-size:12px;
}

/* NAV */
.webphone-header-nav{
display:flex;
align-items:center;
gap:10px;
}

.webphone-header-link{
padding:10px 16px;
border-radius:999px;
background:rgba(255,255,255,.15);
color:#fff;
font-weight:800;
transition:.2s;
}

.webphone-header-link:hover{
background:rgba(255,255,255,.3);
}

/* BUTTONS */
.webphone-header-btn{
padding:10px 18px;
border-radius:999px;
font-weight:900;
}

.webphone-header-btn--light{
background:#fff;
color:#7c3aed;
}

.webphone-header-btn--yellow{
background:var(--wp-grad-gold);
color:#5b3300;
}

/* USER MENU */
.webphone-user-menu{
position:relative;
}

.webphone-user-avatar{
width:42px;
height:42px;
border-radius:50%;
background:#fff;
color:#7c3aed;
display:flex;
align-items:center;
justify-content:center;
font-weight:900;
cursor:pointer;
}

.webphone-user-dropdown{
position:absolute;
right:0;
top:55px;
background:#fff;
color:#111;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,.15);
display:none;
flex-direction:column;
min-width:160px;
}

.webphone-user-dropdown a{
padding:12px;
}

.webphone-user-menu:hover .webphone-user-dropdown{
display:flex;
}

/* MOBILE TOGGLE */
.webphone-header-toggle{
display:none;
background:#fff;
border:none;
padding:10px;
border-radius:8px;
cursor:pointer;
}

/* MOBILE MENU */
.webphone-mobile-menu{
display:none;
flex-direction:column;
background:#fff;
}

.webphone-mobile-menu a{
padding:14px;
border-bottom:1px solid #eee;
color:#111;
}

.webphone-mobile-menu.active{
display:flex;
}

/* ========================================================
DASHBOARD
======================================================== */
.webphone-card{
background:#fff;
border-radius:var(--wp-radius-lg);
box-shadow:var(--wp-shadow);
padding:24px;
}

.webphone-kicker{
background:#eef2ff;
padding:6px 12px;
border-radius:999px;
font-weight:900;
font-size:12px;
}

/* USER TEXT */
.webphone-dashboard-user{
font-size:clamp(2rem,5vw,4rem);
font-weight:900;
background:linear-gradient(90deg,#2563eb,#7c3aed,#ec4899,#10b981);
-webkit-background-clip:text;
color:transparent;
}

/* BUTTONS */
.webphone-btn{
display:inline-flex;
padding:14px 22px;
border-radius:999px;
font-weight:900;
transition:.25s;
}

.webphone-btn:hover{
transform:translateY(-2px);
}

.webphone-btn--primary{
background:var(--wp-grad-blue);
color:#fff;
}

.webphone-btn--secondary{
background:var(--wp-grad-pink);
color:#fff;
}

/* GRID */
.webphone-grid-2{
display:grid;
grid-template-columns:1fr 1fr;
gap:24px;
}

/* FORMS */
.webphone-form-group input,
.webphone-form-group textarea,
.webphone-form-group select{
width:100%;
padding:14px;
border-radius:14px;
border:1px solid #ddd;
}

/* FOOTER */
.webphone-footer-wrap{
margin-top:60px;
background:#0f172a;
color:#fff;
}

.webphone-footer-main__inner{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:40px;
}

.webphone-footer-bottom{
padding:20px;
text-align:center;
background:#020617;
}

/* ========================================================
RESPONSIVE
======================================================== */
@media(max-width:900px){


.webphone-header-nav{
    display:none;
}

.webphone-header-toggle{
    display:block;
    width:40px;
    height:40px;
    background:#fff;
    border-radius:10px;
}

.webphone-mobile-menu{
    display:none;
}

.webphone-mobile-menu.active{
    display:flex;
}

.webphone-grid-2{
    grid-template-columns:1fr;
}


}




/* NOTIFICATION PANEL */
.webphone-notification-panel{
    position:absolute;
    right:0;
    top:60px;
    width:300px;
    background:#fff;
    color:#111;
    border-radius:14px;
    box-shadow:0 20px 50px rgba(0,0,0,.2);
    display:none;
    flex-direction:column;
    max-height:400px;
    overflow:auto;
}

.webphone-notification-panel.active{
    display:flex;
}

.webphone-notification-item{
    padding:12px;
    border-bottom:1px solid #eee;
}

.webphone-notification-item.unread{
    background:#eef2ff;
}


























