/* ===== AVELA BRAND TOKENS ===== */
:root {
    /* Colors */
    --av-bg: #1f1e1e;
    --av-surface-dark: #232222;
    --av-surface-light: #e3d7cd;
    --av-text-on-dark: #edeae6;
    --av-text-on-light: #1f1e1e;
    --av-teal: #0ca1b2;
    --av-orange: #fe5f1b;
    --av-border-on-dark: rgba(227, 215, 205, 0.14);
    --av-border-on-light: rgba(31, 30, 30, 0.14);

    /* Gradients */
    --av-glow: linear-gradient(135deg, #0ca1b2 0%, #fe5f1b 100%);

    /* Radii - big rounded */
    --av-radius-card-xl: 32px;
    --av-radius-card: 24px;
    --av-radius-pill: 999px;

    /* Shadow */
    --av-shadow-soft: 0 12px 30px rgba(0,0,0,0.25);

    /* Typography */
    --av-font-logo: "Outfit", system-ui, sans-serif;
    --av-font-ui: Helvetica, Arial, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --av-logo-tracking: -0.06em;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--av-font-ui);
    font-weight: 400;
    line-height: 1.6;
    color: var(--av-text-on-dark);
    background-color: var(--av-bg);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* Better touch targets */
@media (hover: none) and (pointer: coarse) {
    button, a, input, select, textarea {
        min-height: 44px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--av-bg);
    border-bottom: 1px solid var(--av-border-on-dark);
}

.header-top {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) auto minmax(100px, 1fr);
    align-items: center;
    padding: 20px 32px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Скрыть весь header на главной странице */
.homepage .header {
    display: none;
}

/* Hero на главной начинается с самого верха */
.homepage .main {
    padding-top: 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-start;
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 200px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-end;
}

.logo {
    display: inline-block;
    height: 80px !important;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 1;
}

.logo img {
    height: 100%;
    width: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.header-icon {
    padding: 10px;
    color: var(--av-text-on-dark);
    position: relative;
    transition: color 0.2s ease;
    border-radius: var(--av-radius-pill);
}

.header-icon:hover {
    color: var(--av-orange);
    opacity: 1;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--av-orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu Toggle - Clean hamburger icon */
.menu-toggle {
    width: 18px;
    height: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    margin: -12px;
    box-sizing: content-box;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--av-text-on-dark);
    transition: all 0.3s ease;
    opacity: 0.85;
}

.menu-toggle:hover span {
    opacity: 1;
}

.menu-toggle:active span {
    opacity: 0.6;
}

/* Main Nav */
.main-nav {
    display: none;
    padding: 16px 32px;
    border-bottom: 1px solid var(--av-border-on-dark);
    background: var(--av-bg);
}

@media (min-width: 768px) {
    .main-nav {
        display: block;
    }
    .menu-toggle {
        display: none;
    }
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 56px;
}

.nav-link {
    font-size: 15px;
    font-weight: 400;
    color: rgba(237, 234, 230, 0.6);
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--av-orange);
    opacity: 1;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--av-surface-dark);
    padding: 32px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    border-bottom: 1px solid var(--av-border-on-dark);
}

.search-overlay.active {
    transform: translateY(0);
}

.search-container {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    gap: 20px;
}

.search-input {
    flex: 1;
    padding: 18px 24px;
    font-size: 18px;
    border: 1px solid var(--av-border-on-dark);
    border-radius: var(--av-radius-pill);
    outline: none;
    background: var(--av-bg);
    color: var(--av-text-on-dark);
    transition: border-color 0.2s ease;
}

.search-input::placeholder {
    color: rgba(237, 234, 230, 0.4);
}

.search-input:focus {
    border-color: var(--av-teal);
}

.search-close {
    padding: 12px;
    color: var(--av-text-on-dark);
    border-radius: var(--av-radius-pill);
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 360px;
    height: 100vh;
    background: var(--av-surface-dark);
    color: var(--av-text-on-dark);
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    border-bottom: 1px solid var(--av-border-on-dark);
}

.sidebar-title {
    font-family: var(--av-font-logo);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: var(--av-logo-tracking);
    background: var(--av-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-close svg {
    stroke: var(--av-text-on-dark);
}

.sidebar-nav ul {
    padding: 32px;
}

.sidebar-nav li {
    margin-bottom: 24px;
}

.sidebar-nav a {
    font-size: 17px;
    color: rgba(237, 234, 230, 0.7);
    transition: color 0.2s ease;
}

.sidebar-nav a:hover {
    color: var(--av-orange);
    opacity: 1;
}

.sidebar-divider {
    height: 1px;
    background: var(--av-border-on-dark);
    margin: 0 32px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== MAIN ===== */
.main {
    padding-top: 80px;
    background: var(--av-bg);
    min-height: 100vh;
}

@media (min-width: 768px) {
    .main {
        padding-top: 120px;
    }
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background: var(--av-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 24px;
}

/* Hero на главной занимает весь экран */
.homepage .hero {
    min-height: 100vh;
    padding-top: 80px;
}

/* Glow Layer */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at 30% 30%, rgba(12, 161, 178, 0.35) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(254, 95, 27, 0.35) 0%, transparent 50%);
    filter: blur(90px);
    opacity: 0.5;
    animation: heroGlow 15s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-48%, -52%) scale(1.1); }
}

.hero-content {
    padding: 40px;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-family: var(--av-font-logo);
    font-size: clamp(56px, 14vw, 96px);
    font-weight: 400;
    letter-spacing: var(--av-logo-tracking);
    margin-bottom: 20px;
    background: var(--av-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title img {
    height: clamp(120px, 20vw, 220px);
    width: auto;
    display: block;
    margin: 0 auto;
}

.hero-tagline {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 32px;
}

.hero-tagline span {
    font-size: 14px;
    color: rgba(237, 234, 230, 0.4);
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 48px;
    color: rgba(237, 234, 230, 0.5);
}

.hero-btn {
    display: inline-block;
    padding: 20px 64px;
    background: var(--av-glow);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--av-radius-pill);
    transition: all 0.3s ease;
    box-shadow: var(--av-shadow-soft), 0 0 40px rgba(254, 95, 27, 0.3);
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--av-shadow-soft), 0 0 60px rgba(254, 95, 27, 0.5);
    opacity: 1;
}

