@font-face {
    font-family: "Vazirmatn";
    src: local("Vazirmatn");
    font-display: swap;
}

:root {
    --green-950: #10291f;
    --green-900: #153b2c;
    --green-800: #1e563f;
    --green-700: #26704f;
    --green-600: #31845d;
    --green-500: #46a46f;

    --cream-50: #fffaf0;
    --cream-100: #f8efd8;
    --cream-200: #ead9ad;

    --gold-300: #d8b86a;
    --gold-400: #c9a34e;

    --text-main: #17251d;
    --text-muted: #6c756e;

    --danger: #d94040;
    --success: #2e9b61;

    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.72);

    --shadow-soft: 0 24px 70px rgba(18, 54, 38, 0.18);
    --shadow-card: 0 24px 55px rgba(12, 45, 31, 0.16);

    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Vazirmatn", Tahoma, sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top right, rgba(70, 164, 111, 0.22), transparent 32%),
        radial-gradient(circle at bottom left, rgba(216, 184, 106, 0.18), transparent 36%),
        linear-gradient(135deg, #fbf7eb 0%, #eef7ed 48%, #fffaf0 100%);
    overflow-x: hidden;
}

/* Background decoration */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.grain {
    position: absolute;
    width: 170px;
    height: 46px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0.55), rgba(216,184,106,0.18));
    filter: blur(1px);
    opacity: 0.55;
    transform: rotate(-28deg);
    animation: floatGrain 8s ease-in-out infinite;
}

.grain-1 {
    top: 13%;
    right: 6%;
}

.grain-2 {
    bottom: 16%;
    left: 8%;
    width: 210px;
    animation-delay: 1.3s;
}

.grain-3 {
    top: 42%;
    left: 16%;
    width: 125px;
    opacity: 0.35;
    animation-delay: 2.1s;
}

.grain-4 {
    bottom: 8%;
    right: 18%;
    width: 145px;
    opacity: 0.3;
    animation-delay: 3s;
}

@keyframes floatGrain {
    0%, 100% {
        transform: translateY(0) rotate(-28deg);
    }
    50% {
        transform: translateY(-18px) rotate(-24deg);
    }
}

/* Header */
/* Header */
.main-header {
    width: 100%;
    padding: 24px 18px 0;
    position: relative;
    z-index: 20;
}

.header-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 12px 14px 12px 18px;
    border: 1px solid rgba(38, 112, 79, 0.14);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42));
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        0 18px 50px rgba(35, 82, 59, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    text-decoration: none;
    color: var(--green-900);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
    letter-spacing: -0.7px;
    flex: 0 0 auto;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.42), transparent 32%),
        linear-gradient(135deg, var(--cream-100), var(--cream-200));
    box-shadow:
        0 14px 28px rgba(49, 132, 93, 0.30),
        inset 0 1px 0 rgba(255,255,255,0.28);
    font-size: 21px;
    position: relative;
    overflow: hidden;
}

.brand-icon::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 80px;
    background: rgba(255,255,255,0.22);
    transform: rotate(28deg);
    top: -22px;
    right: -28px;
    animation: brandShine 4.2s ease-in-out infinite;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes brandShine {
    0%, 55%, 100% {
        right: -34px;
        opacity: 0;
    }
    68% {
        opacity: 1;
    }
    82% {
        right: 54px;
        opacity: 0;
    }
}

.brand-text {
    font-size: 22px;
    background: linear-gradient(135deg, var(--green-950), var(--green-600));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    flex: 1;
}

.nav-link,
.nav-mini,
.nav-cta,
.nav-logout {
    font-family: inherit;
    text-decoration: none;
    border: 0;
    white-space: nowrap;
}

.nav-link {
    position: relative;
    color: rgba(21, 59, 44, 0.76);
    font-size: 14px;
    font-weight: 800;
    padding: 12px 14px;
    border-radius: 999px;
    transition: 0.25s ease;
    overflow: hidden;
}

.nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(49, 132, 93, 0.12), rgba(216, 184, 106, 0.13));
    opacity: 0;
    transform: scale(0.92);
    transition: 0.25s ease;
}

.nav-link span {
    position: relative;
    z-index: 2;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 16px;
    left: 16px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green-500), var(--gold-300));
    opacity: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: 0.25s ease;
}

.nav-link:hover {
    color: var(--green-900);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-divider {
    width: 1px;
    height: 28px;
    margin: 0 7px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(38, 112, 79, 0.22),
        transparent
    );
}

