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

:root {
    --bg: #f07d1f;
    --bg-deep: #8c3f10;
    --cream: #fff4df;
    --white: #ffffff;
    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.86);
    --line: rgba(255, 255, 255, 0.14);
    --panel: rgba(125, 52, 15, 0.82);
    --shadow: rgba(0, 0, 0, 0.18);
    --danger: #ffd4d4;
    --danger-text: #7a1717;
}

body {
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(140, 63, 16, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--cream);
}

.header-cart img {
    width: 24px;
    height: 24px;
}

.account-page {
    min-height: 100vh;
}

.account-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 72px 24px;
    background:
        linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.28)),
        url('/assets/images/sections/2.webp') center/cover no-repeat;
}

.account-overlay {
    position: absolute;
    inset: 0;
}

.account-hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
}

.eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 244, 223, 0.92);
}

.eyebrow.small {
    font-size: 11px;
    margin-bottom: 10px;
}

.account-hero h1 {
    font-size: clamp(42px, 7vw, 74px);
    line-height: 0.95;
    margin-bottom: 18px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-soft);
}

.account-section {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 48px 0 80px;
}

.message {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 600;
}

.message.error {
    background: var(--danger);
    color: var(--danger-text);
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.account-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 44px var(--shadow);
}

.logged-in-card h2,
.account-card h2 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.logged-in-card p {
    margin-bottom: 12px;
    color: var(--text-soft);
    font-size: 17px;
}

.account-form {
    display: grid;
    gap: 14px;
}

.account-form label {
    font-size: 14px;
    font-weight: 700;
    color: var(--cream);
}

.account-form input {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0 16px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    outline: none;
}

.account-form input::placeholder {
    color: rgba(255,255,255,0.62);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn.full {
    width: 100%;
}

.btn-solid {
    background: var(--cream);
    color: var(--bg-deep);
    border: 1px solid var(--cream);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255,255,255,0.4);
}

.account-actions {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .header-inner {
        width: min(100%, calc(100% - 24px));
        min-height: 70px;
    }

    .site-nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 14px;
    }

    .account-section {
        width: min(100%, calc(100% - 24px));
        padding: 28px 0 56px;
    }

    .account-card {
        padding: 22px;
        border-radius: 22px;
    }

    .logged-in-card h2,
    .account-card h2 {
        font-size: 28px;
    }
}
.forgot-link {
    display: inline-block;
    margin-top: 2px;
    margin-bottom: 4px;
    color: var(--cream);
    font-size: 14px;
    text-decoration: underline;
}