/* Hero Menu Button (слева на главной) */
.hero-menu {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 10;
}

.hero-menu-btn {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
    width: 48px;
    height: 48px;
}

.hero-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--av-text-on-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Icons (на главной странице) */
.hero-icons {
    position: absolute;
    top: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero-icon {
    padding: 12px;
    color: var(--av-text-on-dark);
    position: relative;
    transition: all 0.2s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.hero-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-icon.cart-icon .cart-count {
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--av-glow);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 999px;
    min-width: 18px;
    text-align: center;
}

/* ===== IMPORT REQUEST (Привезём из-за границы) ===== */
.import-request {
    padding: 100px 32px;
    background: var(--av-surface-dark);
    position: relative;
    overflow: hidden;
}

.import-request::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(12, 161, 178, 0.2) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}

.import-request-container {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.import-request-icon {
    margin-bottom: 24px;
}

.import-request-icon svg {
    stroke: var(--av-teal);
}

.import-request-title {
    font-family: var(--av-font-logo);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: var(--av-logo-tracking);
    margin-bottom: 16px;
    color: var(--av-text-on-dark);
}

.import-request-subtitle {
    font-size: 17px;
    color: rgba(237, 234, 230, 0.5);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Step 1: Ввод ссылки */
.import-input-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.import-input {
    flex: 1;
    padding: 18px 28px;
    font-size: 16px;
    border: 1px solid var(--av-border-on-dark);
    background: var(--av-bg);
    border-radius: var(--av-radius-pill);
    outline: none;
    transition: all 0.2s ease;
    color: var(--av-text-on-dark);
}

.import-input:focus {
    border-color: var(--av-teal);
}

.import-input::placeholder {
    color: rgba(237, 234, 230, 0.35);
}

.import-submit-btn {
    width: 60px;
    background: var(--av-glow);
    color: white;
    border-radius: var(--av-radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.import-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 24px rgba(254, 95, 27, 0.4);
}

.import-submit-btn:disabled {
    background: rgba(237, 234, 230, 0.1);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.import-hint {
    font-size: 14px;
    color: rgba(237, 234, 230, 0.4);
}

.import-error {
    font-size: 14px;
    color: #ff6b6b;
    margin-top: 12px;
    min-height: 20px;
}

/* Step 2: Превью */
.import-preview {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--av-surface-light);
    border-radius: var(--av-radius-card);
    margin-bottom: 24px;
    text-align: left;
}

.import-preview-image {
    width: 120px;
    height: 160px;
    flex-shrink: 0;
    background: white;
    border-radius: var(--av-radius-card);
    overflow: hidden;
}

.import-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.import-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--av-text-on-light);
}

.import-preview-no-image {
    background: linear-gradient(135deg, rgba(12, 161, 178, 0.1) 0%, rgba(254, 95, 27, 0.1) 100%);
    color: rgba(31, 30, 30, 0.3);
    flex-direction: column;
    gap: 8px;
}

.import-preview-fallback {
    display: block;
    font-weight: 500;
}

.import-preview-hint {
    display: block;
    font-size: 13px;
    color: rgba(237, 234, 230, 0.5);
    margin-top: 6px;
    font-weight: 400;
}

.import-preview-price {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--av-orange);
    margin-top: 8px;
}

.import-preview-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.import-preview-site {
    font-size: 12px;
    color: var(--av-teal);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
}

.import-preview-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--av-text-on-light);
}

.import-preview-link {
    font-size: 14px;
    color: var(--av-orange);
    text-decoration: none;
    margin-top: 12px;
    font-weight: 500;
}

.import-preview-link:hover {
    text-decoration: underline;
    opacity: 1;
}

.import-change-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid var(--av-border-on-dark);
    border-radius: var(--av-radius-pill);
    font-size: 15px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    color: var(--av-text-on-dark);
}

.import-change-btn:hover {
    border-color: var(--av-text-on-dark);
}

.import-next-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--av-glow);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--av-radius-pill);
    transition: all 0.2s ease;
}

.import-next-btn:hover {
    box-shadow: 0 4px 24px rgba(254, 95, 27, 0.4);
}

/* Step 3: Форма */
.import-form {
    text-align: left;
    margin-bottom: 28px;
}

.import-form-group {
    margin-bottom: 20px;
}

.import-form-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: rgba(237, 234, 230, 0.6);
    margin-bottom: 10px;
}

.import-form-input,
.import-form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--av-border-on-dark);
    background: var(--av-bg);
    border-radius: var(--av-radius-pill);
    outline: none;
    transition: all 0.2s ease;
    color: var(--av-text-on-dark);
}

.import-form-input:focus,
.import-form-textarea:focus {
    border-color: var(--av-teal);
}

.import-form-textarea {
    resize: vertical;
    min-height: 100px;
    border-radius: var(--av-radius-card);
}

.import-form-actions {
    display: flex;
    gap: 16px;
}

.import-back-btn {
    flex: 1;
    padding: 18px;
    background: transparent;
    border: 1px solid var(--av-border-on-dark);
    border-radius: var(--av-radius-pill);
    font-size: 15px;
    transition: all 0.2s ease;
    color: var(--av-text-on-dark);
}

.import-back-btn:hover {
    border-color: var(--av-text-on-dark);
}

