/* Основные стили VibeWish - Ультра пастельная тема */
:root {
    --primary-color: #ffffff;
    --primary-dark: #fbb6ce;
    --secondary-color: #f3e5f5;
    --accent-color: #fef7f0;
    --success-color: #e8f5e8;
    --warning-color: #fff8e1;
    --danger-color: #ffebee;
    --light-color: #fefefe;
    --dark-color: #5a5a5a;
    --background-color: white;
    --card-background: #ffffff;
    --gradient-primary: white;
    --gradient-secondary: white;
    --gradient-hero: linear-gradient(135deg, #fef7f0 0%, #fde2e7 100%);
    --border-radius: 16px;
    --box-shadow: 0 8px 32px rgba(251, 182, 206, 0.12), 0 2px 16px rgba(251, 182, 206, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --text-primary: #2c2c2c;
    --text-secondary: #666666;
    --text-light: #999999;
    --animation-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --animation-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    box-sizing: border-box;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgb(0 0 0) !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-color);
    min-height: 100vh;
    padding-top: 0;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Глобальные анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fa-heart {
    animation: heartFloat 3s ease-in-out infinite;
    display: inline-block;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    color: #000000 !important;
}

.navbar-brand .fa-heart {
    color: #1D1D1D !important;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s var(--animation-smooth) forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s var(--animation-smooth) forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s var(--animation-smooth) forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Header Styles - Пастельно-розовая тема */
.navbar {
    background: var(--gradient-hero) !important;
    z-index: 1030;
    padding: 1rem 0;
    position: sticky;
    top: 0;
}

.navbar-brand {
    font-size: 1.3rem !important;
    font-weight: 700;
    background: #1D1D1D;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #1D1D1D !important;
    background-clip: text;
    transition: var(--transition);
    letter-spacing: -0.5px;
    position: relative;
}

.navbar-brand:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-link.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    padding: 0.7rem 1.8rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-link.btn::before {
    display: none;
}

.nav-link.btn:hover::before {
    display: none;
}

.nav-link.btn-outline-primary {
    background-color: #000000;
    border: none;
    color: #ffffff;
    padding: 7px 14px;
    box-shadow: none;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

.nav-link.btn-outline-primary:hover {
    background-color: #000000;
    color: #ffffff;
    transform: none;
    box-shadow: none;
}

.nav-link.btn-primary {
    background-color: transparent;
    border: 1px solid #1D1D1D;
    padding: 7px 14px;
    color: #1D1D1D;
    box-shadow: none;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

.nav-link.btn-primary:hover {
    background-color: transparent;
    border: 1px solid #1D1D1D;
    color: #1D1D1D;
    transform: none;
    box-shadow: none;
}

.section-loaded {
    animation: fadeInSection 1s ease-out;
    background: white;
}

/* Градиенты */
.bg-gradient-primary {
    position: relative;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #d97706 100%);
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Карточки - Обновленный дизайн */
.card {
    border: none;
    border-radius: var(--border-radius);
    background: var(--card-background);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(253, 226, 231, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s var(--animation-smooth);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(251, 182, 206, 0.15);
    border-color: var(--primary-color);
}

.feature-card {
    text-align: left;
    padding: 2rem;
    border-radius: 20px;
    background: #fde5e8;
    box-shadow: 0 4px 20px rgba(251, 182, 206, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(253, 226, 231, 0.2);
    height: 100%;
    cursor: pointer;
    color: #1D1D1D;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 226, 231, 0.1) 0%, rgba(251, 182, 206, 0.1) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
    transform: scale(0.8);
}

.feature-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 182, 206, 0.15), 0 8px 25px rgba(251, 182, 206, 0.1);
    border-color: var(--primary-color);
    color: #1D1D1D;
}

.feature-card h4,
.feature-card p {
    color: #1D1D1D !important;
}

.feature-card:hover h4,
.feature-card:hover p {
    color: #1D1D1D !important;
}

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

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(251, 182, 206, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(251, 182, 206, 0.4);
}

.feature-card:hover .feature-icon::before {
    transform: translateX(100%);
}

/* Новые градиентные карточки функций */
.feature-card {
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.feature-emoji {
    font-size: 3rem;
    line-height: 1;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bg-gradient-telegram {
    background: #fde5e8;
    color: #1D1D1D;
}

.bg-gradient-mobile {
    background: #fde5e8;
    color: #1D1D1D;
}

.bg-gradient-privacy {
    background: #fde5e8;
    color: #1D1D1D;
}

.bg-gradient-booking {
    background: #fde5e8;
    color: #1D1D1D;
}

/* Анимированные секции */
.section-animated {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--animation-smooth);
}

/* Стили для Benefits Section */
.feature-icon-small {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-small {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-small .rounded-circle {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-icon-small .rounded-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover .feature-icon-small .rounded-circle::before {
    left: 100%;
}

/* Анимация появления карточек */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: slideInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Улучшенные заголовки секций */
.section-title {
    position: relative;
    display: inline-block;
    background: var(--text-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: expandLine 0.8s ease 0.5s both;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 60px;
        opacity: 1;
    }
}

/* Улучшенные стили для Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #ffffff 0%, #fefcfc 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(253, 226, 231, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(251, 182, 206, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Стили для Features Section */
.features-section {
    background: var(--gradient-secondary);
    position: relative;
}

.fw-bold {
    font-weight: 700 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

/* Улучшенная типографика */
.feature-card h5 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.feature-card p {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Микро-анимации */
.feature-card:hover h5 {
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--text-primary) !important;
    transition: color 0.3s ease;
}

.section-animated.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--animation-smooth);
}

.stagger-animation.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-animation.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Footer Styles - Обновленный дизайн */
footer {
    background: #1D1D1D;
    color: #ffffff;
    padding: 4rem 0 2rem;
    /* position: relative; */
    overflow: hidden;
    /* border-top: 1px solid rgba(253, 226, 231, 0.3); */
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    animation: gradientShift 3s ease infinite;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(253, 226, 231, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 182, 206, 0.2) 0%, transparent 50%);
    z-index: -1;
}

footer .hover-opacity-100 {
    transition: var(--transition);
}

footer .hover-opacity-100:hover {
    opacity: 1 !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

footer .fs-4 {
    transition: var(--transition);
}

footer .fs-4:hover {
    transform: scale(1.3);
    color: var(--primary-color);
}

footer h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

footer .text-light {
    color: var(--text-secondary) !important;
}

footer .text-muted {
    color: var(--text-light) !important;
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

footer a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

footer a:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

footer a:hover::before {
    width: 100%;
}

.footer-brand {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: #eb556d;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(251, 182, 206, 0.3);
}

.footer-social a::before {
    display: none;
}

/* Hero Section - Пастельно-розовая тема */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1D1D1D;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Step Images Hover Effect */
.step-image-container {
    transition: var(--transition);
}

.step-image-container:hover {
    transform: scale(1.05);
}

/* Feature Icon Small */
.feature-icon-small {
    transition: var(--transition);
}

.feature-icon-small:hover {
    transform: scale(1.1);
}

/* Enhanced Button Styles - Новый дизайн без эффекта стекла */
.btn {
        display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex
;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0;
    border: 0;
    margin: 0;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-text-decoration: none;
    text-decoration: none;
    color: inherit;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    text-transform: uppercase;
    min-width: 64px;
    padding: 6px 8px;
    border-radius: 4px;
    -webkit-transition: none;
    transition: none;
    color: #1976d2;
    box-shadow: none;
    -webkit-transition: none;
    transition: none;
    position: relative;
    text-transform: none;
    border-radius: 12px;
    white-space: nowrap;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #EB556D;
    border: none;
    padding: 14px 24px;
    color: #FFFFFF;
    box-shadow: 0px 8px 36px rgba(235, 85, 109, 0.35);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-light {
    background: white;
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(251, 182, 206, 0.1);
}

.btn-light:hover {
    background: var(--accent-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(251, 182, 206, 0.2);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(253, 226, 231, 0.4);
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
    border-radius: calc(var(--border-radius) + 4px);
    font-weight: 700;
}

/* Специальные эффекты для кнопок */
.btn-animated {
    animation: pulse 2s ease-in-out infinite;
}

.btn-float {
    animation: float 3s ease-in-out infinite;
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
}

.wishlist-card {
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.wishlist-card:hover {
    border-left-color: var(--primary-dark);
}

/* Кнопки в стиле folowish */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    padding: 12px 24px;
    font-size: 0.95rem;
}

.btn-gradient-animated:hover {
    background: #EB556D;
    color: white;
}

.btn-primary {
        display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex
;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0;
    border: 0;
    margin: 0;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-text-decoration: none;
    text-decoration: none;
    color: inherit;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    text-transform: uppercase;
    min-width: 64px;
    padding: 6px 8px;
    border-radius: 4px;
    -webkit-transition: none;
    transition: none;
    color: #fc8094;;
    box-shadow: none;
    -webkit-transition: none;
    transition: none;
    position: relative;
    text-transform: none;
    border-radius: 12px;
    white-space: nowrap;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #EB556D;
    border: none;
    padding: 14px 24px;
    color: #FFFFFF;
    box-shadow: 0px 8px 36px rgba(235, 85, 109, 0.35);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
}

.btn-light {
    background: rgb(146 92 215);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-success:hover {
    background: #059669;
}

@media (min-width: 992px) {
    .col-lg-7 {
        flex: 0 0 auto;
        width: 25%;
    }
}

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

.btn-warning:hover {
    background: #d97706;
    transform: translateY(-1px);
}

/* Формы */
.form-control {
    border-radius: var(--border-radius);
    border: 2px solid #e2e8f0;
    transition: var(--transition);
    padding: 12px 16px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.input-group-text {
    border-radius: var(--border-radius);
    border: 2px solid #e2e8f0;
    background-color: #f8fafc;
}

/* Навигация в стиле folowish */
.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    border-radius: 8px;
    margin: 0 4px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Алерты */
.alert {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow);
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

/* Бейджи */
.badge {
    border-radius: 6px;
    font-weight: 500;
    padding: 6px 12px;
}

/* Hero секция */
.hero-section {
    height: 800px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx=".5" cy=".5" r=".5"><stop offset="0%" stop-color="%23ffffff" stop-opacity=".1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>') center/cover;
    pointer-events: none;
}

/* Статистические карточки */
.card.bg-primary,
.card.bg-success,
.card.bg-warning,
.card.bg-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    border: none;
    color: white;
}

.card.bg-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%) !important;
}

.card.bg-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #d97706 100%) !important;
}

.card.bg-info {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
}

/* Продукты */
.product-card {
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.product-image {
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.product-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    color: var(--secondary-color);
}

/* Статусы бронирования */
.booking-status {
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.booking-status.available {
    background-color: #d1fae5;
    color: #065f46;
}

.booking-status.booked {
    background-color: #fef3c7;
    color: #92400e;
}

/* Модальные окна */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
    border-bottom: 1px solid #e2e8f0;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-footer {
    border-top: 1px solid #e2e8f0;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* Загрузка */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Утилиты */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.shadow-medium {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.shadow-strong {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Hero секция */
.hero {
    background: var(--gradient-hero);
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: heroFloat 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 182, 206, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    animation: fadeInUp 1s var(--animation-bounce) 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1s var(--animation-bounce) 0.4s both;
}

.hero .btn {
    animation: fadeInUp 1s var(--animation-bounce) 0.6s both;
}

/* Адаптивные стили */
@media (max-width: 768px) {
    .hero {
        min-height: 600px;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
    }
    
    .btn-lg {
        padding: 0.9rem 1.8rem;
    }
}

/* Дополнительные утилиты */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-soft {
    background: var(--gradient-secondary);
}

.shadow-soft {
    box-shadow: var(--box-shadow);
}

.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-primary) border-box;
}

/* Улучшенные переходы */


/* Скрытие элементов до загрузки */
.section-animated:not(.visible) {
    opacity: 0;
    transform: translateY(50px);
}

.stagger-animation:not(.visible) > * {
    opacity: 0;
    transform: translateY(30px);
}

/* Статистика и дополнительные секции */
.stat-item {
    transition: var(--transition);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-number {
    transition: var(--transition);
}

.step-number:hover {
    transform: scale(1.1);
}

.step-number .badge {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px 0 rgba(239, 68, 68, 0.3);
}

/* Секция bg-light в стиле folowish */
.bg-light {
    background-color: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
}

/* Темная тема (опционально) */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-color: #f8fafc;
        --light-color: #1e293b;
    }
    
    body {
        background-color: #0f172a;
        color: var(--dark-color);
    }
    
    .card {
        background-color: #1e293b;
        color: var(--dark-color);
    }
    
    .form-control {
        background-color: #1e293b;
        border-color: #334155;
        color: var(--dark-color);
    }
    
    .form-control:focus {
        background-color: #1e293b;
        border-color: var(--primary-color);
        color: var(--dark-color);
    }
}

/* Дополнительные анимации для интерактивности */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* Кастомные скроллбары */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Фокус для доступности */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Прелоадер */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #1D1D1D !important;
}

/* Стили для улучшенного блока "Мои списки желаний" */
.feature-icon-small {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(251, 182, 206, 0.15);
}

.wishlist-card {
    transition: var(--transition);
    border: 1px solid rgba(251, 182, 206, 0.2) !important;
    background: linear-gradient(135deg, #fefefe 0%, #fef9f9 100%) !important;
}

.wishlist-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 182, 206, 0.15);
    border-color: rgba(251, 182, 206, 0.3) !important;
}

.wishlist-card .progress {
    background-color: rgba(251, 182, 206, 0.1);
}

.wishlist-card .progress-bar {
    background: linear-gradient(90deg, #e8f5e8, #4ade80);
}

.badge.bg-success-subtle {
    background-color: rgba(34, 197, 94, 0.1) !important;
    color: #16a34a !important;
    border: 1px solid rgba(34, 197, 94, 0.2) !important;
}

.badge.bg-danger-subtle {
    background-color: rgba(239, 68, 68, 0.1) !important;
    color: #dc2626 !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
}

.badge.bg-info-subtle {
    background-color: rgba(59, 130, 246, 0.1) !important;
    color: #2563eb !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
}

.btn-group-sm .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

.card-header.bg-transparent {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(251, 182, 206, 0.1);
}

.text-primary {
    color: var(--primary-dark) !important;
}

.text-success {
    color: #16a34a !important;
}

.btn-outline-primary:hover,
.btn-outline-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Стили для карточек статистики и быстрых действий */
.stats-card {
    transition: var(--transition);
    border: 1px solid rgba(251, 182, 206, 0.2) !important;
    background: linear-gradient(135deg, #fefefe 0%, #fef9f9 100%) !important;
}

.stats-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(251, 182, 206, 0.12);
}

.action-card {
    transition: var(--transition);
    border: 1px solid rgba(251, 182, 206, 0.2) !important;
    background: linear-gradient(135deg, #fefefe 0%, #fef9f9 100%) !important;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 182, 206, 0.15);
    border-color: rgba(251, 182, 206, 0.3) !important;
}

.action-icon {
    width: 32px;
    height: 32px;
    background: rgba(251, 182, 206, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.text-info {
    color: #0ea5e9 !important;
}

.btn-outline-info {
    color: #0ea5e9;
    border-color: #0ea5e9;
}

.btn-outline-info:hover {
    background-color: #0ea5e9;
    border-color: #0ea5e9;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}


/* Переопределение ширины колонок для дашборда */
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 50% !important;
    }
}

@media (min-width: 992px) {
    .col-lg-12 {
        flex: 0 0 auto;
        width: 33.33% !important;
    }
}

.mb-6 {
    margin-bottom: 3rem !important;
    background-color: #fde5e8;
    border-radius: 32px;
    padding: 70px 61px;
    position: relative;
}
.css-129qekv {
    width: 409px;
    height: 356px;
}

@media (max-width: 768px) {
    .css-129qekv {
        display: none;
    }
}
.css-xxcl55 {
    position: absolute;
    bottom: -0px;
    right: 0;
}

.want {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0;
    border: 0;
    margin: 0;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-text-decoration: none;
    text-decoration: none;
    color: inherit;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    text-transform: uppercase;
    min-width: 64px;
    padding: 6px 8px;
    border-radius: 4px;
    -webkit-transition: none;
    transition: none;
    color: #1976d2;
    box-shadow: none;
    -webkit-transition: none;
    transition: none;
    position: relative;
    text-transform: none;
    border-radius: 12px;
    white-space: nowrap;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #EB556D;
    border: none;
    padding: 14px 24px;
    color: #ffffff !important;
    box-shadow: 0px 8px 36px rgb(255 152 172);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    transition: var(--transition);
}
.want:hover {
background-color: #EB556D;
}
.want:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn-light {
    background: rgb(146 92 215);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0;
    border: 0;
    margin: 0;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-text-decoration: none;
    text-decoration: none;
    color: inherit;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    text-transform: uppercase;
    min-width: 64px;
    padding: 6px 8px;
    border-radius: 4px;
    -webkit-transition: none;
    transition: none;
    color: #1976d2;
    box-shadow: none;
    -webkit-transition: none;
    transition: none;
    position: relative;
    text-transform: none;
    border-radius: 12px;
    white-space: nowrap;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #EB556D;
    border: none;
    padding: 14px 24px;
    color: #ffffff !important;
    box-shadow: 0px 8px 36px rgb(255 152 172);
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-light:hover {
background-color: #EB556D;
}

/* ===== УНИКАЛЬНЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ УВЕДОМЛЕНИЙ ===== */
.notifications-container {
    background: linear-gradient(135deg, #fef7f0 0%, rgb(250, 231, 234) 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.notifications-header {
    background: var(--primary-gradient);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.notifications-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.notifications-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.notifications-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.notifications-actions {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.notifications-btn {
    background: white;
    color: var(--primary-dark);
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin: 0.25rem;
}

.notifications-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    color: var(--primary-dark);
    text-decoration: none;
}

.notifications-btn-success {
    background: var(--success-gradient);
    color: white;
}

.notifications-btn-success:hover {
    color: white;
}

.notifications-filters {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border: none;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.notifications-filter-select {
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.notifications-filter-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(251, 182, 206, 0.25);
    outline: none;
}

.notifications-list {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.notifications-item {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.notifications-item:last-child {
    border-bottom: none;
}

.notifications-item:hover {
    background: #f8fafc;
    transform: translateX(5px);
}

.notifications-item.unread {
    background: linear-gradient(135deg, #fef7f0 0%, #fde2e7 100%);
    border-left: 4px solid var(--primary-color);
}

.notifications-item.unread::before {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.notifications-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.notifications-icon.friend-request {
    background: var(--info-gradient);
}

.notifications-icon.booking {
    background: var(--success-gradient);
}

.notifications-icon.unbooking {
    background: var(--warning-gradient);
}

.notifications-content {
    flex: 1;
}

.notifications-message {
    font-size: 1rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.notifications-time {
    font-size: 0.85rem;
    color: #718096;
    font-weight: 400;
}

.notifications-actions-item {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.notifications-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.notifications-btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.notifications-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(251, 182, 206, 0.3);
}

.notifications-btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.notifications-btn-secondary:hover {
    background: #cbd5e0;
    transform: translateY(-1px);
}

.notifications-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #718096;
}

.notifications-empty-icon {
    font-size: 4rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.notifications-pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.notifications-page-btn {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #4a5568;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.notifications-page-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-dark);
    text-decoration: none;
    transform: translateY(-1px);
}

.notifications-page-btn.active {
    background: var(--primary-gradient);
    border-color: var(--primary-color);
    color: white;
}

/* Адаптивность для уведомлений */
@media (max-width: 768px) {
    .notifications-title {
        font-size: 2rem;
    }
    
    .notifications-subtitle {
        font-size: 1rem;
    }
    
    .notifications-item {
        padding: 1rem;
    }
    
    .notifications-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .notifications-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== УНИКАЛЬНЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ НАСТРОЕК ===== */
.settings-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.settings-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.settings-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.settings-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.settings-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.settings-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.settings-card-header {
    background: transparent;
    border: none;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.settings-icon-small {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.settings-icon-small.success {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    box-shadow: 0 4px 15px rgba(86, 171, 47, 0.3);
}

.settings-icon-small.warning {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    box-shadow: 0 4px 15px rgba(247, 151, 30, 0.3);
}

.settings-card-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.settings-card-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.settings-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid;
}

.settings-badge.primary {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-color: rgba(102, 126, 234, 0.2);
}

.settings-badge.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-color: rgba(40, 167, 69, 0.2);
}

.settings-badge.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.2);
}

.settings-card-body {
    padding: 1.5rem;
}

.settings-form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.settings-form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    background: white;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.settings-form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

.settings-form-control-plaintext {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #666;
    font-weight: 500;
}

.settings-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.settings-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.settings-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.settings-btn.success {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(86, 171, 47, 0.3);
}

.settings-btn.success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(86, 171, 47, 0.4);
    color: white;
}

.settings-btn.outline-secondary {
    background: transparent;
    color: #6c757d;
    border: 2px solid #6c757d;
}

.settings-btn.outline-secondary:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
}

.settings-btn.outline-primary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.settings-btn.outline-primary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.settings-alert {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border: none;
    margin-bottom: 1rem;
}

.settings-alert.success {
    background: linear-gradient(135deg, rgba(86, 171, 47, 0.1) 0%, rgba(168, 230, 207, 0.1) 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.settings-alert.danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(248, 215, 218, 0.1) 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.settings-spinner {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: settings-spin 1s linear infinite;
}

@keyframes settings-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.settings-form-check {
    margin-bottom: 1rem;
}

.settings-form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.settings-form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.settings-form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

.settings-form-check-label {
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.settings-section-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.settings-status-text {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.settings-status-text.muted {
    color: #6c757d;
}

.settings-status-text.warning {
    color: #856404;
}

.settings-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%);
    margin: 2rem 0;
}

.settings-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Адаптивность для настроек */
@media (max-width: 768px) {
    .settings-container {
        padding: 1rem 0;
    }
    
    .settings-header h1 {
        font-size: 2rem;
    }
    
    .settings-card {
        margin-bottom: 1rem;
    }
    
    .settings-card-header {
        padding: 1rem;
    }
    
    .settings-card-body {
        padding: 1rem;
    }
    
    .settings-icon-small {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .settings-card-title {
        font-size: 1.1rem;
    }
    
    .settings-actions-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .settings-btn {
        width: 100%;
        justify-content: center;
    }
    
    .settings-form-check-label {
        font-size: 0.9rem;
    }
}

/* ===== УНИКАЛЬНЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ СОЗДАНИЯ СПИСКА ===== */
.create-wishlist-container {
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.create-wishlist-header {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.create-wishlist-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.create-wishlist-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.create-wishlist-breadcrumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.create-wishlist-breadcrumb .btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    transition: all 0.3s ease;
}

.create-wishlist-breadcrumb .btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.create-wishlist-breadcrumb .breadcrumb {
    background: none;
    margin: 0;
}

.create-wishlist-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.create-wishlist-breadcrumb .breadcrumb-item.active {
    color: white;
}

.create-wishlist-alert {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.create-wishlist-alert.danger {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.create-wishlist-alert.success {
    background: linear-gradient(135deg, #51cf66, #40c057);
    color: white;
}

.create-wishlist-card {
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.create-wishlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.create-wishlist-card-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #dee2e6;
    padding: 1.5rem;
}

.create-wishlist-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #495057;
    margin: 0;
}

.create-wishlist-card-subtitle {
    color: #6c757d;
    font-size: 0.875rem;
}

.create-wishlist-icon-small {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 1.25rem;
}

.create-wishlist-card-body {
    padding: 2rem;
}

.create-wishlist-action-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.create-wishlist-action-card:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

.create-wishlist-action-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.create-wishlist-action-icon.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.create-wishlist-action-icon.success {
    background: linear-gradient(135deg, #51cf66, #40c057);
    color: white;
}

.create-wishlist-form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    display: block;
}

.create-wishlist-form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.create-wishlist-form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

.create-wishlist-form-control::placeholder {
    color: #adb5bd;
}

.create-wishlist-form-check {
    padding: 1rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.create-wishlist-form-check:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

.create-wishlist-form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0;
    border: 2px solid #dee2e6;
    border-radius: 6px;
}

.create-wishlist-form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.create-wishlist-form-check-label {
    font-weight: 600;
    color: #495057;
    margin-left: 0.75rem;
}

.create-wishlist-btn {
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.create-wishlist-btn.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.create-wishlist-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.create-wishlist-btn.outline-secondary {
    background: transparent;
    color: #6c757d;
    border: 2px solid #dee2e6;
}

.create-wishlist-btn.outline-secondary:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
}

.create-wishlist-tips {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border: 2px solid #e1bee7;
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.create-wishlist-tips h6 {
    color: #667eea;
    font-weight: 700;
    margin-bottom: 1rem;
}

.create-wishlist-tips ul {
    margin: 0;
    padding-left: 1.5rem;
}

.create-wishlist-tips li {
    color: #6c757d;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.create-wishlist-gift-section {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
    border-radius: 15px;
    border: 2px solid #c3e6cb;
}

.create-wishlist-gift-section i {
    color: #28a745;
    margin-bottom: 1rem;
}

.create-wishlist-gift-section h6 {
    color: #28a745;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.create-wishlist-gift-section small {
    color: #6c757d;
    line-height: 1.4;
}

/* Адаптивные стили для создания списка */
@media (max-width: 768px) {
    .create-wishlist-container {
        padding: 1rem 0;
    }
    
    .create-wishlist-header h1 {
        font-size: 2rem;
    }
    
    .create-wishlist-header p {
        font-size: 1rem;
    }
    
    .create-wishlist-breadcrumb {
        padding: 0.75rem;
    }
    
    .create-wishlist-breadcrumb .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .create-wishlist-card-body {
        padding: 1.5rem;
    }
    
    .create-wishlist-action-card {
        padding: 1rem;
    }
    
    .create-wishlist-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .create-wishlist-gift-section {
        margin-top: 1rem;
    }
}
