/* ============================================
   АРТ-ПАМЯТЬ — Main Stylesheet
   Тёмно-синяя тема, современный дизайн
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0a1628;
    --bg-secondary: #0d1b2a;
    --bg-card: #1b2838;
    --bg-hover: #243447;
    --accent-primary: #4a9eff;
    --accent-secondary: #6c5ce7;
    --accent-gradient: linear-gradient(135deg, #4a9eff 0%, #6c5ce7 100%);
    --text-primary: #e8eef5;
    --text-secondary: #8899aa;
    --text-muted: #5a6a7a;
    --border-color: #2a3a4a;
    --success: #00c9a7;
    --warning: #f5a623;
    --danger: #ff6b6b;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(74, 158, 255, 0.15);
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-secondary);
}

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

button {
    cursor: pointer;
    font-family: inherit;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.main {
    min-height: calc(100vh - 300px);
}

/* --- Section Base --- */
.section__header {
    text-align: center;
    margin-bottom: 48px;
}

.section__tag {
    display: inline-block;
    padding: 4px 16px;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.section__footer {
    text-align: center;
    margin-top: 40px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 158, 255, 0.45);
    color: white;
}

.btn--secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn--secondary:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
}

.btn--outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(74, 158, 255, 0.05);
}

.btn--ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
}

.btn--ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn--danger {
    background: var(--danger);
    color: white;
}

.btn--danger:hover {
    background: #ff5252;
    color: white;
}

.btn--success {
    background: var(--success);
    color: var(--bg-primary);
}

.btn--success:hover {
    background: #00b89c;
    color: var(--bg-primary);
}

.btn--sm {
    padding: 6px 16px;
    font-size: 0.8rem;
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(42, 58, 74, 0.5);
    transition: all var(--transition-base);
}

.navbar--scrolled {
    background: rgba(10, 22, 40, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo:hover {
    color: var(--text-primary);
}

.logo__icon {
    display: flex;
    align-items: center;
}

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

.nav-menu__list {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-menu__link {
    display: block;
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-menu__link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-auth--mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.nav-auth--mobile .btn {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle--active .nav-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle--active .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle--active .nav-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    backdrop-filter: blur(4px);
}

.mobile-overlay--active {
    display: block;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: glowPulse 8s ease-in-out infinite;
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -3s;
}

.hero__glow--3 {
    width: 300px;
    height: 300px;
    background: var(--success);
    top: 40%;
    right: 20%;
    animation-delay: -5s;
    opacity: 0.08;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

.hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero__social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__avatars {
    display: flex;
}

.hero__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-left: -8px;
}

.hero__avatar:first-child {
    margin-left: 0;
}

.hero__stats-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero__stats-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Hero Gallery Grid */
.hero__gallery {
    perspective: 1000px;
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero__grid:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.hero__img {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.hero__img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    z-index: 2;
}

.hero__img--1 { grid-column: 1; grid-row: 1; }
.hero__img--2 { grid-column: 2; grid-row: 1; margin-top: 20px; }
.hero__img--3 { grid-column: 3; grid-row: 1; }
.hero__img--4 { grid-column: 1; grid-row: 2; margin-top: -10px; }
.hero__img--5 { grid-column: 2; grid-row: 2; }
.hero__img--6 { grid-column: 3; grid-row: 2; margin-top: 15px; }

.hero__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero__scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero__scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* --- Statistics Section --- */
.stats {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stats__item {
    text-align: center;
    padding: 24px;
}

.stats__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.stats__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 4px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats__label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Services Section --- */
.services {
    padding: 100px 0;
}

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

/* Service Card */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(74, 158, 255, 0.3);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(74, 158, 255, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-primary);
}

/* --- Templates Section --- */
.templates {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.templates__wrapper {
    position: relative;
}

.templates__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px;
    margin: -8px;
}

.templates__scroll::-webkit-scrollbar {
    display: none;
}

.template-card {
    flex: 0 0 280px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
}

.template-card:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 158, 255, 0.3);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(74, 158, 255, 0.08);
}

.template-card__img {
    aspect-ratio: 4/3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.template-card__placeholder svg {
    opacity: 0.6;
}

.template-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.template-card__badge--new {
    background: var(--success);
    color: var(--bg-primary);
}

.template-card__body {
    padding: 16px;
}

.template-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.template-card__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(74, 158, 255, 0.1);
    color: var(--accent-primary);
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid rgba(74, 158, 255, 0.2);
}

/* Template Scroll Buttons */
.templates__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.templates__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.templates__btn:hover {
    background: var(--bg-hover);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.templates__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* --- How It Works Section --- */
.how-it-works {
    padding: 100px 0;
}

.steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.step__number {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-primary);
    padding: 0 8px;
    z-index: 2;
}

.step__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--accent-primary);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.step:hover .step__icon {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.15);
    transform: scale(1.05);
}

.step__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step__desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step__connector {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin-top: 36px;
    flex-shrink: 0;
    position: relative;
}

.step__connector::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -3px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid var(--border-color);
}

