﻿:root {
            --primary: #FF6B9D;
            --secondary: #FFC93C;
            --accent: #B89B72;
            --love-pink: #FF69B4;
            --love-red: #FF4757;
            --bg-dark: #0a0e0d;
            --bg-dark-lighter: #1a1f1d;
            --white: #FFFFFF;
            --text: #ffffff;
            --text-soft: rgba(255, 255, 255, 0.7);
            --green: #7BBF6A;
            --orange: #F39221;
            --border: rgba(255, 107, 157, 0.2);
            --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            --shadow-hover: 0 35px 60px -15px rgba(255, 107, 157, 0.3);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
.dropdown a:hover { 
            color: var(--primary); 
            background: rgba(255, 107, 157, 0.1);
        }
.soc-group a {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 107, 157, 0.1);
            border: 1px solid var(--border);
            transition: var(--transition);
        }
.soc-group a:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
        }
.btn-consult { 
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            color: white; 
            padding: 10px 22px;
            border-radius: 8px;
            font-weight: 800; 
            font-size: 0.75rem;
            border: none; 
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
        }
.btn-consult:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
        }
.hero-lovebird-section { 
            background: linear-gradient(180deg, #0a0e0d 0%, #1a1214 100%); 
            padding: 80px 0 100px; 
            position: relative; 
            overflow: hidden; 
            min-height: 75vh; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
        }
.hero-lovebird-section::before { 
            content: ''; 
            position: absolute; 
            top: -50%; 
            left: -50%; 
            width: 200%; 
            height: 200%; 
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 107, 157, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 71, 87, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(255, 201, 60, 0.1) 0%, transparent 50%);
            animation: loveGlow 20s ease-in-out infinite; 
            pointer-events: none; 
        }
@keyframes loveGlow {
            0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
            50% { transform: rotate(180deg) scale(1.2); opacity: 0.8; }
        }
.floating-hearts {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
.heart {
            position: absolute;
            font-size: 2rem;
            animation: floatHeart 15s ease-in-out infinite;
            opacity: 0.3;
        }
.heart:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.heart:nth-child(2) { top: 60%; left: 80%; animation-delay: 5s; }
.heart:nth-child(3) { top: 30%; left: 70%; animation-delay: 10s; }
.heart:nth-child(4) { top: 80%; left: 20%; animation-delay: 3s; }
@keyframes floatHeart {
            0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
            50% { transform: translateY(-30px) rotate(15deg) scale(1.2); }
        }
.hero-lovebird-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }
.hero-lovebird-badge { 
            display: inline-flex; 
            align-items: center; 
            gap: 10px;
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(255, 71, 87, 0.2) 100%); 
            border: 2px solid var(--primary);
            color: white; 
            padding: 12px 25px; 
            border-radius: 50px; 
            font-weight: 800; 
            font-size: 0.85rem; 
            margin-bottom: 30px; 
            text-transform: uppercase; 
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4); 
            animation: badgePulse 3s ease-in-out infinite;
        }
@keyframes badgePulse {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 71, 87, 0.6); }
        }
.hero-lovebird-title{ 
            font-family:'Manrope',sans-serif; 
            font-size: clamp(3rem, 8vw, 6rem); 
            font-weight:800; 
            line-height: 1.1; 
            margin-bottom: 25px; 
            text-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }
.lovebird-gradient-text { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 50%, var(--secondary) 100%); 
            -webkit-background-clip: text; 
            -webkit-text-fill-color: transparent; 
            background-clip: text;
            animation: loveGradientShift 5s ease infinite;
            background-size: 200% 200%;
        }
@keyframes loveGradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
.hero-lovebird-subtitle { 
            font-size: clamp(1.1rem, 2.5vw, 1.4rem); 
            color: rgba(255,255,255,0.7); 
            max-width: 800px; 
            margin: 0 auto 40px; 
            line-height: 1.6;
        }
.hero-lovebird-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            max-width: 700px;
            margin: 50px auto 0;
        }
.lovebird-stat-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 25px 20px;
            text-align: center;
            transition: var(--transition);
        }
.lovebird-stat-box:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
            background: rgba(255, 107, 157, 0.1);
        }
.lovebird-stat-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            display: block;
        }
.lovebird-stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            margin-bottom: 5px;
        }
.lovebird-stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
.lovebird-filters-bar { 
            background: linear-gradient(135deg, rgba(15, 20, 25, 0.98) 0%, rgba(26, 31, 29, 0.98) 100%); 
            backdrop-filter: blur(30px); 
            border-bottom: 2px solid var(--primary); 
            position: sticky; 
            top: 74px; 
            z-index: 1500; 
            padding: 20px 0; 
            box-shadow: 0 5px 30px rgba(0,0,0,0.5);
        }
@media (max-width: 1024px) { 
            .lovebird-filters-bar { 
                top: 134px; 
                padding: 15px 0;
            } 
        }
.lovebird-filter-nav { 
            display: flex; 
            gap: 12px; 
            overflow-x: auto; 
            padding-bottom: 5px; 
            scrollbar-width: none; 
            justify-content: center; 
        }
