/* =========================================== */
/* СТИЛИ ДЛЯ СТРАНИЦЫ ПОДАРКОВ */
/* =========================================== */

/* Быстрая навигация */
.gifts-quick-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 25px 0 40px 0;
    padding: 20px;
    background: rgba(26, 15, 46, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(255, 77, 141, 0.2);
}

.nav-btn {
    background: rgba(255, 77, 141, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 77, 141, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.nav-btn:hover {
    background: rgba(255, 77, 141, 0.2);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-pink);
}

/* Мастер подбора */
.wizard-container {
    background: rgba(15, 10, 26, 0.9);
    border-radius: 25px;
    padding: 40px;
    margin-top: 30px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    transition: all 0.3s;
}

.progress-step.active .step-number {
    background: linear-gradient(to right, var(--primary-pink), var(--dark-pink));
    color: white;
    border-color: var(--primary-pink);
    box-shadow: 0 0 20px rgba(255, 77, 141, 0.3);
}

.step-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.progress-step.active .step-label {
    color: var(--light-pink);
    font-weight: 600;
}

/* Шаги мастера */
.wizard-step {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.wizard-step.active {
    display: block;
}

.wizard-step h3 {
    font-size: 1.8rem;
    color: var(--light-pink);
    margin-bottom: 30px;
    text-align: center;
}

.sub-question {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Сетка опций */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.option-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

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

.option-card.selected {
    background: rgba(255, 77, 141, 0.2);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 25px rgba(255, 77, 141, 0.2);
}

.option-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-card h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
}

.option-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Дополнительные опции */
.extra-option {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.extra-option h4 {
    font-size: 1.2rem;
    color: var(--light-pink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-container {
    max-width: 600px;
    margin: 0 auto;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

.relationship-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--primary-pink);
}

/* Опции бюджета */
.budget-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.budget-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.budget-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
}

.budget-card.selected {
    background: rgba(255, 77, 141, 0.2);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 25px rgba(255, 77, 141, 0.2);
}

.budget-emoji {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.budget-card h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
}

.budget-card p {
    color: var(--light-pink);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.budget-desc {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Интересы */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.interest-checkbox {
    display: block;
    cursor: pointer;
}

.interest-checkbox input {
    display: none;
}

.interest-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.interest-checkbox input:checked + .interest-card {
    background: rgba(255, 77, 141, 0.2);
    border-color: var(--primary-pink);
    box-shadow: 0 5px 15px rgba(255, 77, 141, 0.2);
}

.interest-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-pink);
}

.interest-card i {
    font-size: 1.8rem;
    color: var(--primary-pink);
    margin-bottom: 10px;
    display: block;
}

.interest-card span {
    color: white;
    font-weight: 500;
}

/* Тип подарка */
.gift-type-section {
    background: rgba(26, 15, 46, 0.8);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.gift-type-section h4 {
    font-size: 1.3rem;
    color: var(--light-pink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gift-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.gift-type-radio {
    display: block;
    cursor: pointer;
}

.gift-type-radio input {
    display: none;
}

.type-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.gift-type-radio input:checked + .type-card {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--purple);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.type-card:hover {
    transform: translateY(-3px);
    border-color: var(--purple);
}

.type-card i {
    font-size: 2rem;
    color: var(--purple);
    margin-bottom: 10px;
    display: block;
}

.type-card span {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.type-card small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Кнопки мастера */
.wizard-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.wizard-prev-btn,
.wizard-next-btn,
.generate-gifts-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.wizard-prev-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.wizard-next-btn {
    background: linear-gradient(to right, var(--purple), var(--dark-purple));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.generate-gifts-btn {
    background: linear-gradient(to right, var(--primary-pink), var(--dark-pink));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.wizard-prev-btn:hover,
.wizard-next-btn:hover,
.generate-gifts-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Результаты */
.filters-summary {
    background: rgba(255, 77, 141, 0.1);
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 77, 141, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    background: rgba(255, 77, 141, 0.2);
    color: var(--light-pink);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 77, 141, 0.3);
}

.filter-tag i {
    font-size: 0.8rem;
}

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

.gift-card {
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 77, 141, 0.2);
    transition: all 0.3s;
}

.gift-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 77, 141, 0.2);
}

.gift-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.gift-content {
    padding: 25px;
}

.gift-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.gift-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.gift-title {
    font-size: 1.4rem;
    color: var(--light-pink);
    margin-bottom: 15px;
    line-height: 1.3;
}

.gift-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.gift-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.gift-tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.gift-tab.active {
    color: var(--primary-pink);
    border-bottom-color: var(--primary-pink);
}

.gift-tab-content {
    min-height: 120px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.gift-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.gift-action-btn {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gift-action-btn:hover {
    background: rgba(255, 77, 141, 0.2);
    border-color: var(--primary-pink);
}

.results-controls {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.load-more-btn,
.reset-search-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn {
    background: linear-gradient(to right, var(--purple), var(--dark-purple));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.reset-search-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Срочные идеи */
.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.emergency-card {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(231, 76, 60, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.emergency-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.2);
}

.emergency-time {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(231, 76, 60, 0.3);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.emergency-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 15px;
    margin-right: 80px;
}

.emergency-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.emergency-btn {
    background: rgba(231, 76, 60, 0.3);
    color: white;
    border: 1px solid rgba(231, 76, 60, 0.5);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.emergency-btn:hover {
    background: rgba(231, 76, 60, 0.5);
    transform: translateY(-2px);
}

/* Handmade раздел */
.category-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 30px 0;
}

.category-tab {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

.handmade-projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
}

.project-image {
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 77, 141, 0.2), rgba(168, 85, 247, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-pink);
}

.project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 10px;
}

.project-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-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: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    margin-top: auto;
}

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

/* Колесо фортуны */
.wheel-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: center;
}

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

.wheel-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

#giftWheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 77, 141, 0.3);
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 77, 141, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.wheel-center:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.wheel-center i {
    font-size: 2rem;
    color: white;
}

.wheel-result {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.result-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--purple);
}

.wheel-saved {
    margin-top: 40px;
}

.wheel-saved h3 {
    font-size: 1.4rem;
    color: var(--light-pink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.saved-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    min-height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.empty-saved i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-pink);
}

/* Сценарии сюрпризов */
.surprise-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.scenario-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.15));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    transition: all 0.3s;
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
}

.scenario-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--purple), var(--dark-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.scenario-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
    margin-top: 10px;
}