.import-send-btn {
    flex: 2;
    padding: 18px;
    background: var(--av-glow);
    color: white;
    border-radius: var(--av-radius-pill);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.import-send-btn:hover {
    box-shadow: 0 4px 24px rgba(254, 95, 27, 0.4);
}

/* Step 4: Успех */
.import-success {
    padding: 32px 0;
}

.import-success-icon {
    margin-bottom: 24px;
}

.import-success-icon svg {
    stroke: var(--av-teal);
}

.import-success-title {
    font-family: var(--av-font-logo);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: var(--av-logo-tracking);
    margin-bottom: 14px;
    color: var(--av-text-on-dark);
}

.import-success-text {
    font-size: 16px;
    color: rgba(237, 234, 230, 0.5);
    margin-bottom: 32px;
    line-height: 1.7;
}

.import-new-btn {
    padding: 18px 40px;
    background: transparent;
    border: 1px solid var(--av-border-on-dark);
    border-radius: var(--av-radius-pill);
    font-size: 15px;
    transition: all 0.2s ease;
    color: var(--av-text-on-dark);
}

.import-new-btn:hover {
    border-color: var(--av-text-on-dark);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .import-request {
        padding: 40px 16px;
    }

    .import-preview {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .import-preview-image {
        width: 160px;
        height: 200px;
    }

    .import-preview-info {
        align-items: center;
    }

    .import-form-actions {
        flex-direction: column;
    }

    .import-back-btn,
    .import-send-btn {
        flex: none;
    }
}

/* Categories */
.categories {
    padding: 100px 32px;
    background: var(--av-bg);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    display: block;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    opacity: 1;
}

.category-image {
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: var(--av-surface-light);
    border-radius: var(--av-radius-card-xl);
    overflow: hidden;
    box-shadow: var(--av-shadow-soft);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-placeholder {
    font-family: var(--av-font-logo);
    font-size: 40px;
    font-weight: 400;
    letter-spacing: var(--av-logo-tracking);
    color: var(--av-text-on-light);
    opacity: 0.25;
}

.category-title {
    font-size: 16px;
    font-weight: 400;
    color: var(--av-text-on-dark);
}

/* New Arrivals */
.new-arrivals {
    padding: 100px 32px;
    text-align: center;
    background: var(--av-surface-dark);
}

.section-title {
    font-family: var(--av-font-logo);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: var(--av-logo-tracking);
    margin-bottom: 56px;
    color: var(--av-text-on-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto 56px;
}

.product-card {
    text-align: left;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    opacity: 1;
}

.product-image {
    aspect-ratio: 3/4;
    background: var(--av-surface-light);
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    border-radius: var(--av-radius-card);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-name {
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--av-text-on-dark);
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--av-text-on-dark);
}

.product-price-old {
    text-decoration: line-through;
    color: rgba(237, 234, 230, 0.4);
    margin-right: 10px;
    font-weight: 400;
}

.product-out-of-stock {
    color: rgba(237, 234, 230, 0.4);
    font-size: 14px;
}

.product-placeholder {
    aspect-ratio: 3/4;
    background: var(--av-bg);
    border-radius: var(--av-radius-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(237, 234, 230, 0.3);
    border: 1px solid var(--av-border-on-dark);
}

.product-image-placeholder {
    width: 64px;
    height: 64px;
    border: 1px solid var(--av-border-on-dark);
    border-radius: var(--av-radius-card);
    margin-bottom: 16px;
}

.view-all-btn {
    display: inline-block;
    padding: 18px 56px;
    border: 1px solid var(--av-border-on-dark);
    border-radius: var(--av-radius-pill);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
    color: var(--av-text-on-dark);
}

.view-all-btn:hover {
    border-color: var(--av-text-on-dark);
    opacity: 1;
}

/* Promo Banner */
.promo-banner {
    background: var(--av-bg);
    color: var(--av-text-on-dark);
    padding: 80px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(254, 95, 27, 0.15) 0%, transparent 50%);
    filter: blur(60px);
    pointer-events: none;
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-title {
    font-family: var(--av-font-logo);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: var(--av-logo-tracking);
    margin-bottom: 12px;
}

.promo-text {
    font-size: 16px;
    color: rgba(237, 234, 230, 0.5);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--av-surface-dark);
    color: var(--av-text-on-dark);
    padding: 80px 32px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto 56px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--av-text-on-dark);
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(237, 234, 230, 0.5);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--av-orange);
    opacity: 1;
}

.footer-text {
    font-size: 15px;
    color: rgba(237, 234, 230, 0.5);
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 12px;
}

.subscribe-input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid var(--av-border-on-dark);
    border-radius: var(--av-radius-pill);
    background: var(--av-bg);
    color: var(--av-text-on-dark);
    font-size: 15px;
}

.subscribe-input::placeholder {
    color: rgba(237, 234, 230, 0.35);
}

.subscribe-input:focus {
    outline: none;
    border-color: var(--av-teal);
}

.subscribe-btn {
    padding: 16px 28px;
    background: var(--av-glow);
    color: white;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--av-radius-pill);
    transition: all 0.2s ease;
}

.subscribe-btn:hover {
    box-shadow: 0 4px 20px rgba(254, 95, 27, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--av-border-on-dark);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(237, 234, 230, 0.4);
    margin-bottom: 6px;
}

.footer-note {
    font-size: 13px;
    color: rgba(237, 234, 230, 0.25);
}

/* ===== CATALOG PAGE ===== */
.catalog-header {
    padding: 48px 32px;
    text-align: center;
    border-bottom: 1px solid var(--av-border-on-dark);
    background: var(--av-bg);
}

.catalog-title {
    font-family: var(--av-font-logo);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: var(--av-logo-tracking);
    color: var(--av-text-on-dark);
}

.categories-section {
    padding: 60px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 3/4;
    display: block;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
}

.category-card-title {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    font-family: var(--av-font-logo);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #fff;
    z-index: 1;
}