.lovebird-filter-nav::-webkit-scrollbar {
            display: none;
        }
.lovebird-filter-btn { 
            white-space: nowrap; 
            color: rgba(255,255,255,0.7); 
            font-size: 0.9rem; 
            font-weight: 700; 
            padding: 12px 25px; 
            border-radius: 50px; 
            background: rgba(255,255,255,0.05); 
            border: 1px solid rgba(255,255,255,0.1); 
            transition: all 0.3s ease; 
            cursor: pointer; 
            display: flex;
            align-items: center;
            gap: 8px;
        }
.lovebird-filter-btn:hover { 
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(255, 71, 87, 0.2) 100%); 
            border-color: var(--primary); 
            color: white;
            transform: translateY(-2px); 
            box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4); 
        }
.lovebird-filter-btn.active { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%); 
            color: #fff; 
            border-color: transparent; 
            font-weight: 800;
            box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5); 
        }
.lovebird-smart-filters { 
            padding: 20px 0; 
            border-bottom: 1px solid rgba(255, 107, 157, 0.1); 
            background: rgba(10, 14, 13, 0.5); 
        }
.lovebird-sf-scroll { 
            display: flex; 
            gap: 12px; 
            overflow-x: auto; 
            justify-content: center; 
            padding-bottom: 5px; 
        }
.lovebird-sf-scroll::-webkit-scrollbar {
            display: none;
        }
.lovebird-sf-btn { 
            background: rgba(255,255,255,0.05); 
            border: 1px solid rgba(255,255,255,0.1); 
            color: rgba(255,255,255,0.7); 
            padding: 10px 20px; 
            border-radius: 50px; 
            font-size: 0.85rem; 
            font-weight: 600; 
            cursor: pointer; 
            transition: 0.3s; 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            white-space: nowrap; 
        }
.lovebird-sf-btn:hover { 
            background: rgba(255, 107, 157, 0.15); 
            border-color: var(--primary); 
            color: var(--primary); 
        }
.lovebird-sf-btn.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            color: white;
            border-color: transparent;
            font-weight: 800;
        }
.lovebird-catalog-section { 
            padding: 80px 0; 
            position: relative;
        }
.lovebird-catalog-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 107, 157, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(255, 71, 87, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }
.lovebird-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
            gap: 35px; 
            position: relative; 
            z-index: 2;
            justify-items: center;
        }
.lovebird-card { 
            display: flex; 
            flex-direction: column; 
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%); 
            border: 1px solid rgba(255, 255, 255, 0.1); 
            border-radius: 25px; 
            overflow: hidden; 
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
            position: relative; 
            cursor: pointer; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            width: 100%;
            max-width: 380px;
        }
.lovebird-card:hover { 
            transform: translateY(-15px) scale(1.02); 
            border-color: var(--primary); 
            box-shadow: 0 25px 50px rgba(255, 107, 157, 0.4); 
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.08) 0%, rgba(255, 71, 87, 0.05) 100%); 
        }
.lovebird-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 157, 0.1) 50%, transparent 70%);
            opacity: 0;
            transition: 0.8s;
            pointer-events: none;
        }
.lovebird-card:hover::before {
            opacity: 1;
            transform: rotate(45deg);
        }
.lovebird-img-wrapper { 
            height: 340px; 
            position: relative; 
            overflow: hidden; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
        }
.lovebird-img { 
            width: 85%; 
            max-width: 85%; 
            height: auto; 
            object-fit: contain; 
            transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
            filter: brightness(0.95);
        }
.lovebird-card:hover .lovebird-img { 
            transform: scale(1.15) rotate(5deg); 
            filter: brightness(1.1);
        }
.lovebird-badges { 
            position: absolute; 
            top: 15px; 
            left: 15px; 
            display: flex; 
            flex-direction: column; 
            gap: 8px; 
            z-index: 10; 
        }
.lovebird-badge { 
            background: rgba(0, 0, 0, 0.7); 
            backdrop-filter: blur(8px); 
            color: white; 
            padding: 6px 14px; 
            border-radius: 10px; 
            font-size: 0.75rem; 
            font-weight: 700; 
            display: flex; 
            align-items: center; 
            gap: 6px; 
            border: 1px solid rgba(255,255,255,0.2);
            transform: translateX(-10px);
            opacity: 0;
            animation: badgeSlideIn 0.5s ease forwards;
        }
@keyframes badgeSlideIn {
            to { transform: translateX(0); opacity: 1; }
        }
.lovebird-badge:nth-child(2) { animation-delay: 0.1s; }
.lovebird-badge:nth-child(3) { animation-delay: 0.2s; }
.lovebird-badge.premium { border-color: var(--primary); color: var(--primary); }
.lovebird-badge.popular { border-color: var(--secondary); color: var(--secondary); }
.lovebird-qv-btn { 
            position: absolute; 
            top: 15px; 
            right: 15px; 
            width: 45px; 
            height: 45px; 
            background: rgba(0,0,0,0.8); 
            backdrop-filter: blur(10px);
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            cursor: pointer; 
            z-index: 10; 
            transition: 0.3s; 
            font-size: 1.3rem; 
            border: 2px solid rgba(255, 107, 157, 0.5); 
            opacity: 0; 
            transform: translateY(-15px) scale(0.8);
        }