.scenario-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.5;
}

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

.scenario-steps li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

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

.scenario-btn {
    background: rgba(139, 92, 246, 0.3);
    color: white;
    border: 1px solid rgba(139, 92, 246, 0.5);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    width: 100%;
}

.scenario-btn:hover {
    background: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

/* Чек-лист */
.checklist-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
}

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

.checklist-items {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.checklist-item:hover {
    background: rgba(255, 77, 141, 0.1);
    border-radius: 10px;
}

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

.checklist-item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.checklist-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    flex-grow: 1;
}

.checklist-item input:checked + span {
    color: var(--light-pink);
    text-decoration: line-through;
}

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

.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.progress-fill {
    fill: none;
    stroke: var(--primary-pink);
    stroke-width: 8;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 0.5s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-text span {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--light-pink);
}

.progress-text small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.checklist-reset-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.checklist-reset-btn:hover {
    background: rgba(255, 77, 141, 0.2);
    border-color: var(--primary-pink);
}

/* Таймер */
.countdown-container {
    background: rgba(26, 15, 46, 0.9);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    border: 2px solid rgba(255, 77, 141, 0.2);
}

.date-input {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
}

.date-input label {
    color: var(--light-pink);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-input input {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 77, 141, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    min-width: 200px;
}

#dateName {
    flex-grow: 1;
}

#startCountdownBtn {
    background: linear-gradient(to right, var(--primary-pink), var(--dark-pink));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

#startCountdownBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 77, 141, 0.3);
}

.countdown-display {
    background: rgba(255, 77, 141, 0.1);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 77, 141, 0.2);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.countdown-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-pink);
}

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

.time-unit {
    text-align: center;
    min-width: 100px;
}

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

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

.countdown-reminder {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reminder-option {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.reminder-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Футер страницы */
footer {
    background: rgba(15, 10, 26, 0.9);
    border-radius: 25px;
    padding: 40px;
    margin-top: 50px;
    border-top: 2px solid rgba(255, 77, 141, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.subscribe-form input {
    flex-grow: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 77, 141, 0.3);
    border-radius: 10px;
    color: white;
}

.subscribe-btn {
    background: linear-gradient(to right, var(--primary-pink), var(--dark-pink));
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.suggest-btn {
    background: rgba(139, 92, 246, 0.2);
    color: white;
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    transition: all 0.3s;
}

.suggest-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
}

/* Адаптивность */
@media (max-width: 992px) {
    .options-grid,
    .budget-options,
    .gift-type-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wizard-container {
        padding: 25px 20px;
    }
    
    .options-grid,
    .budget-options,
    .gift-type-options,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .wizard-prev-btn,
    .wizard-next-btn,
    .generate-gifts-btn {
        width: 100%;
        justify-content: center;
    }
    
    .date-input {
        flex-direction: column;
        align-items: stretch;
    }
    
    .date-input input {
        width: 100%;
        min-width: auto;
    }
    
    .emergency-grid,
    .handmade-projects,
    .surprise-scenarios {
        grid-template-columns: 1fr;
    }
    
    .wheel-wrapper {
        width: 300px;
        height: 300px;
    }
    
    #giftWheel {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .gifts-quick-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-btn {
        justify-content: center;
    }
    
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .progress-step .step-label {
        font-size: 0.8rem;
    }
}