.catalog-categories-section {
    padding: 80px 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.catalog-categories-title {
    font-family: var(--av-font-logo);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--av-text-on-dark);
    margin-bottom: 48px;
}

.catalog-categories-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.catalog-category-btn {
    display: block;
    padding: 24px 32px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--av-text-on-dark);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--av-border-on-dark);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.catalog-category-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--av-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 161, 178, 0.15);
}

.catalog-filters {
    padding: 20px 32px;
    border-bottom: 1px solid var(--av-border-on-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--av-surface-dark);
}

.filter-group {
    display: flex;
    gap: 28px;
    align-items: center;
}

.filter-btn {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    color: rgba(237, 234, 230, 0.5);
    transition: all 0.2s ease;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--av-glow);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.filter-btn:hover {
    color: var(--av-text-on-dark);
}

.filter-btn.active {
    color: var(--av-text-on-dark);
}

.filter-btn.active::after {
    transform: scaleX(1);
}

.sort-select {
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(237, 234, 230, 0.8);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(237,234,230,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.sort-select:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sort-select:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.catalog-content {
    padding: 48px 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

/* ===== PRODUCT PAGE ===== */
.product-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 32px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
}

@media (min-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.product-gallery {
    display: grid;
    gap: 12px;
}

.product-main-image {
    aspect-ratio: 3/4;
    background: var(--av-surface-light);
    border-radius: var(--av-radius-card-xl);
    overflow: hidden;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
}

.product-thumbnail {
    width: 72px;
    height: 96px;
    background: var(--av-surface-light);
    border-radius: var(--av-radius-card);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.product-thumbnail.active {
    opacity: 1;
}

.product-info {
    padding-top: 20px;
}

.product-info h1 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--av-text-on-dark);
}

.product-info .price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--av-text-on-dark);
}

.product-description {
    font-size: 16px;
    color: rgba(237, 234, 230, 0.6);
    margin-bottom: 32px;
    line-height: 1.8;
}

.size-selector {
    margin-bottom: 32px;
}

.size-label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 14px;
    display: block;
    color: rgba(237, 234, 230, 0.6);
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-btn {
    min-width: 52px;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(237, 234, 230, 0.8);
}

.size-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.12);
    color: var(--av-text-on-dark);
}

.size-btn.selected {
    background: var(--av-glow);
    color: white;
}

.size-btn:disabled {
    color: rgba(237, 234, 230, 0.2);
    background: rgba(255, 255, 255, 0.02);
    cursor: not-allowed;
}

.add-to-cart-btn {
    width: 100%;
    padding: 20px;
    background: var(--av-glow);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--av-radius-pill);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(254, 95, 27, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(254, 95, 27, 0.4);
}

.add-to-cart-btn:disabled {
    background: rgba(237, 234, 230, 0.1);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

/* ===== CART PAGE ===== */
.cart-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 32px;
}

.cart-page h1 {
    font-family: var(--av-font-logo);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: var(--av-logo-tracking);
    margin-bottom: 40px;
    text-align: center;
    color: var(--av-text-on-dark);
}

.cart-empty {
    text-align: center;
    padding: 80px 0;
    color: rgba(237, 234, 230, 0.5);
    font-size: 16px;
}

.cart-items {
    border-top: 1px solid var(--av-border-on-dark);
}

.cart-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--av-border-on-dark);
}

.cart-item-image {
    aspect-ratio: 3/4;
    background: var(--av-surface-light);
    border-radius: var(--av-radius-card);
    overflow: hidden;
}

.cart-item-info h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--av-text-on-dark);
}

.cart-item-details {
    font-size: 14px;
    color: rgba(237, 234, 230, 0.5);
    margin-bottom: 20px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--av-border-on-dark);
    border-radius: var(--av-radius-pill);
    font-size: 18px;
    background: transparent;
    color: var(--av-text-on-dark);
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    border-color: var(--av-teal);
}

.quantity-value {
    font-size: 16px;
    min-width: 28px;
    text-align: center;
    font-weight: 700;
    color: var(--av-text-on-dark);
}

.cart-item-price {
    text-align: right;
}

.cart-item-price .price {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--av-text-on-dark);
}

.remove-btn {
    font-size: 14px;
    color: var(--av-orange);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.remove-btn:hover {
    text-decoration: underline;
    opacity: 1;
}

.cart-summary {
    padding: 40px 0;
    text-align: right;
}

.cart-total {
    font-size: 20px;
    margin-bottom: 28px;
    color: var(--av-text-on-dark);
}

.cart-total span {
    font-weight: 700;
}

.checkout-btn {
    display: inline-block;
    padding: 20px 56px;
    background: var(--av-glow);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--av-radius-pill);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(254, 95, 27, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(254, 95, 27, 0.4);
    opacity: 1;
}

/* ===== ACCOUNT PAGE ===== */
.account-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 32px;
}

.account-page h1 {
    font-family: var(--av-font-logo);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: var(--av-logo-tracking);
    margin-bottom: 56px;
    text-align: center;
    color: var(--av-text-on-dark);
}

.account-section {
    margin-bottom: 40px;
}

.account-section-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(237, 234, 230, 0.5);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--av-border-on-dark);
}

.profile-info p {
    font-size: 15px;
    color: var(--av-text-on-dark);
    margin-bottom: 12px;
}

.profile-label {
    color: rgba(237, 234, 230, 0.5);
}

.logout-btn {
    background: rgba(237, 234, 230, 0.1) !important;
    box-shadow: none !important;
}

.logout-btn:hover {
    background: rgba(237, 234, 230, 0.15) !important;
    transform: none !important;
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    color: rgba(237, 234, 230, 0.6);
}

