/*
Theme Name: SupportCandy Theme
Description: Minimal wrapper theme for SupportCandy ticketing system
Version: 1.0
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── Header ── */

.site-header {
    background: #000;
    padding: 0 24px;
    height: 90px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.site-header .logo {
    display: block;
    height: 70px;
    width: auto;
    flex-shrink: 0;
}

.site-header .site-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-decoration: none;
}

/* ── Main content ── */

.site-main {
    flex: 1;
    padding: 40px 24px;
}

.content-container {
    max-width: 1020px;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    padding: 32px;
}

/* ── Footer ── */

.site-footer {
    background: #e0e0e0;
    padding: 0 24px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.site-footer .logo-icon {
    display: block;
    height: 100%;
    object-fit: contain;
    opacity: 0.35;
    filter: grayscale(100%);
}

.wpsc-otp-open-ticket {
    display: none;
}

/* ── Responsive ── */

@media (max-width: 600px) {
    .site-main {
        padding: 20px 12px;
    }

    .content-container {
        padding: 20px 16px;
        border-radius: 4px;
    }
}