.lovebird-card:hover .lovebird-qv-btn { 
            opacity: 1; 
            transform: translateY(0) scale(1);
        }
.lovebird-qv-btn:hover { 
            background: var(--primary); 
            border-color: var(--love-red); 
            color: #000; 
            transform: scale(1.15) rotate(15deg); 
            box-shadow: 0 5px 20px rgba(255, 107, 157, 0.6);
        }
.lovebird-content { 
            padding: 30px; 
            flex-grow: 1; 
            display: flex; 
            flex-direction: column; 
            gap: 20px;
        }
.lovebird-name { 
            font-family:'Manrope',sans-serif; 
            font-size: 1.4rem; 
            font-weight: 700; 
            color: #fff; 
            margin-bottom: 5px; 
            line-height: 1.3; 
            transition: 0.3s;
        }
.lovebird-card:hover .lovebird-name {
            color: var(--primary);
        }
.lovebird-latin {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
            margin-bottom: 15px;
        }
.lovebird-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            transition: 0.4s;
        }
.lovebird-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
            transition: 0.8s;
        }
.lovebird-card:hover .lovebird-stats::before {
            left: 100%;
        }
.lovebird-card:hover .lovebird-stats {
            background: rgba(255, 107, 157, 0.08);
            border-color: rgba(255, 107, 157, 0.3);
            box-shadow: inset 0 0 20px rgba(255, 107, 157, 0.1);
        }
.lovebird-stat { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 8px; 
            position: relative;
            z-index: 1;
        }
.lovebird-stat-icon {
            font-size: 1.5rem;
            transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            filter: grayscale(0.3);
        }
.lovebird-card:hover .lovebird-stat-icon {
            transform: scale(1.3) rotate(10deg);
            filter: grayscale(0) drop-shadow(0 0 8px var(--primary));
        }
.lovebird-card:hover .lovebird-stat:nth-child(1) .lovebird-stat-icon {
            animation: iconBounce 0.6s ease;
        }
.lovebird-card:hover .lovebird-stat:nth-child(2) .lovebird-stat-icon {
            animation: iconBounce 0.6s 0.1s ease;
        }
.lovebird-card:hover .lovebird-stat:nth-child(3) .lovebird-stat-icon {
            animation: iconBounce 0.6s 0.2s ease;
        }
@keyframes iconBounce {
            0%, 100% { transform: scale(1.3) rotate(10deg); }
            50% { transform: scale(1.5) rotate(-10deg); }
        }
.lovebird-stat-dots { 
            display: flex; 
            gap: 4px; 
        }
.lovebird-dot { 
            width: 7px; 
            height: 7px; 
            border-radius: 50%; 
            background: rgba(255,255,255,0.2); 
            transition: 0.3s; 
            box-shadow: inset 0 0 3px rgba(0,0,0,0.5);
        }
.lovebird-dot.fill { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%); 
            box-shadow: 0 0 8px var(--primary); 
            animation: dotGlow 1.5s infinite alternate;
        }
@keyframes dotGlow {
            0% { box-shadow: 0 0 5px var(--primary); }
            100% { box-shadow: 0 0 15px var(--primary), 0 0 25px var(--love-red); }
        }
.lovebird-card:hover .lovebird-dot.fill {
            transform: scale(1.2);
        }
.lovebird-stat-label { 
            font-size: 0.7rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            font-weight: 700; 
            letter-spacing: 0.5px;
            margin-top: 3px; 
        }
.lovebird-size-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 15px;
            background: rgba(255, 107, 157, 0.1);
            border: 1px solid rgba(255, 107, 157, 0.3);
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
            transition: 0.3s;
        }
.lovebird-card:hover .lovebird-size-badge {
            background: rgba(255, 107, 157, 0.2);
            border-color: var(--primary);
            transform: scale(1.05);
        }
.lovebird-footer { 
            margin-top: auto; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            border-top: 1px solid rgba(255, 255, 255, 0.1); 
            padding-top: 20px; 
        }
.lovebird-price-block {
            flex: 1;
        }
.lovebird-price-label { 
            font-size: 0.75rem; 
            color: rgba(255,255,255,0.5); 
            text-transform: uppercase; 
            display: block; 
            margin-bottom: 5px;
        }
.lovebird-price { 
            font-size: 1.4rem; 
            font-weight: 800; 
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.lovebird-arrow { 
            width: 40px; 
            height: 40px; 
            border-radius: 50%; 
            background: rgba(255, 107, 157, 0.15); 
            border: 2px solid var(--primary); 
            color: var(--primary); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
            cursor: pointer; 
            font-size: 1.2rem;
        }
.lovebird-card:hover .lovebird-arrow { 
            background: var(--primary); 
            color: #000; 
            transform: rotate(-45deg) scale(1.2); 
            box-shadow: 0 5px 20px rgba(255, 107, 157, 0.6);
        }
.lovebird-load-more { 
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }
.btn-lovebird-more { 
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%); 
            border: 2px solid var(--primary); 
            color: #fff; 
            padding: 18px 50px; 
            border-radius: 50px; 
            font-size: 1rem; 
            font-weight: 700; 
            cursor: pointer; 
            transition: 0.4s; 
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
.btn-lovebird-more:hover { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%); 
            color: #fff; 
            border-color: var(--love-red);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
        }