.form-input {
    width: 100%;
    padding: 18px 22px;
    border: 1px solid var(--av-border-on-dark);
    border-radius: var(--av-radius-pill);
    font-size: 16px;
    background: var(--av-bg);
    color: var(--av-text-on-dark);
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--av-teal);
}

.form-input::placeholder {
    color: rgba(237, 234, 230, 0.35);
}

.form-btn {
    width: 100%;
    padding: 20px;
    background: var(--av-glow);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--av-radius-pill);
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(254, 95, 27, 0.3);
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(254, 95, 27, 0.4);
}

.form-link {
    display: block;
    text-align: center;
    margin-top: 28px;
    font-size: 15px;
    color: rgba(237, 234, 230, 0.5);
}

.form-link a {
    color: var(--av-orange);
    text-decoration: none;
}

.form-link a:hover {
    text-decoration: underline;
    opacity: 1;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 32px;
}

.checkout-page h1 {
    font-family: var(--av-font-logo);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: var(--av-logo-tracking);
    margin-bottom: 56px;
    text-align: center;
    color: var(--av-text-on-dark);
}

.checkout-section {
    margin-bottom: 56px;
}

.checkout-section h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--av-border-on-dark);
    color: var(--av-text-on-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--av-border-on-dark);
    border-radius: var(--av-radius-card);
    cursor: pointer;
    transition: all 0.2s ease;
}

.delivery-option:hover {
    border-color: var(--av-teal);
}

.delivery-option.selected {
    border-color: var(--av-teal);
    background: rgba(12, 161, 178, 0.08);
}

.delivery-option input {
    display: none;
}

.delivery-radio {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(237, 234, 230, 0.3);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.delivery-option.selected .delivery-radio {
    border-color: var(--av-teal);
}

.delivery-option.selected .delivery-radio::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    background: var(--av-teal);
    border-radius: 50%;
}

.delivery-info {
    flex: 1;
}

.delivery-name {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--av-text-on-dark);
}

.delivery-desc {
    font-size: 14px;
    color: rgba(237, 234, 230, 0.5);
}

.delivery-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--av-text-on-dark);
}

/* CDEK Pickup section */
.pickup-section {
    margin-top: 24px;
}

.pickup-btn {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: 1px dashed var(--av-border-on-dark);
    border-radius: var(--av-radius-pill);
    color: var(--av-teal);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pickup-btn:hover {
    border-color: var(--av-teal);
    background: rgba(12, 161, 178, 0.05);
}

.pickup-result {
    margin-top: 16px;
    padding: 18px 22px;
    background: rgba(12, 161, 178, 0.08);
    border: 1px solid var(--av-teal);
    border-radius: var(--av-radius-card);
    color: var(--av-text-on-dark);
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.pickup-result.visible {
    display: block;
}

.pickup-result-address {
    margin-bottom: 8px;
}

.pickup-change {
    color: var(--av-teal);
    font-size: 13px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-decoration: underline;
}

.order-summary {
    background: var(--av-surface-dark);
    padding: 28px;
    border-radius: var(--av-radius-card);
    border: 1px solid var(--av-border-on-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 15px;
    color: rgba(237, 234, 230, 0.7);
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--av-border-on-dark);
    font-weight: 700;
    font-size: 18px;
    color: var(--av-text-on-dark);
}

.pay-btn {
    width: 100%;
    padding: 20px;
    background: var(--av-glow);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--av-radius-pill);
    margin-top: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(254, 95, 27, 0.3);
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(254, 95, 27, 0.4);
}

/* ===== ORDER PAGE ===== */
.order-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 32px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.order-header h1 {
    font-family: var(--av-font-logo);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: var(--av-logo-tracking);
    color: var(--av-text-on-dark);
    margin-bottom: 8px;
}

.order-header h1 span {
    color: var(--av-orange);
}

.order-date {
    font-size: 14px;
    color: rgba(237, 234, 230, 0.5);
}

.order-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--av-radius-pill);
    background: rgba(237, 234, 230, 0.1);
    font-size: 14px;
    font-weight: 500;
    color: var(--av-text-on-dark);
}

.order-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--av-orange);
}

.order-status[data-status="pending"] .order-status-dot { background: #f59e0b; }
.order-status[data-status="processing"] .order-status-dot { background: var(--av-teal); }
.order-status[data-status="shipped"] .order-status-dot { background: #8b5cf6; }
.order-status[data-status="delivered"] .order-status-dot { background: #22c55e; }
.order-status[data-status="cancelled"] .order-status-dot { background: #ef4444; }

/* Order Progress */
.order-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    padding: 32px;
    background: var(--av-surface-dark);
    border-radius: var(--av-radius-card);
    border: 1px solid var(--av-border-on-dark);
}

.order-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(237, 234, 230, 0.3);
    font-size: 13px;
    text-align: center;
}

.order-progress-step.completed {
    color: var(--av-teal);
}

.order-progress-step.active {
    color: var(--av-orange);
}

.order-progress-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(237, 234, 230, 0.05);
    border: 2px solid rgba(237, 234, 230, 0.1);
    transition: all 0.3s ease;
}

.order-progress-step.completed .order-progress-icon {
    background: rgba(12, 161, 178, 0.15);
    border-color: var(--av-teal);
}

.order-progress-step.active .order-progress-icon {
    background: rgba(254, 95, 27, 0.15);
    border-color: var(--av-orange);
}

.order-progress-line {
    flex: 1;
    height: 2px;
    background: rgba(237, 234, 230, 0.1);
    margin: 0 8px;
    margin-bottom: 32px;
}

.order-progress-line.completed {
    background: var(--av-teal);
}

/* Order Sections */
.order-section {
    margin-bottom: 32px;
}

.order-section h2 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(237, 234, 230, 0.5);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--av-border-on-dark);
}

/* Order Items */
.order-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    padding: 20px;
    background: var(--av-surface-dark);
    border-radius: var(--av-radius-card);
    border: 1px solid var(--av-border-on-dark);
}

