
/* ── Remove top gap so content slides under fixed header ── */
body .is-layout-constrained > :first-child,
body .wp-site-blocks > :first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.wp-site-blocks {
    padding-top: 0 !important;
}
/* ── Header Bar ────────────────────────────────────────── */
.cch-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255,255,255,0);
    border-bottom: none;
    transition: background 0.3s;
    box-sizing: border-box;
}
.cch-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    height: 71px;
    padding: 0 40px;
    box-sizing: border-box;
}
.cch-logo img {
    height: 60px;
    max-width: none;
    width: auto;
}
.cch-nav-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none !important;
    border: none !important;
    border-radius: 0;
    cursor: pointer;
    padding: 8px;
    color: var(--wp--preset--color--cch-dark);
    flex-shrink: 0;
}
.cch-nav-toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 24px;
}
.cch-nav-toggle-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--wp--preset--color--cch-dark);
    transition: transform 0.3s, opacity 0.3s;
}
.cch-nav-toggle-text {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}
.cch-nav-toggle:hover { color: #828282; }
.cch-nav-toggle:hover .cch-nav-toggle-icon span { background: #828282; }
@media (max-width: 768px) {
    .cch-nav-toggle-text { display: none; }
    .cch-logo img { height: 64px; }
}

/* ── Sidebar Overlay ───────────────────────────────────── */
.cch-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.cch-sidebar-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ── Sidebar Panel ─────────────────────────────────────── */
.cch-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 380px;
    max-width: 85vw;
    background: var(--wp--preset--color--cch-white, #ffffff);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
}
.cch-sidebar.is-open { transform: translateX(0); }
.cch-sidebar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    text-align: center;
}
.cch-sidebar-logo { margin-bottom: 30px; }
.cch-sidebar-logo img { width: 60%; height: auto; }

/* ── Sidebar Nav ───────────────────────────────────────── */
.cch-sidebar-nav ul { list-style: none; margin: 0; padding: 0; }
.cch-sidebar-nav ul li { border-bottom: 1px solid #eaecee; }
.cch-sidebar-nav ul li:first-child { border-top: 1px solid #eaecee; }
.cch-sidebar-nav ul li a {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    font-family: var(--wp--preset--font-family--comfortaa);
    font-size: 27px;
    font-weight: 600;
    line-height: 35px;
    color: var(--wp--preset--color--cch-dark);
    transition: color 0.2s;
}
.cch-sidebar-nav ul li a:hover,
.cch-sidebar-nav ul li.current-menu-item a {
    color: rgba(10, 0, 0, 0.86);
}

/* ── Sidebar Social ────────────────────────────────────── */
.cch-sidebar-social { display: flex; gap: 8px; margin-top: 30px; }
.cch-social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 50%;
    text-decoration: none;
    color: var(--wp--preset--color--cch-dark);
    transition: color 0.2s, border-color 0.2s;
}
.cch-social-circle:hover { color: var(--wp--preset--color--cch-blue); border-color: var(--wp--preset--color--cch-blue); }
.cch-social-circle svg { width: 13px; height: 13px; fill: currentColor; }

/* ── Sidebar Phone ─────────────────────────────────────── */
.cch-sidebar-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    padding: 4px 15px;
    background: var(--wp--preset--color--cch-yellow);
    color: var(--wp--preset--color--cch-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    border-radius: var(--wp--custom--radius, 3px);
    box-shadow: 1px 1px 5px #d1d1d1;
    transition: color 0.2s;
}
.cch-sidebar-phone:hover { color: var(--wp--preset--color--cch-white); }
@media (max-width: 600px) {
    .cch-sidebar-nav ul li a {
        font-size: 22px;
        line-height: 30px;
        padding: 12px 16px;
    }
}