.why-lovebird-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #1a1214 100%);
            position: relative;
            overflow: hidden;
        }
.why-lovebird-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }
.why-lovebird-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(255, 71, 87, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 10s ease-in-out infinite reverse;
        }
@keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
.why-lovebird-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
.why-lovebird-content h2 {
            font-family: 'Playfair Display';
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            margin-bottom: 30px;
            line-height: 1.1;
        }
.why-lovebird-content h2 .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.why-lovebird-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
.why-lovebird-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            transition: 0.4s;
            cursor: default;
        }
.why-lovebird-item:hover {
            background: rgba(255, 107, 157, 0.08);
            border-color: var(--primary);
            transform: translateX(15px);
            box-shadow: -5px 0 20px rgba(255, 107, 157, 0.3);
        }
.why-lovebird-icon {
            font-size: 2.5rem;
            min-width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 107, 157, 0.1);
            border-radius: 15px;
            border: 2px solid rgba(255, 107, 157, 0.3);
            transition: 0.4s;
        }
.why-lovebird-item:hover .why-lovebird-icon {
            transform: scale(1.15) rotate(10deg);
            background: var(--primary);
            border-color: var(--love-red);
            box-shadow: 0 5px 20px rgba(255, 107, 157, 0.5);
        }
.why-lovebird-text h4 {
            font-size: 1.2rem;
            color: white;
            margin-bottom: 8px;
            font-weight: 700;
        }
.why-lovebird-text p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.95rem;
        }
.why-lovebird-image {
            position: relative;
        }
.why-lovebird-image img {
            width: 100%;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            border: 3px solid rgba(255, 107, 157, 0.3);
            transition: 0.5s;
        }
.why-lovebird-image:hover img {
            transform: scale(1.05) rotate(2deg);
            border-color: var(--primary);
            box-shadow: 0 40px 100px rgba(255, 107, 157, 0.5);
        }
.floating-badge {
            position: absolute;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 15px 20px;
            border-radius: 15px;
            border: 2px solid var(--primary);
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            animation: floatBadge 3s ease-in-out infinite;
        }
.floating-badge:nth-child(1) {
            top: 10%;
            right: -20px;
            animation-delay: 0s;
        }
.floating-badge:nth-child(2) {
            bottom: 15%;
            left: -30px;
            animation-delay: 1s;
            border-color: var(--secondary);
        }
@media (max-width: 900px) {
            .why-lovebird-grid { 
                grid-template-columns: 1fr; 
                gap: 40px;
            }
            .why-lovebird-image { 
                order: -1; 
            }
            .floating-badge {
                position: relative;
                top: auto;
                bottom: auto;
                left: auto;
                right: auto;
                display: inline-block;
                margin: 10px;
            }
        }
.lovebird-price-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #1a1214 100%);
            position: relative;
            overflow: hidden;
        }
.lovebird-price-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                repeating-linear-gradient(90deg, rgba(255, 107, 157, 0.03) 0px, transparent 2px, transparent 40px),
                repeating-linear-gradient(0deg, rgba(255, 107, 157, 0.03) 0px, transparent 2px, transparent 40px);
            opacity: 0.3;
            pointer-events: none;
        }
.lovebird-price-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }
.lovebird-price-badge {
            display: inline-block;
            background: rgba(255, 107, 157, 0.1);
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.8rem;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
.lovebird-price-title {
            font-family: 'Playfair Display';
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            margin-bottom: 15px;
        }
.lovebird-price-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.lovebird-price-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 700px;
            margin: 0 auto;
        }
.lovebird-price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
            justify-items: center;
        }
.lovebird-price-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            transition: 0.5s;
            position: relative;
            overflow: hidden;
            z-index: 1;
            width: 100%;
            max-width: 360px;
        }
.lovebird-price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 107, 157, 0.1), transparent);
            transform: rotate(45deg);
            transition: 0.8s;
        }
.lovebird-price-card:hover::before {
            left: 100%;
        }
.lovebird-price-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary);
            background: rgba(255, 107, 157, 0.08);
            box-shadow: 0 25px 50px rgba(255, 107, 157, 0.3);
        }
.lovebird-price-card.popular {
            border: 2px solid var(--secondary);
            background: rgba(255, 201, 60, 0.05);
        }
.lovebird-price-card.popular::after {
            content: '⭐ ПОПУЛЯРНЫЙ';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--secondary);
            color: black;
            padding: 5px 40px;
            font-size: 0.7rem;
            font-weight: 800;
            transform: rotate(45deg);
            box-shadow: 0 5px 15px rgba(255, 201, 60, 0.5);
        }
.lovebird-price-emoji {
            font-size: 4rem;
            display: block;
            margin-bottom: 20px;
            animation: bounce 2s ease-in-out infinite;
        }
@keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
.lovebird-price-card h3{
            font-size: 1.4rem;
            color: white;
            margin-bottom: 10px;
            font-weight:800;
        }
.lovebird-price-card .latin {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
            margin-bottom: 25px;
        }
.lovebird-price-value {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
        }
.lovebird-price-features {
            list-style: none;
            margin: 25px 0;
            text-align: left;
        }
.lovebird-price-features li {
            padding: 10px 0;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }
.lovebird-price-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
        }
.btn-lovebird-order {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.9rem;
            letter-spacing: 1px;
            position: relative;
            z-index: 10;
            pointer-events: auto;
        }
.btn-lovebird-order:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
        }
.lovebird-quiz-section {
            padding: 100px 0;
            background: radial-gradient(circle at 50% 50%, #1a1f1d 0%, #0a0e0d 100%);
            position: relative;
            overflow: hidden;
        }
.lovebird-quiz-section::before {
            content: '💕';
            position: absolute;
            font-size: 400px;
            opacity: 0.02;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
.lovebird-quiz-container {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(255, 71, 87, 0.05) 100%);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 107, 157, 0.3);
            border-radius: 35px;
            padding: 60px 50px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
        }
.lovebird-quiz-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--love-red) 100%);
            width: 0%;
            transition: width 0.5s ease;
            box-shadow: 0 0 15px var(--primary);
        }
.lovebird-quiz-header {
            text-align: center;
            margin-bottom: 50px;
        }
.lovebird-quiz-step-indicator {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
.lovebird-quiz-question {
            font-family: 'Playfair Display';
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: white;
            margin-bottom: 15px;
            line-height: 1.2;
        }
.lovebird-quiz-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.6);
        }
.lovebird-quiz-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
.lovebird-quiz-option {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px 25px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 15px;
            position: relative;
            overflow: hidden;
        }
.lovebird-quiz-option::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 107, 157, 0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
.lovebird-quiz-option:hover::before {
            width: 300px;
            height: 300px;
        }
.lovebird-quiz-option:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            background: rgba(255, 107, 157, 0.1);
            box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
        }
.lovebird-quiz-option-icon {
            font-size: 3.5rem;
            position: relative;
            z-index: 1;
            transition: 0.4s;
        }
.lovebird-quiz-option:hover .lovebird-quiz-option-icon {
            transform: scale(1.2) rotate(10deg);
        }
.lovebird-quiz-option-text {
            position: relative;
            z-index: 1;
        }
.lovebird-quiz-option-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
        }
.lovebird-quiz-option-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }
.lovebird-quiz-loader {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }
.lovebird-loader-spinner {
            width: 100px;
            height: 100px;
            border: 5px solid rgba(255, 255, 255, 0.1);
            border-top: 5px solid var(--primary);
            border-right: 5px solid var(--love-red);
            border-radius: 50%;
            animation: spin 1.5s linear infinite;
            margin-bottom: 30px;
        }
@keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
.lovebird-loader-text {
            font-size: 1.3rem;
            color: white;
            font-weight: 700;
            margin-bottom: 15px;
        }
.lovebird-loader-subtext {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.5);
        }
.lovebird-quiz-result {
            display: none;
            text-align: center;
            animation: fadeIn 0.8s ease;
        }
@keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
.lovebird-result-match {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.85rem;
            text-transform: uppercase;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }
.lovebird-result-title {
            font-family: 'Playfair Display';
            font-size: clamp(2rem, 4vw, 3rem);
            color: white;
            margin-bottom: 30px;
        }
.lovebird-result-img {
            width: 250px;
            height: 250px;
            object-fit: cover;
            object-position: center 20%;
            border-radius: 50%;
            border: 5px solid var(--primary);
            margin: 0 auto 30px;
            box-shadow: 0 0 50px rgba(255, 107, 157, 0.5);
            animation: resultImgAppear 1s ease;
        }
@keyframes resultImgAppear {
            from { transform: scale(0.5) rotate(-10deg); opacity: 0; }
            to { transform: scale(1) rotate(0deg); opacity: 1; }
        }
.lovebird-result-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            max-width: 650px;
            margin: 0 auto 40px;
        }
.btn-lovebird-retry {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
            margin-bottom: 30px;
        }
.btn-lovebird-retry:hover {
            background: rgba(255, 107, 157, 0.15);
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
        }
.lovebird-retry-icon {
            display: inline-block;
            transition: transform 0.5s ease;
        }
.btn-lovebird-retry:hover .lovebird-retry-icon {
            transform: rotate(180deg);
        }
.lovebird-quiz-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 35px;
            border-radius: 20px;
            max-width: 500px;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
.lovebird-form-title {
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }
.lovebird-quiz-input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: white;
            margin-bottom: 15px;
            font-size: 1rem;
            text-align: center;
            outline: none;
            transition: 0.3s;
        }
.lovebird-quiz-input:focus {
            border-color: var(--primary);
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
        }
.lovebird-quiz-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
.btn-lovebird-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }
.btn-lovebird-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
        }