.order-item-image {
    width: 80px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--av-surface-light);
}

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

.order-item-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 161, 178, 0.1) 0%, rgba(254, 95, 27, 0.1) 100%);
}

.order-item-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--av-text-on-dark);
    margin-bottom: 8px;
}

.order-item-info p {
    font-size: 14px;
    color: rgba(237, 234, 230, 0.5);
    margin-bottom: 4px;
}

.order-item-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--av-text-on-dark);
    white-space: nowrap;
}

/* Order Delivery */
.order-delivery {
    padding: 24px;
    background: var(--av-surface-dark);
    border-radius: var(--av-radius-card);
    border: 1px solid var(--av-border-on-dark);
}

.order-delivery-method {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--av-border-on-dark);
}

.order-delivery-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 161, 178, 0.1);
    border-radius: 12px;
    color: var(--av-teal);
}

.order-delivery-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--av-text-on-dark);
    margin-bottom: 4px;
}

.order-delivery-desc {
    font-size: 14px;
    color: rgba(237, 234, 230, 0.5);
}

.order-address p {
    font-size: 15px;
    color: var(--av-text-on-dark);
    margin-bottom: 8px;
}

.order-address p:last-child {
    color: rgba(237, 234, 230, 0.5);
    font-size: 14px;
}

.order-tracking {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--av-border-on-dark);
}

.order-tracking-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--av-teal);
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.order-tracking-link:hover {
    opacity: 0.8;
}

/* Order Payment */
.order-payment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: var(--av-surface-dark);
    border-radius: var(--av-radius-card);
    border: 1px solid var(--av-border-on-dark);
}

.order-payment-method {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--av-text-on-dark);
}

.order-payment-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 95, 27, 0.1);
    border-radius: 12px;
    color: var(--av-orange);
}

.order-payment-status {
    font-size: 14px;
    color: rgba(237, 234, 230, 0.5);
}

.order-payment-status.paid {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
}

.order-payment-status.failed {
    color: #ff6b6b;
}

/* Order Summary */
.order-summary {
    padding: 24px;
    background: var(--av-surface-dark);
    border-radius: var(--av-radius-card);
    border: 1px solid var(--av-border-on-dark);
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(237, 234, 230, 0.7);
}

.order-summary-row:last-child {
    margin-bottom: 0;
}

.order-summary-row.total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--av-border-on-dark);
    font-size: 18px;
    font-weight: 600;
    color: var(--av-text-on-dark);
}

/* Order Actions */
.order-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.order-repeat-btn,
.order-help-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    border-radius: var(--av-radius-pill);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.order-repeat-btn {
    background: var(--av-glow);
    color: white;
    box-shadow: 0 4px 20px rgba(254, 95, 27, 0.3);
}

.order-repeat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(254, 95, 27, 0.4);
}

.order-help-btn {
    background: transparent;
    border: 1px solid var(--av-border-on-dark);
    color: var(--av-text-on-dark);
}

.order-help-btn:hover {
    border-color: var(--av-text-on-dark);
}

/* Orders List (Account Page) */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.orders-empty {
    text-align: center;
    padding: 40px 20px;
    color: rgba(237, 234, 230, 0.5);
    font-size: 15px;
}

.order-card {
    display: block;
    padding: 24px;
    background: var(--av-surface-dark);
    border-radius: var(--av-radius-card);
    border: 1px solid var(--av-border-on-dark);
    transition: all 0.2s ease;
}

.order-card:hover {
    border-color: var(--av-teal);
    transform: translateY(-2px);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.order-card-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--av-orange);
    margin-bottom: 4px;
}

.order-card-date {
    font-size: 13px;
    color: rgba(237, 234, 230, 0.5);
}

.order-card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--av-radius-pill);
    background: rgba(237, 234, 230, 0.1);
    font-size: 12px;
    color: var(--av-text-on-dark);
}

