/* Shape Header (extracted from header.html) */

:root{
  --grad: linear-gradient(135deg,#00d2ff,#925fff);
  --dark:#0f172a;
  --gray:#64748b;
  --border:#e2e8f0;
  --shape-header-height: 85px;
  --shape-admin-offset: 0px;
}

body.admin-bar{
  --shape-admin-offset: var(--wp-admin--admin-bar--height, 32px);
}

/* HEADER */
.shape-header{
  position:fixed;
  top:var(--shape-admin-offset);
  left:0;
  width:100%;
  background:#fff;
  border-bottom:1px solid #f1f5f9;
  z-index:1000;
  font-family: 'Inter', sans-serif;
}

.shape-header-inner{
  max-width:1400px;
  height:var(--shape-header-height);
  margin:auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.shape-logo img{
  height:44px;
  display:block;
}

/* NAV */
.shape-nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.nav-link,
.nav-parent{
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  background:none;
  border:none;
  color:var(--gray);
  text-decoration:none;
  cursor:pointer;
  position:relative;
}

.nav-link:hover,
.nav-parent:hover,
.nav-link.active{
  color:var(--dark);
}

/* DROPDOWNS */
.nav-group{
  position:relative;
}

.nav-dropdown{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  border-radius:10px;
  padding:10px;
  min-width:200px;
  box-shadow:0 14px 40px rgba(0,0,0,.12);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.25s;
}

.nav-group:hover .nav-dropdown{
  opacity:1;
  visibility:visible;
  transform:none;
}

.nav-dropdown a{
  display:block;
  padding:10px 14px;
  color:var(--gray);
  text-decoration:none;
  border-radius:6px;
}

.nav-dropdown a:hover{
  background:#f8fafc;
  color:#00d2ff;
}

/* ACTION BUTTONS */
.shape-actions{
  display:flex;
  gap:14px;
}

.btn-primary{
  background:var(--grad);
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
  font-weight:700;
  text-decoration:none;
}

.btn-outline{
  border:1px solid var(--border);
  padding:10px 18px;
  border-radius:6px;
  font-weight:700;
  color:var(--dark);
  text-decoration:none;
}

/* MOBILE TOGGLE */
.shape-toggle{
  display:none;
  width:40px;
  height:40px;
  border-radius:8px;
  background:var(--grad);
  border:none;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:4px;
}

.shape-toggle span{
  width:18px;
  height:2px;
  background:#fff;
}

/* MOBILE */
@media(max-width:1100px){

  .shape-nav,
  .shape-actions{
    display:none;
  }

  .shape-toggle{
    display:flex;
  }

  .shape-nav.mobile-active{
    display:flex;
    position:absolute;
    top:85px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:20px;
    gap:14px;
    box-shadow:0 20px 40px rgba(0,0,0,.1);
  }

  .nav-group:hover .nav-dropdown{
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .nav-dropdown{
    position:static;
    box-shadow:none;
    display:none;
  }

  .nav-dropdown.open{
    display:block;
  }
}