.lovebird-form-note {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 15px;
            text-align: center;
        }
.lovebird-quiz-step {
            display: none;
        }
.lovebird-quiz-step.active {
            display: block;
            animation: slideIn 0.5s ease;
        }
@keyframes slideIn {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }
.lovebird-care-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(10, 14, 13, 0.8) 0%, rgba(26, 18, 20, 0.9) 100%);
            position: relative;
            overflow: hidden;
        }
.lovebird-care-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 60px;
            align-items: center;
        }
.lovebird-care-image {
            position: relative;
        }
.lovebird-care-image img {
            width: 100%;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            border: 3px solid rgba(255, 107, 157, 0.3);
        }
.expert-badge {
            position: absolute;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            padding: 20px 25px;
            border-radius: 20px;
            border: 2px solid var(--primary);
            color: white;
            font-weight: 700;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
        }
.expert-badge:nth-child(1) {
            top: 10%;
            right: -30px;
        }
.expert-badge:nth-child(2) {
            bottom: 15%;
            left: -40px;
            border-color: var(--secondary);
        }
.expert-badge-icon {
            font-size: 2rem;
            display: block;
            margin-bottom: 5px;
        }
.expert-badge-text {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
        }
.lovebird-care-content h2 {
            font-family: 'Playfair Display';
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            margin-bottom: 25px;
            line-height: 1.1;
        }
.lovebird-care-content h2 span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.lovebird-care-intro {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            line-height: 1.7;
        }
.lovebird-care-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
.lovebird-care-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.03);
            border-left: 4px solid var(--primary);
            border-radius: 15px;
            transition: 0.3s;
        }
.lovebird-care-item:hover {
            background: rgba(255, 107, 157, 0.08);
            transform: translateX(10px);
            box-shadow: -5px 0 20px rgba(255, 107, 157, 0.2);
        }
.lovebird-care-item-icon {
            font-size: 2rem;
            min-width: 50px;
        }
.lovebird-care-item h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 8px;
            font-weight: 700;
        }
.lovebird-care-item p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-size: 0.95rem;
        }
@media (max-width: 900px) {
            .lovebird-care-grid {
                grid-template-columns: 1fr;
            }
            .lovebird-care-image {
                order: -1;
            }
            .expert-badge {
                position: relative;
                top: auto;
                bottom: auto;
                left: auto;
                right: auto;
                display: inline-block;
                margin: 10px;
            }
        }
.lovebird-seo-section {
            padding: 100px 0;
            background: radial-gradient(circle at 50% 10%, #1a1f1d 0%, #050806 100%);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(255, 107, 157, 0.2);
            border-bottom: 1px solid rgba(255, 107, 157, 0.2);
        }
.lovebird-seo-grid-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: 
                linear-gradient(rgba(255, 107, 157, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 107, 157, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.4;
            pointer-events: none;
        }
.lovebird-seo-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
.lovebird-faq-container {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 107, 157, 0.2);
            border-radius: 30px;
            padding: 50px 45px;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
            margin-bottom: 60px;
        }
.lovebird-faq-title {
            font-family: 'Playfair Display';
            font-size: 2.5rem;
            color: white;
            text-align: center;
            margin-bottom: 40px;
        }
.lovebird-faq-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.lovebird-faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            transition: 0.3s;
        }
.lovebird-faq-item:last-child {
            border-bottom: none;
        }
.lovebird-faq-question {
            font-weight: 700;
            color: white;
            font-size: 1.15rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.3s;
            padding-right: 20px;
        }
.lovebird-faq-question:hover {
            color: var(--primary);
        }
.lovebird-faq-icon {
            font-size: 1.5rem;
            color: var(--primary);
            transition: 0.4s;
            min-width: 30px;
            text-align: center;
        }
.lovebird-faq-item.active .lovebird-faq-icon {
            transform: rotate(45deg);
            color: var(--love-red);
        }
.lovebird-faq-answer {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.7;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
.lovebird-faq-item.active .lovebird-faq-answer {
            max-height: 1000px;
            padding-top: 20px;
        }
.lovebird-faq-item.active .lovebird-faq-question {
            color: var(--primary);
        }
.lovebird-seo-text {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            padding: 50px 45px;
        }
.lovebird-trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 107, 157, 0.1);
            border: 1px solid var(--primary);
            padding: 10px 20px;
            border-radius: 50px;
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 107, 157, 0.2);
        }
.lovebird-seo-text h2 {
            font-family: 'Playfair Display';
            font-size: clamp(2rem, 4vw, 3rem);
            color: white;
            margin-bottom: 25px;
            line-height: 1.2;
        }
.lovebird-seo-text h2 span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.lovebird-seo-description {
            color: rgba(255, 255, 255, 0.75);
            font-size: 1.05rem;
            line-height: 1.8;
        }
.lovebird-seo-description p {
            margin-bottom: 20px;
        }
.lovebird-seo-description strong {
            color: var(--primary);
            font-weight: 600;
        }
.lovebird-seo-description ul {
            list-style: none;
            margin: 25px 0;
            padding-left: 10px;
        }