.nav-mini {
    padding: 11px 16px;
    border-radius: 999px;
    color: var(--green-800);
    background: rgba(49, 132, 93, 0.08);
    border: 1px solid rgba(49, 132, 93, 0.12);
    font-size: 14px;
    font-weight: 900;
    transition: 0.25s ease;
}

.nav-mini:hover {
    transform: translateY(-2px);
    background: rgba(49, 132, 93, 0.13);
    box-shadow: 0 12px 28px rgba(49, 132, 93, 0.13);
}

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    color: #fff;
    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,0.38), transparent 28%),
        linear-gradient(135deg, var(--green-800), var(--green-500));
    box-shadow:
        0 15px 30px rgba(49, 132, 93, 0.26),
        inset 0 1px 0 rgba(255,255,255,0.25);
    font-size: 14px;
    font-weight: 950;
    transition: 0.25s ease;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 38px rgba(49, 132, 93, 0.34),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.nav-logout-form {
    margin: 0;
}

.nav-logout {
    cursor: pointer;
    padding: 11px 15px;
    border-radius: 999px;
    color: rgba(217, 64, 64, 0.92);
    background: rgba(217, 64, 64, 0.08);
    border: 1px solid rgba(217, 64, 64, 0.12);
    font-size: 14px;
    font-weight: 900;
    transition: 0.25s ease;
}

.nav-logout:hover {
    transform: translateY(-2px);
    background: rgba(217, 64, 64, 0.12);
    box-shadow: 0 12px 28px rgba(217, 64, 64, 0.12);
}


/* Messages */
.messages-wrapper {
    position: fixed;
    top: 92px;
    left: 20px;
    z-index: 50;
    width: min(360px, calc(100% - 40px));
    display: grid;
    gap: 10px;
}

.site-message {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(38, 112, 79, 0.15);
    box-shadow: 0 18px 45px rgba(12, 45, 31, 0.14);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    animation: toastIn 0.45s ease both;
    font-size: 14px;
    color: var(--text-main);
}

.site-message.success {
    border-color: rgba(46, 155, 97, 0.25);
}

.site-message.error {
    border-color: rgba(217, 64, 64, 0.25);
}

.message-close {
    border: 0;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(-14px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Auth Layout */
.auth-section {
    width: min(1120px, calc(100% - 32px));
    /* min-height: calc(100vh - 110px); */
    margin: 0 auto;
    padding: 54px 0 80px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.auth-visual {
    position: relative;
    min-height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(21, 59, 44, 0.88), rgba(38, 112, 79, 0.88)),
        radial-gradient(circle at top, rgba(216, 184, 106, 0.3), transparent 38%);
    box-shadow: var(--shadow-soft);
    padding: 42px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.auth-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(255,255,255,0.16), transparent 19%),
        radial-gradient(circle at 75% 68%, rgba(216,184,106,0.18), transparent 24%);
    pointer-events: none;
}

.auth-visual::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    left: -120px;
    bottom: -140px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.13);
}

.visual-content {
    position: relative;
    z-index: 2;
}

.visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    font-size: 13px;
    margin-bottom: 26px;
}

.visual-title {
    margin: 0 0 18px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.22;
    letter-spacing: -1.8px;
}

.visual-title span {
    color: #f2d88f;
}

.visual-text {
    margin: 0;
    max-width: 460px;
    color: rgba(255,255,255,0.78);
    line-height: 2;
    font-size: 15px;
}

.visual-card {
    position: relative;
    z-index: 2;
    width: min(480px, 100%);
    padding: 18px;
    border-radius: 26px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: softPulse 3.5s ease-in-out infinite;
}

@keyframes softPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.visual-card-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 20px;
    background: rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.visual-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 25px;
}

.visual-card p {
    margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.8;
}

/* Auth Card */
.auth-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--glass);
    border: 1px solid rgba(38, 112, 79, 0.13);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(22px);
    padding: 38px;
    overflow: hidden;
    animation: cardReveal 0.7s ease both;
}

.auth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(255,255,255,0.18));
    pointer-events: none;
}