.order-card-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.order-card-status[data-status="pending"] .order-card-status-dot { background: #f59e0b; }
.order-card-status[data-status="paid"] .order-card-status-dot { background: #14b8a6; }
.order-card-status[data-status="processing"] .order-card-status-dot { background: var(--av-teal); }
.order-card-status[data-status="shipped"] .order-card-status-dot { background: #8b5cf6; }
.order-card-status[data-status="delivered"] .order-card-status-dot { background: #22c55e; }
.order-card-status[data-status="cancelled"] .order-card-status-dot { background: #ef4444; }

.order-card-items {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.order-card-item-thumb {
    width: 48px;
    height: 60px;
    border-radius: 8px;
    background: var(--av-surface-light);
    overflow: hidden;
}

.order-card-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-card-item-more {
    width: 48px;
    height: 60px;
    border-radius: 8px;
    background: rgba(237, 234, 230, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(237, 234, 230, 0.5);
}

.order-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--av-border-on-dark);
}

.order-card-total {
    font-size: 16px;
    font-weight: 600;
    color: var(--av-text-on-dark);
}

.order-card-arrow {
    color: rgba(237, 234, 230, 0.3);
    transition: color 0.2s ease;
}

.order-card:hover .order-card-arrow {
    color: var(--av-teal);
}

/* Orders Grouped Sections */
.orders-group {
    margin-bottom: 48px;
}

.orders-group:last-child {
    margin-bottom: 0;
}

.orders-group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 3px solid var(--av-teal);
}

.orders-group-title {
    font-family: var(--av-font-logo);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--av-text-on-dark);
}

.orders-group-count {
    font-size: 13px;
    font-weight: 500;
    color: var(--av-teal);
    background: rgba(12, 161, 178, 0.1);
    padding: 3px 10px;
    border-radius: var(--av-radius-pill);
    line-height: 1;
}

.orders-group--completed .orders-group-header {
    border-left-color: rgba(237, 234, 230, 0.2);
}

.orders-group--completed .orders-group-count {
    color: rgba(237, 234, 230, 0.4);
    background: rgba(237, 234, 230, 0.06);
}

.orders-group-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.orders-load-more {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: rgba(12, 161, 178, 0.06);
    border: 1px solid rgba(12, 161, 178, 0.15);
    border-radius: var(--av-radius-card);
    color: var(--av-teal);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.orders-load-more:hover {
    background: rgba(12, 161, 178, 0.12);
    border-color: var(--av-teal);
}

.orders-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid var(--av-border-on-dark);
    border-radius: var(--av-radius-card);
    color: rgba(237, 234, 230, 0.6);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.orders-view-all:hover {
    border-color: var(--av-teal);
    color: var(--av-teal);
}

.orders-view-all svg {
    transition: transform 0.2s ease;
}

.orders-view-all:hover svg {
    transform: translateX(3px);
}

/* Order Page Responsive */
@media (max-width: 768px) {
    .order-page {
        padding: 24px 16px;
    }

    .order-header h1 {
        font-size: 24px;
    }

    .order-progress {
        padding: 20px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .order-progress-step {
        font-size: 11px;
    }

    .order-progress-step span {
        display: none;
    }

    .order-progress-icon {
        width: 36px;
        height: 36px;
    }

    .order-progress-line {
        margin-bottom: 0;
    }

    .order-item {
        grid-template-columns: 60px 1fr;
        gap: 16px;
    }

    .order-item-image {
        width: 60px;
        height: 75px;
    }

    .order-item-price {
        grid-column: 1 / -1;
        text-align: right;
        padding-top: 12px;
        border-top: 1px solid var(--av-border-on-dark);
    }

    .order-payment {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .order-actions {
        flex-direction: column;
    }
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* ===== LOADING ===== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--av-border-on-dark);
    border-top-color: var(--av-orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--av-surface-dark);
    color: var(--av-text-on-dark);
    padding: 18px 36px;
    font-size: 15px;
    border-radius: var(--av-radius-pill);
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--av-shadow-soft);
    border: 1px solid var(--av-border-on-dark);
}

.notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ===== RESPONSIVE ===== */

/* Tablets and large phones */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .header-top {
        padding: 14px 16px;
    }

    .header-left,
    .header-right {
        gap: 12px;
        min-width: auto;
    }

    .categories-section {
        padding: 40px 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .category-card-title {
        font-size: 24px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .catalog-categories-section {
        padding: 60px 20px;
    }

    .catalog-categories-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .catalog-categories-buttons {
        gap: 16px;
    }

    .catalog-category-btn {
        padding: 20px 24px;
        font-size: 16px;
    }

    .main-nav {
        padding: 12px 16px;
    }

    .nav-list {
        gap: 24px;
    }

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

    /* Hero */
    .hero {
        min-height: auto;
        padding: 60px 20px 80px;
    }

    .hero-menu {
        top: 20px;
        left: 16px;
    }

    .hero-menu-btn {
        width: 44px;
        height: 44px;
        padding: 10px;
        gap: 3px;
    }

    .hero-menu-btn span {
        width: 18px;
    }

    .hero-icons {
        top: 20px;
        right: 16px;
        gap: 10px;
    }

    .hero-icon {
        width: 44px;
        height: 44px;
        padding: 10px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .hero-tagline {
        gap: 24px;
        margin-bottom: 24px;
    }

    .hero-tagline span {
        font-size: 11px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .hero-btn {
        padding: 16px 36px;
        font-size: 14px;
    }

    /* Import section */
    .import-request {
        padding: 60px 16px;
    }

    .import-request-title {
        font-size: 22px;
    }

    .import-request-subtitle {
        font-size: 14px;
    }

    .import-input {
        padding: 14px 18px;
        font-size: 15px;
    }

    .import-submit-btn {
        width: 50px;
    }

    .import-preview {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .import-preview-image {
        width: 140px;
        height: 180px;
    }

    /* Categories */
    .categories {
        padding: 50px 16px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .category-image {
        border-radius: var(--av-radius-card);
        aspect-ratio: 2/3;
    }

    .category-title {
        font-size: 12px;
    }

    /* Products */
    .new-arrivals {
        padding: 50px 16px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 32px;
    }

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

    .product-image {
        border-radius: var(--av-radius-card);
    }

    .product-name {
        font-size: 13px;
    }

    .product-price {
        font-size: 14px;
    }

    .view-all-btn {
        padding: 14px 32px;
        font-size: 13px;
    }

    /* Promo */
    .promo-banner {
        padding: 50px 16px;
    }

    .promo-title {
        font-size: 24px;
    }

    /* Footer */
    .footer {
        padding: 50px 16px 24px;
    }

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

    .footer-section:last-child {
        grid-column: 1 / -1;
    }

    .footer-title {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .subscribe-form {
        flex-direction: row;
    }

    .subscribe-input,
    .subscribe-btn {
        width: 100%;
    }

    /* Catalog */
    .catalog-header {
        padding: 32px 16px;
    }

    .catalog-title {
        font-size: 28px;
    }

    .catalog-filters {
        padding: 14px 16px;
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .filter-btn {
        font-size: 13px;
    }

    .sort-select {
        width: 100%;
        padding: 12px 16px;
    }

    .catalog-content {
        padding: 24px 16px;
    }

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

    /* Product page */
    .product-page {
        padding: 24px 16px;
    }

    .product-layout {
        gap: 32px;
    }

    .product-main-image {
        border-radius: var(--av-radius-card);
    }

    .product-info h1 {
        font-size: 20px;
    }

    .product-info .price {
        font-size: 18px;
    }

    .product-description {
        font-size: 14px;
    }

    .size-options {
        gap: 8px;
    }

    .size-btn {
        min-width: 44px;
        padding: 12px 14px;
        font-size: 13px;
    }

    .add-to-cart-btn {
        padding: 16px;
        font-size: 14px;
    }

    /* Cart */
    .cart-page {
        padding: 24px 16px;
    }

    .cart-page h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }

    .cart-item-price {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding-top: 12px;
        border-top: 1px solid var(--av-border-on-dark);
    }

    .cart-item-price .price {
        margin-bottom: 0;
    }

    .cart-summary {
        text-align: center;
    }

    .checkout-btn {
        width: 100%;
        padding: 16px 32px;
    }

    /* Account */
    .account-page {
        padding: 40px 16px;
    }

    .account-page h1 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .form-input {
        padding: 14px 18px;
        font-size: 15px;
    }

    .form-btn {
        padding: 16px;
        font-size: 14px;
    }

    /* Checkout */
    .checkout-page {
        padding: 24px 16px;
    }

    .checkout-page h1 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .checkout-section {
        margin-bottom: 40px;
    }

    .delivery-option {
        padding: 16px;
    }

    .delivery-name {
        font-size: 14px;
    }

    .order-summary {
        padding: 20px;
    }

    .pay-btn {
        padding: 16px;
        font-size: 14px;
    }

    /* Sidebar */
    .sidebar {
        width: 85%;
        max-width: 320px;
    }

    .sidebar-header {
        padding: 20px;
    }

    .sidebar-nav ul {
        padding: 20px;
    }

    .sidebar-nav li {
        margin-bottom: 16px;
    }

    .sidebar-nav a {
        font-size: 15px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .header-top {
        padding: 12px 12px;
        grid-template-columns: 1fr auto 1fr;
    }

    .header-left,
    .header-right {
        gap: 8px;
    }

    .logo {
        height: 42px !important;
    }

    .header-icon {
        padding: 6px;
    }

    .search-overlay {
        padding: 16px;
    }

    .search-container {
        gap: 12px;
    }

    .search-input {
        padding: 12px 16px;
        font-size: 16px;
    }

    .search-close {
        padding: 8px;
    }

    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    /* Hero */
    .hero {
        padding: 40px 16px 60px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-tagline {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-tagline span {
        font-size: 10px;
    }

    .hero-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }

    .hero-btn {
        padding: 14px 28px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
    }

    /* Import */
    .import-request {
        padding: 40px 14px;
    }

    .import-request-title {
        font-size: 20px;
    }

    .import-request-subtitle {
        font-size: 13px;
    }

    .import-input-wrapper {
        flex-direction: column;
    }

    .import-input {
        width: 100%;
    }

    .import-submit-btn {
        width: 100%;
        height: 48px;
    }

    .import-form-actions {
        flex-direction: column;
    }

    .import-back-btn,
    .import-send-btn {
        width: 100%;
    }

    /* Categories */
    .categories {
        padding: 40px 14px;
    }

    .category-grid {
        gap: 12px;
    }

    .category-image {
        border-radius: 16px;
    }

    .category-placeholder {
        font-size: 28px;
    }

    .category-title {
        font-size: 12px;
    }

    /* Products */
    .new-arrivals {
        padding: 40px 14px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .products-grid {
        gap: 12px;
    }

    .product-image {
        border-radius: 16px;
    }

    .product-name {
        font-size: 12px;
    }

    .product-price {
        font-size: 13px;
    }

    .view-all-btn {
        width: 100%;
        max-width: 280px;
    }

    /* Footer */
    .footer {
        padding: 40px 14px 20px;
    }

    .footer-title {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 14px;
    }

    /* Catalog */
    .catalog-header {
        padding: 24px 14px;
    }

    .catalog-title {
        font-size: 24px;
    }

    .filter-group {
        gap: 12px;
    }

    .filter-btn {
        font-size: 12px;
        padding: 8px 0;
    }

    .catalog-content {
        padding: 20px 14px;
    }

    .catalog-grid {
        gap: 12px;
    }

    /* Product */
    .product-page {
        padding: 20px 14px;
    }

    .product-info h1 {
        font-size: 18px;
    }

    .product-info .price {
        font-size: 16px;
    }

    .size-btn {
        min-width: 40px;
        padding: 10px 12px;
        font-size: 12px;
    }

    /* Cart */
    .cart-page {
        padding: 20px 14px;
    }

    .cart-page h1 {
        font-size: 24px;
    }

    .cart-item {
        grid-template-columns: 70px 1fr;
        gap: 12px;
        padding: 16px 0;
    }

    .cart-item-info h3 {
        font-size: 14px;
    }

    .quantity-btn {
        width: 32px;
        height: 32px;
    }

    /* Account & Checkout */
    .account-page,
    .checkout-page {
        padding: 20px 14px;
    }

    .account-page h1,
    .checkout-page h1 {
        font-size: 24px;
        margin-bottom: 24px;
    }

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

    .form-input {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 20px;
    }

    .form-row {
        gap: 12px;
    }

    .checkout-section h2 {
        font-size: 14px;
    }

    .delivery-option {
        padding: 14px;
        gap: 12px;
    }

    .delivery-name {
        font-size: 13px;
    }

    .delivery-desc {
        font-size: 12px;
    }
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 20px;
    grid-column: 1 / -1;
}

.pagination-btn {
    background: transparent;
    border: 1px solid var(--border-color, #333);
    color: var(--text-primary, #fff);
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 999px;
}

.pagination-btn:hover {
    background: var(--accent-primary, #0CA1B2);
    border-color: var(--accent-primary, #0CA1B2);
}

.pagination-info {
    color: var(--text-secondary, #888);
    font-size: 12px;
    letter-spacing: 0.05em;
}

/* ===== Loading Spinner ===== */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    grid-column: 1 / -1;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color, #333);
    border-top-color: var(--accent-primary, #0CA1B2);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