.lovebird-seo-description li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
.lovebird-seo-description li::before {
            content: '💕';
            font-size: 1.2rem;
            flex-shrink: 0;
        }
.lovebird-seo-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
.lovebird-seo-tag {
            background: rgba(255, 255, 255, 0.03);
            padding: 8px 16px;
            border-radius: 10px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: 0.3s;
        }
.lovebird-seo-tag:hover {
            color: var(--primary);
            border-color: var(--primary);
            background: rgba(255, 107, 157, 0.05);
        }
.modal-box, .lovebird-qv-box { 
            position: relative !important; 
            background: #111; 
            border: 1px solid var(--primary); 
            border-radius: 20px; 
            width: 900px; 
            max-width: 100%; 
            max-height: 90vh; 
            display: flex; 
            flex-direction: column; 
            overflow: hidden; 
            animation: zoomIn 0.3s ease; 
            box-shadow: 0 20px 50px rgba(0,0,0,0.8); 
        }
@keyframes zoomIn { 
            from { 
                opacity: 0; 
                transform: scale(0.95); 
            } 
            to { 
                opacity: 1; 
                transform: scale(1); 
            } 
        }
.form-box-styled { 
            max-width: 500px; 
            padding: 40px; 
        }
.modal-close { 
            position: absolute !important; 
            top: 20px !important; 
            right: 20px !important; 
            width: 44px !important; 
            height: 44px !important; 
            background: rgba(0,0,0,0.5) !important; 
            border: 2px solid var(--primary) !important; 
            border-radius: 50% !important; 
            color: white !important; 
            font-size: 24px !important; 
            display: flex !important; 
            align-items: center !important; 
            justify-content: center !important; 
            cursor: pointer !important; 
            z-index: 100 !important; 
            transition: var(--transition) !important;
        }
.modal-close:hover {
            background: var(--primary) !important;
            color: #fff !important;
            transform: rotate(90deg);
        }
.lovebird-qv-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            height: 550px; 
            overflow: hidden; 
        }
.lovebird-qv-image { 
            background: black; 
            width: 100%; 
            height: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border-right: 1px solid rgba(255,255,255,0.1); 
        }
.lovebird-qv-image img { 
            width: 100%; 
            height: 100%; 
            object-fit: cover; 
        }
.lovebird-qv-scroll { 
            padding: 40px 40px 100px 40px; 
            overflow-y: auto; 
            display: flex; 
            flex-direction: column; 
        }
.lovebird-qv-footer { 
            position: absolute; 
            bottom: 0; 
            right: 0; 
            width: 50%; 
            padding: 20px 40px; 
            background: rgba(17, 17, 17, 0.95); 
            border-top: 1px solid rgba(255,255,255,0.1); 
            display: flex; 
            gap: 15px; 
            backdrop-filter: blur(5px); 
        }
.lovebird-qv-header h2 { 
            font-family: 'Playfair Display'; 
            font-size: 2.2rem; 
            color: var(--primary); 
            margin-bottom: 25px; 
            line-height: 1; 
        }
.lovebird-qv-price { 
            font-size: 2.5rem; 
            font-weight: 800; 
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px; 
            font-family: 'Manrope'; 
        }
.btn-lovebird-qv-order {
            flex: 1;
            padding: 15px; 
            background: linear-gradient(135deg, var(--primary), var(--love-red)); 
            border: none; 
            border-radius: 12px; 
            color: white; 
            font-weight: 800; 
            text-transform: uppercase; 
            cursor: pointer; 
            transition: var(--transition);
        }
.btn-lovebird-qv-order:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 107, 157, 0.5);
        }
.lovebird-qv-phone { 
            flex: 1; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border: 2px solid var(--primary); 
            border-radius: 12px; 
            color: var(--primary); 
            font-weight: 700; 
            text-decoration: none; 
            transition: var(--transition);
        }
.lovebird-qv-phone:hover {
            background: var(--primary);
            color: #fff;
        }
@media (max-width: 900px) {
            .modal { 
                align-items: flex-end; 
                padding: 0; 
                background: rgba(0,0,0,0.8); 
            }
            
            .modal-box, .lovebird-qv-box { 
                width: 100% !important; 
                margin: 0 !important; 
                border-radius: 24px 24px 0 0 !important; 
                border: none !important; 
                border-top: 1px solid var(--primary) !important; 
                height: 90vh !important; 
                max-height: 90vh !important; 
                animation: slideUp 0.4s ease; 
            }
            
            @keyframes slideUp { 
                from { 
                    transform: translateY(100%); 
                } 
                to { 
                    transform: translateY(0); 
                } 
            }
            
            .lovebird-qv-grid { 
                display: flex; 
                flex-direction: column; 
                height: 100%; 
            }
            
            .lovebird-qv-image { 
                height: 35vh; 
                min-height: 250px; 
                border-bottom: 1px solid rgba(255,255,255,0.1); 
                border-right: none;
            }
            
            .lovebird-qv-image img { 
                padding: 15px; 
                object-fit: contain !important; 
            }
            
            .lovebird-qv-scroll { 
                flex-grow: 1; 
                padding: 20px 20px 0 20px; 
            }
            
            .lovebird-qv-footer { 
                position: relative; 
                width: 100%; 
                padding: 15px 20px 25px 20px; 
                flex-direction: column; 
                gap: 10px; 
            }
        }
