/* ============================================================
   GLASSMORPHISM DASHBOARD STYLES - Премиум современный UI
   ============================================================ */

/* Фон - Мягкий пастельный градиент */
.user-dashboard-container {
    background: linear-gradient(135deg,
        #f5f3ff 0%,      /* лавандовый */
        #fce7f3 25%,     /* розовый */
        #fff7ed 50%,     /* персиковый */
        #fce7f3 75%,     /* розовый */
        #f5f3ff 100%     /* лавандовый */
    );
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    padding-bottom: 40px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Верхний баннер - Стекломорфизм */
.dashboard-top-banner {
    background: linear-gradient(135deg,
        rgba(236, 72, 153, 0.75) 0%,
        rgba(192, 132, 252, 0.75) 100%
    );
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 20px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(236, 72, 153, 0.2),
                0 8px 16px rgba(0, 0, 0, 0.1);
}

.dashboard-top-banner p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Контент дашборда */
.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Верхний ряд - 3 карточки */
.dashboard-top-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

/* Базовая карточка со стекломорфизмом */
.dashboard-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15),
                0 1px 0 rgba(255, 255, 255, 0.5) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(31, 38, 135, 0.22),
                0 1px 0 rgba(255, 255, 255, 0.6) inset;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.3);
}

/* Карточка приветствия - Градиентное стекло */
.dashboard-greeting-card {
    background: linear-gradient(135deg,
        rgba(236, 72, 153, 0.7) 0%,
        rgba(168, 85, 247, 0.7) 100%
    );
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    position: relative;
    overflow: hidden;
}

.dashboard-greeting-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.dashboard-greeting-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.dashboard-greeting-subtitle {
    font-size: 0.95rem;
    margin: 0 0 24px 0;
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Основная кнопка - Градиентная таблетка */
.dashboard-create-btn {
    background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
    color: #be185d;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.dashboard-create-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    filter: brightness(1.05);
}

.dashboard-create-btn:active {
    transform: translateY(-1px);
}

/* Карточка премиум */
.dashboard-premium-card {
    text-align: center;
}

.dashboard-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 16px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.dashboard-premium-count {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-weight: 500;
}

.dashboard-premium-progress {
    width: 100%;
    height: 10px;
    background: rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.dashboard-premium-bar {
    height: 100%;
    background: linear-gradient(90deg,
        #fbbf24 0%,
        #f59e0b 25%,
        #ec4899 75%,
        #a855f7 100%
    );
    border-radius: 50px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}

/* Карточка лайков */
.dashboard-liked-card {
    position: relative;
    text-align: left;
}

.dashboard-liked-subtitle {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 8px 0 20px 0;
    line-height: 1.5;
}

.dashboard-liked-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

/* Призрачная кнопка */
.dashboard-liked-btn {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(236, 72, 153, 0.25);
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
    font-weight: 500;
}

.dashboard-liked-btn:hover {
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(236, 72, 153, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
    color: #be185d;
}

.dashboard-liked-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Основная сетка - 3 колонки */
.dashboard-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.dashboard-section {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15),
                0 1px 0 rgba(255, 255, 255, 0.5) inset;
    transition: all 0.3s ease;
}

.dashboard-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(31, 38, 135, 0.22),
                0 1px 0 rgba(255, 255, 255, 0.6) inset;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-section-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.dashboard-section-arrow {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(236, 72, 153, 0.25);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #a855f7;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dashboard-section-arrow:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
}

/* Сетка примерок */
.dashboard-tryons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.tryon-card-small {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(31, 38, 135, 0.08);
}

.tryon-card-small:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(31, 38, 135, 0.18);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.5);
}

.tryon-card-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: relative;
}

.tryon-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e1b4b;
    margin: 10px 14px 4px 14px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.tryon-card-date {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0 14px 14px 14px;
}

/* Сетка фотографий */
.dashboard-photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.dashboard-photo-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 24px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dashboard-photo-card:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(31, 38, 135, 0.12);
    border-color: rgba(236, 72, 153, 0.4);
}

.dashboard-photo-placeholder {
    font-size: 2.5rem;
    margin-bottom: 10px;
    filter: grayscale(0.3);
}

.dashboard-photo-card p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.dashboard-add-photo-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 2px dashed rgba(168, 85, 247, 0.35);
    border-radius: 14px;
    padding: 14px;
    font-size: 0.85rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dashboard-add-photo-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(168, 85, 247, 0.6);
    color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.2);
}

/* Рекомендации */
.dashboard-recommendations {
    text-align: center;
}