.auth-card > * {
    position: relative;
    z-index: 2;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.auth-card-header {
    margin-bottom: 28px;
}

.auth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(49, 132, 93, 0.1);
    color: var(--green-700);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.auth-title {
    margin: 0 0 10px;
    color: var(--green-950);
    font-size: 30px;
    letter-spacing: -1px;
}

.auth-subtitle {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 2;
}

/* Form */
.auth-form {
    display: grid;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 800;
    color: var(--green-900);
}

.auth-form input {
    width: 100%;
    height: 54px;
    border-radius: 17px;
    border: 1px solid rgba(38, 112, 79, 0.16);
    background: rgba(255,255,255,0.82);
    outline: none;
    padding: 0 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-main);
    transition: 0.25s ease;
}

.auth-form input:focus {
    border-color: rgba(49, 132, 93, 0.62);
    box-shadow: 0 0 0 5px rgba(49, 132, 93, 0.12);
    background: #fff;
}

.field-errors,
.non-field-errors {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--danger);
    font-size: 13px;
    line-height: 1.8;
}

.non-field-errors {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(217, 64, 64, 0.08);
    border: 1px solid rgba(217, 64, 64, 0.12);
}

.auth-btn {
    height: 56px;
    border: 0;
    border-radius: 18px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--green-800), var(--green-500));
    box-shadow: 0 18px 35px rgba(49, 132, 93, 0.28);
    transition: 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 44px rgba(49, 132, 93, 0.36);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-links {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.auth-links a {
    color: var(--green-700);
    text-decoration: none;
    font-weight: 900;
}

.auth-links a:hover {
    text-decoration: underline;
}

.phone-preview {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(49, 132, 93, 0.09);
    color: var(--green-900);
    border: 1px solid rgba(49, 132, 93, 0.13);
    font-size: 14px;
    line-height: 1.9;
}

.phone-preview strong {
    direction: ltr;
    display: inline-block;
}

/* OTP Boxes optional */
.otp-helper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: -4px;
}

.countdown {
    color: var(--green-700);
    font-weight: 900;
}

/* Responsive */
@media (max-width: 940px) {
    .auth-section {
        grid-template-columns: 1fr;
        padding-top: 34px;
    }

    .auth-visual {
        min-height: 360px;
        /* display: none; */
    }

    .header-container {
        align-items: stretch;
        border-radius: 28px;
        flex-direction: column;
        gap: 12px;
    }

    .header-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .header-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-divider {
        display: none;
    }

    .nav-link,
    .nav-mini,
    .nav-cta,
    .nav-logout {
        font-size: 13px;
        padding: 10px 13px;
    }
}


@media (max-width: 560px) {
    .main-header {
        padding-top: 14px;
    }

    .header-container {
        border-radius: 22px;
    }

    .auth-section {
        width: min(100% - 22px, 1120px);
        padding-bottom: 44px;
    }

    .auth-visual {
        padding: 28px;
        border-radius: 26px;
        display: none;
    }

    .visual-title {
        font-size: 32px;
    }

    .auth-card {
        padding: 26px 20px;
        border-radius: 26px;
    }

    .auth-title {
        font-size: 25px;
    }

    .messages-wrapper {
        top: 82px;
        left: 12px;
        width: calc(100% - 24px);
    }
}

/* Form extended fields */
.auth-form textarea,
.auth-form select {
    width: 100%;
    border-radius: 17px;
    border: 1px solid rgba(38, 112, 79, 0.16);
    background: rgba(255,255,255,0.82);
    outline: none;
    padding: 15px 16px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-main);
    transition: 0.25s ease;
    resize: vertical;
}

.auth-form textarea {
    min-height: 120px;
}

.auth-form textarea:focus,
.auth-form select:focus {
    border-color: rgba(49, 132, 93, 0.62);
    box-shadow: 0 0 0 5px rgba(49, 132, 93, 0.12);
    background: #fff;
}

.auth-secondary-btn {
    height: 54px;
    border-radius: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-800);
    background: rgba(49, 132, 93, 0.09);
    border: 1px solid rgba(49, 132, 93, 0.13);
    font-weight: 900;
    transition: 0.25s ease;
}

.auth-secondary-btn:hover {
    transform: translateY(-2px);
    background: rgba(49, 132, 93, 0.14);
}

.account-section {
    grid-template-columns: 0.85fr 1.15fr;
}

.account-summary {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.summary-item {
    padding: 15px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.17);
    backdrop-filter: blur(12px);
}

.summary-item span {
    display: block;
    color: rgba(255,255,255,0.68);
    font-size: 13px;
    margin-bottom: 5px;
}