.catalog-modal { 
            display: none; 
            position: fixed; 
            inset: 0; 
            z-index: 11000; 
            background: rgba(10, 14, 13, 0.98); 
            backdrop-filter: blur(15px); 
            flex-direction: column; 
            align-items: center; 
            justify-content: flex-start; 
            overflow-y: auto; 
            opacity: 0; 
            transition: opacity 0.3s ease; 
            padding-top: 60px; 
        }
.cat-modal-close { 
            position: fixed; 
            top: 20px; 
            right: 20px; 
            font-size: 2.5rem; 
            color: white; 
            cursor: pointer; 
            line-height: 1; 
            transition: 0.3s; 
            z-index: 100; 
            width: 50px; 
            height: 50px; 
            background: rgba(255, 107, 157, 0.1); 
            border-radius: 50%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            border: 2px solid var(--primary); 
        }
.cat-modal-close:hover {
            background: var(--primary);
            color: #fff;
            transform: rotate(90deg);
        }
.cat-modal-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
            gap: 20px; 
            width: 100%; 
            max-width: 1000px; 
            padding: 40px 20px 100px 20px; 
        }
.cat-modal-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            text-align: center; 
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(26, 31, 29, 0.5) 100%); 
            padding: 25px 15px; 
            border-radius: 20px; 
            border: 1px solid rgba(255, 107, 157, 0.2); 
            transition: all 0.3s ease; 
            cursor: pointer; 
            text-decoration: none; 
        }
.cat-modal-item:hover { 
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.2) 0%, rgba(255, 71, 87, 0.1) 100%); 
            border-color: var(--primary); 
            transform: translateY(-5px) scale(1.05); 
        }
.mn-header { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            margin-bottom: 30px; 
            border-bottom: 1px solid rgba(255, 107, 157, 0.2); 
            padding-bottom: 15px; 
        }
.mn-close { 
            background: none; 
            border: none; 
            color: #fff; 
            font-size: 2rem; 
            cursor: pointer; 
        }
.mn-link-list a { 
            font-size: 1.1rem; 
            font-weight: 700; 
            color: #fff; 
            text-transform: uppercase; 
        }
.mn-contacts-center { 
            margin-bottom: 30px; 
        }
.mn-badge-bottom { 
            margin-top: auto; 
            background: rgba(255, 107, 157, 0.1); 
            padding: 15px; 
            border-radius: 12px; 
            font-size: 0.75rem; 
            text-align: center; 
            color: var(--primary); 
            border: 1px solid var(--primary); 
        }
.btn-hero { 
            display: inline-block; 
            padding: 16px 30px; 
            border-radius: 50px; 
            font-weight: 800; 
            text-transform: uppercase; 
            cursor: pointer; 
            text-decoration: none; 
            border: none; 
            box-shadow: 0 10px 20px rgba(0,0,0,0.3); 
            transition: var(--transition);
        }
.btn-hero.lovebird-pink { 
            background: linear-gradient(135deg, var(--primary), var(--love-red)); 
            color: white; 
        }
.btn-hero.lovebird-gradient { 
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            color: white; 
        }
.btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
        }
.form-input { 
            width: 100%; 
            padding: 15px; 
            background: rgba(255,255,255,0.05); 
            border: 1px solid rgba(255,255,255,0.1); 
            border-radius: 50px; 
            color: white; 
            margin-bottom: 15px; 
            outline: none; 
            transition: var(--transition);
        }
.form-input:focus { 
            border-color: var(--primary); 
            background: rgba(255,255,255,0.1);
            box-shadow: 0 0 15px rgba(255, 107, 157, 0.3);
        }
.scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--love-red) 100%);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9000;
            box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
            transition: 0.3s;
            color: white;
            font-size: 1.5rem;
        }
.scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.6);
        }
@media (max-width: 768px) {
            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
            
            .lovebird-grid {
                grid-template-columns: 1fr;
            }
            
            .lovebird-price-grid {
                grid-template-columns: 1fr;
            }
            
            .lovebird-quiz-options {
                grid-template-columns: 1fr;
            }
            
            .cat-modal-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
.mobile-tab { 
            position: fixed; 
            bottom: 20px;
            left: 15px;
            right: 15px;
            height: 75px;
            background: linear-gradient(135deg, rgba(10, 14, 13, 0.98) 0%, rgba(26, 21, 15, 0.98) 100%);
            backdrop-filter: blur(20px);
            border-radius: 50px;
            display: none;
            justify-content: space-around; 
            align-items: center; 
            z-index: 2500; 
            box-shadow: 0 20px 60px rgba(0,0,0,0.8);
            border: 1px solid var(--border);
        }
.tab-item { 
            text-align: center; 
            color: rgba(255,255,255,0.5); 
            font-size: 0.65rem;
            text-transform: uppercase; 
            font-weight: 700;
            transition: var(--transition);
        }