/* --- Prompts Section --- */
.prompts {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.prompts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.prompt-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-base);
}

.prompt-card:hover {
    border-color: rgba(74, 158, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.prompt-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 8px;
}

.prompt-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.prompt-card__count {
    font-size: 0.7rem;
    color: var(--accent-primary);
    background: rgba(74, 158, 255, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
    border: 1px solid rgba(74, 158, 255, 0.2);
}

.prompt-card__desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.prompt-card__params {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.prompt-card__param {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 3px 0;
    border-bottom: 1px solid rgba(42, 58, 74, 0.3);
}

.prompt-card__param:last-child {
    border-bottom: none;
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-section__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: var(--accent-gradient);
    filter: blur(150px);
    opacity: 0.12;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-section__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Footer --- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__logo {
    margin-bottom: 16px;
}

.footer__about {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 280px;
}

.footer__heading {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--accent-primary);
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.footer__social:hover {
    background: var(--bg-hover);
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.footer__bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Toast Notifications --- */
.toast-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
    font-size: 0.85rem;
    min-width: 280px;
    max-width: 400px;
    animation: toastSlideIn 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toast--success {
    border-left: 3px solid var(--success);
}

.toast--error {
    border-left: 3px solid var(--danger);
}

.toast--warning {
    border-left: 3px solid var(--warning);
}

.toast--info {
    border-left: 3px solid var(--accent-primary);
}

.toast--exit {
    animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toastSlideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* --- Chat Widget --- */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.chat-widget__toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(74, 158, 255, 0.35);
    transition: all var(--transition-base);
    cursor: pointer;
}

.chat-widget__toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(74, 158, 255, 0.5);
}

.chat-widget__panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 360px;
    height: 480px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all var(--transition-base);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
}

.chat-widget__panel--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-widget__header {
    padding: 16px 20px;
    background: var(--bg-hover);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-widget__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.chat-widget__status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--success);
}

.chat-widget__status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-widget__close {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 4px;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.chat-widget__close:hover {
    color: var(--text-primary);
}

.chat-widget__messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-widget__empty {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 40px 20px;
}

.chat-message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    line-height: 1.5;
}

.chat-message--incoming {
    align-self: flex-start;
    background: var(--bg-hover);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-message--outgoing {
    align-self: flex-end;
    background: var(--accent-gradient);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-message__time {
    font-size: 0.65rem;
    opacity: 0.6;
    margin-top: 4px;
}

.chat-widget__input-area {
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 8px;
    background: var(--bg-hover);
}

.chat-widget__input {
    flex: 1;
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.chat-widget__input:focus {
    border-color: var(--accent-primary);
}

.chat-widget__input::placeholder {
    color: var(--text-muted);
}

.chat-widget__send {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--accent-gradient);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.chat-widget__send:hover {
    opacity: 0.9;
}

/* --- Status Badges --- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge--new { background: rgba(74, 158, 255, 0.15); color: var(--accent-primary); }
.status-badge--processing { background: rgba(245, 166, 35, 0.15); color: var(--warning); }
.status-badge--ready { background: rgba(0, 201, 167, 0.15); color: var(--success); }
.status-badge--completed { background: rgba(0, 201, 167, 0.15); color: var(--success); }
.status-badge--cancelled { background: rgba(255, 107, 107, 0.15); color: var(--danger); }
.status-badge--draft { background: rgba(90, 106, 122, 0.15); color: var(--text-muted); }

.status-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-badge--new .status-badge__dot { background: var(--accent-primary); }
.status-badge--processing .status-badge__dot { background: var(--warning); }
.status-badge--ready .status-badge__dot { background: var(--success); }
.status-badge--completed .status-badge__dot { background: var(--success); }
.status-badge--cancelled .status-badge__dot { background: var(--danger); }
.status-badge--draft .status-badge__dot { background: var(--text-muted); }

/* --- Forms --- */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-label__required {
    color: var(--danger);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:disabled,
.form-select:disabled,
.form-textarea:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238899aa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-error {
    font-size: 0.75rem;
    color: var(--danger);
    margin-top: 4px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form-checkbox__input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent-primary);
}

.form-checkbox__label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* --- Auth Pages --- */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 40px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.auth-card__header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-card__logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.auth-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth-card__subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-card__footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- Drag & Drop Zone --- */
.dropzone {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px 24px;
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    background: var(--bg-card);
}

.dropzone:hover {
    border-color: var(--accent-primary);
    background: rgba(74, 158, 255, 0.03);
}

.dropzone--active {
    border-color: var(--accent-primary);
    background: rgba(74, 158, 255, 0.05);
    box-shadow: 0 0 30px rgba(74, 158, 255, 0.1);
}

.dropzone__icon {
    margin-bottom: 16px;
    color: var(--text-muted);
}

.dropzone__text {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.dropzone__hint {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dropzone__input {
    display: none;
}

/* --- Order Wizard --- */
.wizard {
    max-width: 800px;
    margin: 0 auto;
}

.wizard__progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
}

.wizard__progress-bar {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.wizard__progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    transition: width var(--transition-slow);
}

.wizard__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.wizard__step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all var(--transition-base);
}

.wizard__step--active .wizard__step-number {
    border-color: var(--accent-primary);
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.3);
}

.wizard__step--completed .wizard__step-number {
    border-color: var(--success);
    background: var(--success);
    color: var(--bg-primary);
}

.wizard__step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.wizard__step--active .wizard__step-label {
    color: var(--accent-primary);
}

.wizard__content {
    min-height: 300px;
}

.wizard__step-content {
    display: none;
}

.wizard__step-content--active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.wizard__nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Tabs --- */
.tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-card);
    padding: 4px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex: 1;
    text-align: center;
}

.tab--active {
    background: var(--bg-hover);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tab:hover:not(.tab--active) {
    color: var(--text-primary);
}

.tab-panel {
    display: none;
}

.tab-panel--active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* --- Status Bar --- */
.status-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 24px 0;
}

.status-bar__item {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.status-bar__item:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.status-bar__item:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.status-bar__item:not(:last-child) {
    border-right: none;
}

.status-bar__item--completed {
    background: rgba(0, 201, 167, 0.1);
    color: var(--success);
    border-color: rgba(0, 201, 167, 0.3);
}

.status-bar__item--active {
    background: rgba(74, 158, 255, 0.1);
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.gallery-item:hover {
    border-color: var(--accent-primary);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item__placeholder {
    color: var(--text-muted);
}

/* --- Before/After --- */
.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.before-after__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.before-after__label {
    padding: 8px 12px;
    background: var(--bg-hover);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
}

.before-after__label--after {
    background: rgba(0, 201, 167, 0.1);
    color: var(--success);
}

/* --- Order Table --- */
.order-table {
    width: 100%;
    border-collapse: collapse;
}

.order-table th,
.order-table td {
    padding: 14px 16px;
    text-align: left;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.order-table th {
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
}

.order-table td {
    color: var(--text-primary);
}

.order-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.order-table__preview {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--bg-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.order-table__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.pagination__btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(74, 158, 255, 0.05);
}

.pagination__btn--active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
}

.pagination__btn--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* --- Page Header --- */
.page-header {
    padding: 120px 0 40px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.page-header__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.page-header__subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-left"] {
    transform: translateX(-24px);
}

[data-animate="fade-left"].animated {
    transform: translateX(0);
}

[data-animate="fade-right"] {
    transform: translateX(24px);
}

[data-animate="fade-right"].animated {
    transform: translateX(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="450"] { transition-delay: 0.45s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* --- Profile Page --- */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.profile-info__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.profile-info__email {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.profile-stat {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.profile-stat__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.profile-stat__label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* --- Designer Dashboard --- */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.dashboard-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition-base);
}

.dashboard-stat:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.dashboard-stat__value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.dashboard-stat__label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 3rem;
    }

    .hero__container {
        gap: 40px;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .step__connector {
        width: 30px;
    }
}

@media (max-width: 768px) {
    .section__title {
        font-size: 1.75rem;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__social-proof {
        justify-content: center;
    }

    .hero__gallery {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__grid {
        transform: none;
    }

    .hero__scroll-indicator {
        display: none;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stats__number {
        font-size: 2rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .prompts__grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        gap: 32px;
    }

    .step__connector {
        width: 2px;
        height: 30px;
        margin: 0 auto;
    }

    .step__connector::after {
        display: none;
    }

    .step {
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-section__title {
        font-size: 1.75rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__about {
        max-width: 100%;
    }

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 80px 24px 24px;
        transition: right var(--transition-base);
        z-index: 999;
        border-left: 1px solid var(--border-color);
        overflow-y: auto;
    }

    .nav-menu--open {
        right: 0;
    }

    .nav-menu__list {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .nav-menu__link {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-auth--desktop {
        display: none;
    }

    .nav-auth--mobile {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .chat-widget__panel {
        width: calc(100vw - 48px);
        right: -12px;
    }

    .auth-card {
        padding: 24px;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .order-table {
        display: block;
        overflow-x: auto;
    }

    .page-header__title {
        font-size: 1.5rem;
    }

    .wizard__progress {
        margin-bottom: 32px;
    }

    .wizard__step-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.85rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stats__item {
        padding: 16px 8px;
    }

    .stats__number {
        font-size: 1.5rem;
    }

    .stats__icon {
        width: 48px;
        height: 48px;
    }

    .stats__icon svg {
        width: 24px;
        height: 24px;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .btn--lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .templates__btn {
        width: 36px;
        height: 36px;
    }
}

/* --- Print --- */
@media print {
    .navbar, .footer, .chat-widget, .toast-container {
        display: none !important;
    }

    .main {
        min-height: auto;
    }
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* --- Selection --- */
::selection {
    background: rgba(74, 158, 255, 0.3);
    color: var(--text-primary);
}

/* --- Focus Visible --- */
:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}