.dashboard-rec-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0 10px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.dashboard-rec-text {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.dashboard-rec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.dashboard-rec-tag {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 12px;
    padding: 7px 14px;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dashboard-rec-tag:hover {
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(168, 85, 247, 0.5);
    color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

.dashboard-catalog-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 14px;
    padding: 14px;
    font-size: 0.85rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.dashboard-catalog-btn:hover {
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(168, 85, 247, 0.6);
    color: #a855f7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.25);
}

/* Нижняя секция */
.dashboard-bottom-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.dashboard-share-opinion {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15),
                0 1px 0 rgba(255, 255, 255, 0.5) inset;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.dashboard-share-opinion:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(31, 38, 135, 0.22),
                0 1px 0 rgba(255, 255, 255, 0.6) inset;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-share-left h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 8px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.dashboard-share-left p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Градиентная кнопка-таблетка */
.dashboard-share-btn {
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 50%, #a855f7 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.dashboard-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
}

.dashboard-newsletter {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15),
                0 1px 0 rgba(255, 255, 255, 0.5) inset;
    transition: all 0.3s ease;
}

.dashboard-newsletter:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(31, 38, 135, 0.22),
                0 1px 0 rgba(255, 255, 255, 0.6) inset;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-newsletter h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0 0 10px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.dashboard-newsletter p {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0 0 18px 0;
    line-height: 1.5;
}

.dashboard-newsletter-btn {
    width: 100%;
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 50%, #a855f7 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 13px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.dashboard-newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    filter: brightness(1.1);
}

/* ============================================================
   NEW SECTIONS - Glassmorphism Styles
   ============================================================ */

/* Grid Layout для новой структуры */
.dashboard-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
    gap: 24px;
    margin-bottom: 32px;
}

.dashboard-left-column,
.dashboard-right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Section Subtitle */
.dashboard-section-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 16px 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Section Link */
.dashboard-section-link {
    background: transparent;
    border: none;
    font-size: 0.8rem;
    color: #a855f7;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0;
}

.dashboard-section-link:hover {
    color: #ec4899;
    text-shadow: 0 0 8px rgba(236, 72, 153, 0.3);
}

/* Looks Grid (AI Filters) */
.dashboard-looks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.dashboard-look-card {
    background: linear-gradient(135deg, rgba(251, 239, 255, 0.7), rgba(255, 229, 242, 0.7));
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(244, 221, 255, 0.9);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 8px 24px rgba(58, 12, 94, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.dashboard-look-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(58, 12, 94, 0.25);
    border-color: rgba(168, 85, 247, 0.6);
    background: linear-gradient(135deg, rgba(251, 239, 255, 0.85), rgba(255, 229, 242, 0.85));
}

.dashboard-look-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e1b4b;
    margin: 0 0 6px 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.dashboard-look-tag {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.dashboard-look-btn {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.dashboard-look-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(168, 85, 247, 0.5);
    color: #a855f7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

/* Brand Constructor */
.dashboard-brand-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.dashboard-brand-card {
    background: linear-gradient(135deg, rgba(244, 240, 255, 0.7), rgba(255, 231, 240, 0.7));
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(234, 219, 255, 0.9);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 6px 20px rgba(40, 16, 80, 0.14);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.dashboard-brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(40, 16, 80, 0.22);
    border-color: rgba(168, 85, 247, 0.6);
    background: linear-gradient(135deg, rgba(244, 240, 255, 0.85), rgba(255, 231, 240, 0.85));
}

.dashboard-brand-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e1b4b;
    margin: 0 0 4px 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.dashboard-brand-tagline {
    font-size: 0.7rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* Create Look Button (used in multiple sections) */
.dashboard-create-look-btn {
    width: 100%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.85), rgba(236, 72, 153, 0.85));
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.dashboard-create-look-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.45);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.95), rgba(236, 72, 153, 0.95));
    filter: brightness(1.05);
}

.dashboard-create-look-btn:active {
    transform: translateY(-1px);
}

/* Photo Card Enhancements */
.dashboard-photo-label {
    font-size: 0.75rem;
    color: #64748b;
    margin: 6px 0 2px 0;
    font-weight: 500;
}

.dashboard-photo-status {
    font-size: 0.7rem;
    color: #34a853;
    margin: 4px 0 0 0;
    font-weight: 500;
}

.dashboard-photo-card-add {
    border-style: dashed;
    border-width: 2px;
    border-color: rgba(182, 152, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-photo-card-add:hover {
    border-color: rgba(168, 85, 247, 0.7);
    background: rgba(255, 255, 255, 0.35);
}

/* Lower Grid - Style Plan + Service Updates */
.dashboard-lower-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.6fr);
    gap: 24px;
    margin-bottom: 32px;
}

/* Style Plan List */
.dashboard-plan-list {
    margin: 16px 0;
    padding-left: 20px;
    font-size: 0.85rem;
    line-height: 1.8;
}

.dashboard-plan-list li {
    margin-bottom: 10px;
    color: #64748b;
    font-weight: 500;
}

.dashboard-plan-done {
    color: #34a853 !important;
    text-decoration: line-through;
    opacity: 0.8;
}

.dashboard-plan-todo {
    color: #64748b !important;
}

/* Service Updates List */
.dashboard-updates-list {
    margin: 16px 0;
    padding-left: 20px;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.8;
}

.dashboard-updates-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* Адаптивный дизайн */
@media (max-width: 1024px) {
    .dashboard-top-row {
        grid-template-columns: 1fr;
    }

    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-lower-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-bottom-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-content {
        padding: 24px 16px;
    }

    .dashboard-top-banner p {
        font-size: 0.8rem;
    }

    .dashboard-greeting-title {
        font-size: 1.6rem;
    }

    .dashboard-greeting-subtitle {
        font-size: 0.85rem;
    }

    .dashboard-tryons-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-photos-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-share-opinion {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .dashboard-share-btn {
        width: 100%;
    }

    .dashboard-card {
        padding: 20px;
    }
}
