/* =========================================== */
/* СТИЛИ ДЛЯ СТРАНИЦЫ СВАДЬБЫ */
/* =========================================== */

/* Специальный фон с сердечками для свадьбы */
.wedding-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.wedding-heart {
    position: absolute;
    background: linear-gradient(45deg, #ffd700, #fff);
    border-radius: 50%;
    opacity: 0;
    animation: floatWedding 10s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.wedding-heart::before, .wedding-heart::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.wedding-heart::before {
    top: -50%;
    left: 0;
    width: 100%;
    height: 100%;
}

.wedding-heart::after {
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
}

@keyframes floatWedding {
    0%, 100% { 
        transform: translateY(0) rotate(45deg) scale(0.8);
        opacity: 0;
    }
    50% { 
        opacity: 0.6;
    }
    100% { 
        transform: translateY(-100vh) rotate(45deg) scale(1.2);
    }
}

/* Счетчик до свадьбы */
.countdown-widget {
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 20px;
    padding: 25px 30px;
    margin: 30px auto;
    max-width: 800px;
    border: 2px solid rgba(255, 77, 141, 0.3);
    text-align: center;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.countdown-header i {
    font-size: 2rem;
    color: var(--primary-pink);
}

.countdown-header h3 {
    color: var(--light-pink);
    margin: 0;
    font-size: 1.3rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(26, 15, 46, 0.8);
    border-radius: 15px;
    padding: 20px;
    min-width: 100px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.countdown-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Быстрый старт */
.quick-start-form {
    background: rgba(26, 15, 46, 0.8);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid rgba(255, 77, 141, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.range-slider {
    position: relative;
    margin: 15px 0;
}

.slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, var(--primary-pink), var(--purple));
    border-radius: 4px;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--primary-pink);
    box-shadow: 0 0 10px rgba(255, 77, 141, 0.5);
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--primary-pink);
    box-shadow: 0 0 10px rgba(255, 77, 141, 0.5);
}

.range-value {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: var(--light-pink);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.quick-start-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.quick-tips {
    margin-top: 40px;
    padding: 25px;
    background: rgba(15, 10, 26, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 77, 141, 0.2);
}

.quick-tips h3 {
    color: var(--light-pink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tip {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
}

.tip:hover {
    background: rgba(255, 77, 141, 0.1);
    transform: translateX(5px);
}

.tip i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.tip p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

/* Калькулятор бюджета */
.calculator-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin: 30px 0;
}

@media (max-width: 992px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
}

.calculator-sidebar {
    background: rgba(15, 10, 26, 0.8);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.budget-summary {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.budget-summary h3 {
    color: var(--light-pink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.total-budget {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.budget-progress {
    margin-top: 20px;
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary-pink), var(--purple));
    border-radius: 5px;
    transition: width 0.5s ease;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.budget-breakdown {
    margin-bottom: 30px;
}

.budget-breakdown h4 {
    color: var(--light-pink);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-pink);
}

.breakdown-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.breakdown-amount {
    color: var(--light-pink);
    font-weight: 600;
}

.budget-tips h4 {
    color: var(--light-pink);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.budget-tips ul {
    list-style: none;
    padding-left: 0;
}

.budget-tips li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.budget-tips li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

.calculator-main {
    background: rgba(26, 15, 46, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 77, 141, 0.2);
}

.calculator-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-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: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    background: rgba(255, 77, 141, 0.1);
    color: white;
}

.tab-btn.active {
    background: linear-gradient(to right, var(--primary-pink), var(--dark-pink));
    color: white;
    border-color: transparent;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    display: flex;
    gap: 15px;
}

.category-card:hover {
    background: rgba(255, 77, 141, 0.1);
    border-color: var(--primary-pink);
    transform: translateY(-5px);
}

.category-icon {
    flex-shrink: 0;
}

.category-icon i {
    font-size: 2rem;
    color: var(--primary-pink);
}

.category-content {
    flex: 1;
}

.category-content h4 {
    color: var(--light-pink);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.category-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.category-budget {
    display: flex;
    align-items: center;
    gap: 10px;
}

.budget-input {
    flex: 1;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.budget-input:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.category-budget span {
    color: var(--light-pink);
    font-weight: 600;
    min-width: 20px;
}

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

.custom-budget h3 {
    color: var(--light-pink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.custom-items {
    min-height: 200px;
    margin-bottom: 20px;
}

.empty-custom {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.5);
}

.empty-custom i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    color: var(--purple);
}

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

.comparison-chart h3 {
    color: var(--light-pink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.chart-container {
    height: 300px;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
}

.comparison-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.calculator-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Чек-лист свадьбы */
.timeline-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 30px 0;
    justify-content: center;
}

.timeline-filter-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;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.timeline-filter-btn:hover {
    background: rgba(255, 77, 141, 0.1);
    color: white;
}

.timeline-filter-btn.active {
    background: linear-gradient(to right, var(--primary-pink), var(--dark-pink));
    color: white;
    border-color: transparent;
}

.checklist-timeline {
    position: relative;
    padding-left: 50px;
}

.checklist-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-pink), var(--purple));
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    display: none;
}

.timeline-item.active {
    display: block;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--primary-pink);
    border-radius: 50%;
    border: 4px solid var(--dark-bg);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(26, 15, 46, 0.7);
    border-radius: 10px;
    border-left: 4px solid var(--primary-pink);
}

.timeline-date {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-pink);
}

.timeline-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-pink) 0%, rgba(255, 255, 255, 0.1) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    border-radius: 50%;
}

.progress-circle span {
    position: relative;
    z-index: 1;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist-task {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.checklist-task:hover {
    background: rgba(255, 77, 141, 0.1);
    transform: translateX(5px);
}

.checklist-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.checklist-checkbox.checked {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
}

.checklist-checkbox.checked::after {
    content: '✓';
    color: white;
    font-weight: bold;
}

.checklist-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
}

.checklist-due {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    min-width: 100px;
    text-align: right;
}

.checklist-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 77, 141, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--light-pink);
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Тематика свадьбы */
.themes-filter {
    background: rgba(15, 10, 26, 0.7);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(255, 77, 141, 0.2);
}

.filter-group {
    margin-bottom: 25px;
}

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

.filter-group h4 {
    color: var(--light-pink);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn, .season-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: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.filter-btn:hover, .season-btn:hover {
    background: rgba(255, 77, 141, 0.1);
    color: white;
}

.filter-btn.active, .season-btn.active {
    background: linear-gradient(to right, var(--primary-pink), var(--dark-pink));
    color: white;
    border-color: transparent;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.theme-card {
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.9), rgba(15, 10, 26, 0.95));
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
    position: relative;
}

.theme-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 20px 40px rgba(255, 77, 141, 0.25);
}

.theme-image {
    height: 200px;
    background: linear-gradient(135deg, var(--purple), var(--dark-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.theme-image i {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.theme-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 77, 141, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.theme-content {
    padding: 25px;
}

.theme-title {
    font-size: 1.4rem;
    color: var(--light-pink);
    margin-bottom: 10px;
}

.theme-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.theme-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.theme-feature {
    background: rgba(255, 77, 141, 0.1);
    color: var(--light-pink);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.theme-actions {
    display: flex;
    gap: 10px;
}

.theme-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.theme-btn.preview {
    background: rgba(139, 92, 246, 0.2);
    color: var(--light-pink);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.theme-btn.preview:hover {
    background: rgba(139, 92, 246, 0.3);
}

.theme-btn.select {
    background: linear-gradient(to right, var(--primary-pink), var(--dark-pink));
    color: white;
    border: 1px solid var(--primary-pink);
}

.theme-btn.select:hover {
    background: linear-gradient(to right, var(--dark-pink), var(--primary-pink));
    transform: translateY(-2px);
}

.theme-quiz {
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    border: 2px solid rgba(255, 77, 141, 0.3);
}

.theme-quiz h3 {
    color: var(--light-pink);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.theme-quiz p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Конструктор тематики */
.theme-builder {
    margin-top: 50px;
    padding: 40px;
    background: rgba(15, 10, 26, 0.8);
    border-radius: 25px;
    border: 2px solid rgba(255, 77, 141, 0.2);
}

.builder-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .builder-container {
        grid-template-columns: 1fr;
    }
}

.builder-preview {
    background: rgba(26, 15, 46, 0.7);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.preview-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.preview-header {
    background: linear-gradient(to right, var(--primary-pink), var(--purple));
    padding: 20px;
    text-align: center;
}

.preview-header h4 {
    color: white;
    margin: 0;
    font-size: 1.3rem;
}

.preview-content {
    padding: 25px;
}

.preview-colors {
    text-align: center;
    margin-bottom: 25px;
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.preview-colors p {
    color: #333;
    font-weight: 600;
    margin: 0;
}

.preview-styles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.style-tag {
    background: var(--light-pink);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.builder-controls {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.control-group h4 {
    color: var(--light-pink);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-picker {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.color-picker input[type="color"] {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
}

.color-picker input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

.color-picker input[type="color"]::-webkit-color-swatch {
    border: 3px solid white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.style-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.style-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.style-tag:hover {
    background: rgba(255, 77, 141, 0.2);
    color: white;
}

.style-tag.selected {
    background: var(--primary-pink);
    color: white;
    border-color: transparent;
}

.details-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.checkbox-label:hover {
    color: var(--light-pink);
    transform: translateX(5px);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-pink);
}

/* Гостевой список */
.guestlist-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.guestlist-main {
    background: rgba(15, 10, 26, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 77, 141, 0.2);
}

.guestlist-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.guestlist-table {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guestlist-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.guestlist-table th {
    background: rgba(255, 77, 141, 0.2);
    color: var(--light-pink);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 77, 141, 0.3);
}

.guestlist-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.guestlist-table tr:hover {
    background: rgba(255, 77, 141, 0.1);
}

.status-badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-confirmed {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
}

.status-pending {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

.status-declined {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

/* Поставщики */
.vendors-search {
    background: rgba(15, 10, 26, 0.7);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(255, 77, 141, 0.2);
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.search-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.search-filters select {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
}

.search-filters select:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.vendor-card {
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.9), rgba(15, 10, 26, 0.95));
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
}

.vendor-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 35px rgba(255, 77, 141, 0.25);
}

.vendor-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vendor-name {
    font-size: 1.3rem;
    color: var(--light-pink);
    margin-bottom: 10px;
}

.vendor-category {
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.vendor-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gold);
}

.vendor-content {
    padding: 25px;
}

.vendor-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light-pink);
    margin-bottom: 15px;
}

.vendor-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.vendor-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.vendor-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: bold;
}

.vendor-actions {
    display: flex;
    gap: 10px;
}

.vendor-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.vendor-btn.contact {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.vendor-btn.contact:hover {
    background: rgba(52, 152, 219, 0.3);
}

.vendor-btn.save {
    background: rgba(255, 77, 141, 0.2);
    color: var(--primary-pink);
    border: 1px solid rgba(255, 77, 141, 0.3);
}

.vendor-btn.save:hover {
    background: rgba(255, 77, 141, 0.3);
}

.vendor-btn.saved {
    background: var(--primary-pink);
    color: white;
    border: 1px solid var(--primary-pink);
}

/* Тайминг свадебного дня */
.timeline-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin: 30px 0;
}

@media (max-width: 992px) {
    .timeline-container {
        grid-template-columns: 1fr;
    }
}

.timeline-editor {
    background: rgba(15, 10, 26, 0.7);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 77, 141, 0.2);
}

.timeline-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.time-format {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.radio-label input[type="radio"] {
    accent-color: var(--primary-pink);
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-item-editor {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 15px;
    align-items: center;
}

.time-input {
    width: 100px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    text-align: center;
}

.event-input {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.timeline-preview {
    background: rgba(26, 15, 46, 0.8);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 77, 141, 0.2);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.timeline-preview h3 {
    color: var(--light-pink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-timeline {
    margin-bottom: 25px;
}

.preview-item {
    padding: 15px;
    border-left: 4px solid var(--primary-pink);
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 8px 8px 0;
}

.preview-time {
    font-weight: bold;
    color: var(--light-pink);
    margin-bottom: 5px;
}

.preview-event {
    color: rgba(255, 255, 255, 0.9);
}

/* Идеи и вдохновение */
.inspiration-tabs {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.inspiration-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.inspiration-content.active {
    display: block;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.idea-card {
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.9), rgba(15, 10, 26, 0.95));
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
}

.idea-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 35px rgba(255, 77, 141, 0.25);
}

.idea-image {
    height: 200px;
    background: linear-gradient(135deg, var(--purple), var(--dark-purple));
    display: flex;
    align-items: center;
    justify-content: center;
}

.idea-image i {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.idea-content {
    padding: 25px;
}

.idea-title {
    font-size: 1.3rem;
    color: var(--light-pink);
    margin-bottom: 10px;
}

.idea-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.idea-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.idea-tag {
    background: rgba(255, 77, 141, 0.1);
    color: var(--light-pink);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Свадебный бот */
.wedding-bot {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(124, 58, 237, 0.25));
    border-radius: 25px;
    padding: 40px;
    margin: 50px 0;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.bot-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}

.bot-header i {
    font-size: 2.5rem;
    color: var(--purple);
}

.bot-header h3 {
    color: var(--light-pink);
    margin: 0;
    font-size: 1.8rem;
}

.bot-content p {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.bot-chat {
    background: rgba(26, 15, 46, 0.8);
    border-radius: 15px;
    padding: 25px;
    min-height: 200px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bot-message {
    background: rgba(255, 77, 141, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    max-width: 80%;
    border: 1px solid rgba(255, 77, 141, 0.2);
}

.bot-message p {
    margin: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
}

.bot-input {
    display: flex;
    gap: 10px;
}

.bot-input input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
}

.bot-input input:focus {
    outline: none;
    border-color: var(--primary-pink);
}

/* Реестр подарков */
.registry-intro {
    background: rgba(15, 10, 26, 0.7);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    border: 1px solid rgba(255, 77, 141, 0.2);
}

.registry-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.registry-main {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin: 30px 0;
}

@media (max-width: 992px) {
    .registry-main {
        grid-template-columns: 1fr;
    }
}

.registry-categories {
    background: rgba(15, 10, 26, 0.7);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 77, 141, 0.2);
    height: fit-content;
}

.registry-categories h4 {
    color: var(--light-pink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-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: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.category-btn:hover {
    background: rgba(255, 77, 141, 0.1);
    color: white;
    transform: translateX(5px);
}

.category-btn.active {
    background: linear-gradient(to right, var(--primary-pink), var(--dark-pink));
    color: white;
    border-color: transparent;
}

.registry-items {
    background: rgba(15, 10, 26, 0.7);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 77, 141, 0.2);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.registry-item {
    background: rgba(26, 15, 46, 0.8);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    position: relative;
}

.registry-item:hover {
    background: rgba(255, 77, 141, 0.1);
    border-color: var(--primary-pink);
    transform: translateY(-5px);
}

.item-reserved {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-pink);
    color: white;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.item-title {
    color: var(--light-pink);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.item-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 15px;
}

.item-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.item-actions {
    display: flex;
    gap: 10px;
}

.item-btn {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.item-btn.reserve {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.item-btn.reserve:hover {
    background: rgba(52, 152, 219, 0.3);
}

.item-btn.remove {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.item-btn.remove:hover {
    background: rgba(231, 76, 60, 0.3);
}

.registry-share {
    background: rgba(15, 10, 26, 0.7);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
    border: 1px solid rgba(255, 77, 141, 0.2);
}

.registry-share h4 {
    color: var(--light-pink);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.registry-share p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.share-link {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.share-link input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
}

.share-options {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.share-btn {
    background: rgba(255, 77, 141, 0.2);
    color: var(--light-pink);
    border: 1px solid rgba(255, 77, 141, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn:hover {
    background: rgba(255, 77, 141, 0.3);
    transform: translateY(-3px);
}

/* Финальный CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.2), rgba(168, 85, 247, 0.2));
    border-radius: 25px;
    padding: 50px;
    margin: 40px 0;
    text-align: center;
    border: 2px solid rgba(255, 77, 141, 0.3);
}

.cta-content h2 {
    color: var(--light-pink);
    margin-bottom: 20px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Модальные окна */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--primary-pink);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: var(--light-pink);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    color: var(--primary-pink);
}

.modal-tip {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

.modal-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Адаптивность */
@media (max-width: 768px) {
    .calculator-actions,
    .quick-start-actions,
    .checklist-actions,
    .cta-buttons {
        flex-direction: column;
    }
    
    .calculator-actions .btn,
    .quick-start-actions .btn,
    .checklist-actions .btn,
    .cta-buttons .btn {
        width: 100%;
    }
    
    .guestlist-table {
        font-size: 0.9rem;
    }
    
    .guestlist-table th,
    .guestlist-table td {
        padding: 10px 5px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .final-cta {
        padding: 30px 20px;
    }
    
    .theme-builder {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .search-filters {
        flex-direction: column;
    }
    
    .search-filters select {
        min-width: 100%;
    }
    
    .themes-grid,
    .vendors-grid,
    .inspiration-grid,
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 12px 8px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
}