/* =========================
   GLOBAL TYPOGRAPHY
   ========================= */
body, .page-body, .contact-panel, .cp-item a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #111;
    line-height: 1.9;
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6, .page-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 24px;
    color: #111;
}

p {
    font-size: 18px;
    margin-bottom: 24px;
}

/* =========================
   LOGO
   ========================= */
.logo a {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

/* =========================
   HERO
   ========================= */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero .brand {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 230px;
    color: #fff;
    line-height: 1;
    margin: 0;
}

.shop-btn {
    margin-top: 20px;
    font-size: 30px;
    color: white;
    border: 1px solid white;
    padding: 10px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background-color: white;
    color: black;
}

/* =========================
   PAGE CENTER (About / Contact / Generic Page)
   ========================= */
.page-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px;
    box-sizing: border-box;
}

.page-title {
    font-size: 56px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 48px;
}

.page-body {
    font-size: 18px;
    line-height: 1.9;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 80px 40px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-col {
    min-width: 200px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 14px;
    color: #111;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom { margin-top: 60px; padding-top: 30px; border-top: 1px solid #e5e5e5; text-align: center; } .footer-bottom p { font-size: 13px; margin: 0; }
.footer-bottom .brand { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 230px; line-height: 1; color: #111; margin-top: 40px; }



/* =========================
   CONTACT PANEL
   ========================= */
.contact-panel {
    position: fixed;
    right: -420px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    background: #fff;
    padding: 64px 32px 40px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.08);
    transition: all 0.45s cubic-bezier(.4,0,.2,1);
    z-index: 99998;
}

.contact-panel.open { right: 0; }

.cp-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #111;
}

.cp-title { font-size: 22px; margin-bottom: 36px; }
.cp-item { margin-bottom: 32px; }
.cp-label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #777; margin-bottom: 6px; }
.contact-panel a { color: #111 !important; text-decoration: none; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
    .page-title { font-size: 40px; margin-bottom: 32px; }
    .page-body { font-size: 16px; }
    .footer-bottom .brand { font-size: 100px; margin-top: 20px; }
    .hero .brand { font-size: 100px; }
    .shop-btn { font-size: 20px; padding: 8px 20px; }
}

@media (max-width: 480px) {
    .page-title { font-size: 32px; margin-bottom: 24px; }
    .page-body { font-size: 14px; }
    .footer-bottom .brand { font-size: 64px; margin-top: 15px; }
    .hero .brand { font-size: 64px; }
    .shop-btn { font-size: 16px; padding: 6px 16px; }
}
/* =========================
   FORCE MOBILE ABOUT FIX
   ========================= */
@media (max-width: 768px) {

    .page-center {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding: 80px 20px !important;
    }

    .page-title {
        font-size: 28px !important;
        letter-spacing: 0.08em !important;
        margin-bottom: 24px !important;
    }

    .page-body {
        max-width: 520px !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
}

@media (max-width: 480px) {

    .page-center {
        padding: 60px 18px !important;
    }

    .page-title {
        font-size: 24px !important;
        letter-spacing: 0.06em !important;
    }

    .page-body {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }
}