.summary-item strong {
    color: #fff;
    font-size: 15px;
}

.account-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.full-width {
    grid-column: 1 / -1;
}

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

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .account-actions {
        grid-template-columns: 1fr;
    }
    .auth-visual {
        display: none;
    }
}
/* =========================
   Final Mobile Hamburger Navbar
   ========================= */

   .mobile-menu-toggle {
    display: none;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 18px;
    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,0.45), transparent 30%),
        linear-gradient(135deg, rgba(49,132,93,0.16), rgba(216,184,106,0.16));
    color: var(--green-900);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 24px rgba(49, 132, 93, 0.14),
        inset 0 1px 0 rgba(255,255,255,0.45);
    transition: 0.25s ease;
    flex: 0 0 auto;
}

.mobile-menu-toggle:hover {
    background:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,0.55), transparent 30%),
        linear-gradient(135deg, rgba(49,132,93,0.22), rgba(216,184,106,0.22));
}

.mobile-menu-toggle:active {
    transform: scale(0.94);
}

@media (max-width: 940px) {
    .main-header {
        padding: 14px 12px 0;
        position: relative;
        z-index: 80;
    }

    .header-container {
        width: 100%;
        padding: 12px 14px;
        border-radius: 28px;

        display: flex;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap;

        gap: 12px;
    }

    .brand {
        width: auto !important;
        flex: 0 1 auto !important;
        justify-content: flex-start !important;
        min-width: 0;
    }

    .brand-icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .brand-text {
        font-size: 22px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .header-nav {
        display: none !important;

        width: 100%;
        flex: 0 0 100% !important;

        margin-top: 8px;
        padding: 12px;
        border-radius: 22px;

        background:
            linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72));
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        border: 1px solid rgba(38, 112, 79, 0.14);
        box-shadow: 0 18px 45px rgba(12, 45, 31, 0.13);

        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 9px;

        overflow: visible !important;
        animation: mobileMenuOpen 0.25s ease both;
    }

    .header-nav.active {
        display: flex !important;
    }

    @keyframes mobileMenuOpen {
        from {
            opacity: 0;
            transform: translateY(-8px) scale(0.98);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .nav-divider {
        display: none !important;
    }

    .nav-link,
    .nav-mini,
    .nav-cta,
    .nav-logout {
        width: 100% !important;
        min-height: 48px;

        padding: 12px 14px;
        border-radius: 17px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        text-align: center;
        white-space: normal !important;
        line-height: 1.6;

        font-size: 14px;
    }

    .nav-link {
        background: rgba(49, 132, 93, 0.07);
        border: 1px solid rgba(49, 132, 93, 0.09);
    }

    .nav-mini {
        background: rgba(49, 132, 93, 0.10);
    }

    .nav-cta {
        color: #fff;
    }

    .nav-logout-form {
        width: 100%;
        margin: 0;
    }

    .nav-logout {
        background: rgba(217, 64, 64, 0.08);
    }

    .cart-nav-link {
        gap: 8px;
    }

    .cart-count {
        flex: 0 0 auto;
    }
}

@media (max-width: 560px) {
    .main-header {
        padding: 10px 10px 0;
    }

    .header-container {
        padding: 10px 12px;
        border-radius: 24px;
        gap: 10px;
    }

    .brand {
        gap: 9px;
    }

    .brand-icon {
        width: 43px;
        height: 43px;
        border-radius: 15px;
    }

    .brand-text {
        font-size: 21px;
    }

    .mobile-menu-toggle {
        width: 50px;
        height: 50px;
        border-radius: 17px;
        font-size: 28px;
    }

    .header-nav {
        margin-top: 6px;
        padding: 10px;
        border-radius: 20px;
        gap: 8px;
    }

    .nav-link,
    .nav-mini,
    .nav-cta,
    .nav-logout {
        min-height: 46px;
        font-size: 13.5px;
        border-radius: 15px;
    }
}

@media (max-width: 380px) {
    .brand-icon {
        width: 40px;
        height: 40px;
    }

    .brand-text {
        font-size: 19px;
    }

    .mobile-menu-toggle {
        width: 46px;
        height: 46px;
        font-size: 26px;
        border-radius: 15px;
    }

    .nav-link,
    .nav-mini,
    .nav-cta,
    .nav-logout {
        min-height: 44px;
        font-size: 13px;
    }
}
