/* ===== ПЕРЕОПРЕДЕЛЕНИЕ СТИЛЕЙ ДЛЯ СТРАНИЦЫ "ЦЕНЫ" ===== */

@import url('https://fonts.googleapis.com/css2?family=Marmelad&display=swap');

.marmelad-regular {
  font-family: "Marmelad", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}
        
        /* Общие переопределения */
        body {
            font-family: 'Marmelad', sans-serif !important;
            color: #4a4a4a !important;
            background-color: #fffaf5 !important;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Marmelad', serif !important;
            color: #5a4a3a !important;
        }

        p {
            font-family: 'Marmelad', sans-serif !important;
            color: #6a5a4a !important;
            line-height: 1.8 !important;
        }

        .section-title {
            margin-bottom: 45px !important;
        }

        .section-title h2 {
            font-family: 'Marmelad', serif !important;
            font-size: 42px !important;
            color: #5a4a3a !important;
            margin-top: 15px !important;
            position: relative !important;
        }

        .section-title h2:after {
            content: '' !important;
            position: absolute !important;
            bottom: -15px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            width: 60px !important;
            height: 2px !important;
            background: #b2967c !important;
        }

        .section-title p {
            color: #7a6a5a !important;
            font-size: 16px !important;
            max-width: 700px !important;
            margin: 20px auto 0 !important;
        }

        .normal-title h2:after {
            display: none !important;
        }

        /* Breadcrumb Section */
        .breadcrumb-option {
            padding-top: 200px !important;
            padding-bottom: 150px !important;
            margin-top: 0 !important;
            position: relative !important;
        }

        .breadcrumb-option:before {
            content: '' !important;
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            background: linear-gradient(135deg, rgba(255, 250, 245, 0.2) 0%, rgba(178, 150, 124, 0.4) 100%) !important;
        }

        .breadcrumb__text h2 {
            font-size: 56px !important;
            color: #ffffff !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) !important;
            position: relative !important;
            z-index: 2 !important;
        }

        .breadcrumb__widget a,
        .breadcrumb__widget span {
            color: #ffffff !important;
            font-size: 16px !important;
            font-weight: 500 !important;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
            position: relative !important;
            z-index: 2 !important;
        }

        .breadcrumb__widget a:after {
            color: #ffffff !important;
        }

        /* ===== НОВЫЙ ДИЗАЙН КАРТОЧЕК ЦЕН ===== */
        
        /* Убираем фоновые изображения из старых карточек */
        .pricing__item.set-bg {
            background-image: none !important;
            background: #ffffff !important;
        }

        /* Основной контейнер для цен */
        .pricing-grid {
            display: grid !important;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)) !important;
            gap: 25px !important;
            margin-top: 40px !important;
            transition: all 0.3s ease !important;
        }

        /* Карточка цены */
        .price-card {
			background: #ffffff !important;
			border-radius: 20px !important;
			overflow: hidden !important;
			box-shadow: 0 10px 30px rgba(178, 150, 124, 0.1) !important;
			transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1) !important;
			position: relative !important;
			display: flex !important;
			flex-direction: column !important;
			opacity: 1 !important;
			transform: translateY(0) !important;
		}

        .price-card:hover {
			transform: translateY(-10px) !important;
			box-shadow: 0 25px 45px rgba(178, 150, 124, 0.2) !important;
		}

        /* Анимация для фильтрации */
        .price-card.filtered-out {
            display: none !important;
            opacity: 0 !important;
            transform: scale(0.8) !important;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Хидер карточки с категорией */
        .price-card__header {
            background: linear-gradient(135deg, #b2967c 0%, #c4aa92 100%) !important;
            padding: 20px 25px !important;
            color: #ffffff !important;
        }

        .price-card__header h3 {
            font-family: 'Marmelad', serif !important;
            font-size: 24px !important;
            color: #ffffff !important;
            margin: 0 !important;
            font-weight: 600 !important;
        }

        .price-card__header p {
            color: rgba(255, 255, 255, 0.9) !important;
            font-size: 14px !important;
            margin: 5px 0 0 !important;
        }

        /* Тело карточки */
        .price-card__body {
            padding: 25px !important;
            flex: 1 !important;
        }

        /* Список услуг */
        .price-card__services {
            list-style: none !important;
            padding: 0 !important;
            margin: 0 0 20px !important;
        }

        .price-card__services li {
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
            padding: 8px 0 !important;
            border-bottom: 1px dashed rgba(178, 150, 124, 0.2) !important;
            font-size: 14px !important;
            color: #6a5a4a !important;
        }

        .price-card__services li:last-child {
            border-bottom: none !important;
        }

        .price-card__services li i {
            color: #b2967c !important;
            font-size: 14px !important;
            width: 20px !important;
            text-align: center !important;
        }

        /* Футер карточки с ценой */
        .price-card__footer {
            padding: 20px 25px !important;
            background: #faf5f0 !important;
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            border-top: 1px solid rgba(178, 150, 124, 0.1) !important;
        }

        .price-card__price {
            text-align: left !important;
        }

        .price-card__price .price-value {
            font-family: 'Marmelad', serif !important;
            font-size: 28px !important;
            font-weight: 700 !important;
            color: #5a4a3a !important;
            line-height: 1 !important;
        }

        .price-card__price .price-period {
            font-size: 12px !important;
            color: #9a8a7a !important;
            display: block !important;
            margin-top: 5px !important;
        }

        .price-card__btn {
            background: transparent !important;
            border: 1.5px solid #b2967c !important;
            color: #5a4a3a !important;
            padding: 10px 25px !important;
            border-radius: 30px !important;
            font-size: 13px !important;
            font-weight: 500 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.5px !important;
            transition: all 0.3s ease !important;
            text-decoration: none !important;
            display: inline-block !important;
            cursor: pointer !important;
        }

        .price-card__btn:hover {
            background: #b2967c !important;
            color: #ffffff !important;
        }

        /* Акцентная карточка (популярная) */
        .price-card.popular {
			border: 2px solid #b2967c !important;
			transform: translateY(0) scale(1) !important;
		}

		.price-card.popular:hover {
			transform: translateY(-10px) !important;
			box-shadow: 0 25px 45px rgba(178, 150, 124, 0.25) !important;
		}

        .price-card.popular .price-card__header {
            background: linear-gradient(135deg, #9a7e64 0%, #b2967c 100%) !important;
        }

        .popular-badge {
            position: absolute !important;
            top: -10px !important;
            right: 20px !important;
            background: #b2967c !important;
            color: #ffffff !important;
            padding: 5px 20px !important;
            border-radius: 30px !important;
            font-size: 12px !important;
            font-weight: 600 !important;
            text-transform: uppercase !important;
            letter-spacing: 0.5px !important;
            box-shadow: 0 5px 15px rgba(178, 150, 124, 0.3) !important;
            z-index: 10 !important;
        }

        /* Фильтр категорий */
        .pricing-filter {
            display: flex !important;
            justify-content: center !important;
            gap: 15px !important;
            margin-bottom: 40px !important;
            flex-wrap: wrap !important;
        }

        .filter-btn {
            background: transparent !important;
            border: 1px solid #b2967c !important;
            color: #5a4a3a !important;
            padding: 10px 25px !important;
            border-radius: 30px !important;
            font-size: 14px !important;
            font-weight: 500 !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            outline: none !important;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #b2967c !important;
            color: #ffffff !important;
        }

        /* Счетчик результатов */
        .results-count {
            text-align: center !important;
            margin-top: 20px !important;
            font-size: 14px !important;
            color: #9a8a7a !important;
        }

        /* Appointment Section */
        .appointment {
            background: linear-gradient(135deg, #efe6dd 0%, #e2d4c8 100%) !important;
            position: relative !important;
			padding-top: 50px;
			padding-bottom: 50px;
        }

        .appointment__text {
            background: rgba(255, 255, 255, 0.95) !important;
            padding: 60px !important;
            border-radius: 30px !important;
            backdrop-filter: blur(10px) !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
        }

        .appointment__form input,
        .appointment__form select,
        .appointment__form textarea {
            background: #ffffff !important;
            border: 1px solid #e0d5cc !important;
            border-radius: 12px !important;
            color: #4a4a4a !important;
            font-family: 'Marmelad', sans-serif !important;
            padding: 15px 20px !important;
            height: auto !important;
            transition: all 0.3s ease !important;
        }

        .appointment__form input:focus,
        .appointment__form select:focus,
        .appointment__form textarea:focus {
            border-color: #b2967c !important;
            box-shadow: 0 0 0 3px rgba(178, 150, 124, 0.2) !important;
            outline: none !important;
        }

        .appointment__form input::placeholder,
        .appointment__form textarea::placeholder {
            color: #a09286 !important;
        }

        .appointment__form select {
            appearance: none !important;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b2967c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
            background-repeat: no-repeat !important;
            background-position: right 20px center !important;
        }

        .appointment__form textarea {
            height: 120px !important;
            resize: vertical !important;
        }

		.appointment__form .nice-select span {
			color: #a09286 !important;
		}
		
		.appointment__form .nice-select {
			color: #a09286 !important;
			background: #ffffff !important;
			border: 1px solid #e0d5cc !important;
			border-radius: 12px !important;
			height: auto !important;
		}

        .appointment__form button {
            background: #b2967c !important;
            color: #ffffff !important;
            border: none !important;
            border-radius: 30px !important;
            padding: 16px 40px !important;
            font-weight: 500 !important;
            letter-spacing: 1px !important;
            transition: all 0.3s ease !important;
        }

        .appointment__form button:hover {
            background: #9a7e64 !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 10px 20px rgba(178, 150, 124, 0.3) !important;
        }

        /* Добавляем label для формы */
        .appointment__form .field-wrapper {
            margin-bottom: 5px !important;
        }

        .appointment__form label {
            display: block !important;
            font-size: 13px !important;
            font-weight: 500 !important;
            color: #5a4a3a !important;
            margin-bottom: 5px !important;
            letter-spacing: 0.5px !important;
        }

        /* Testimonial Section */
        .testimonial {
            background: #f5f0e8 !important;
            padding: 80px 0 !important;
			margin: 0 !important;
        }

        .testimonial__text {
            text-align: center !important;
            padding: 40px !important;
            background: #ffffff !important;
            border-radius: 30px !important;
            box-shadow: 0 10px 30px rgba(178, 150, 124, 0.1) !important;
        }

        .testimonial__text p {
            font-size: 18px !important;
            font-style: italic !important;
            color: #5a4a3a !important;
            margin-bottom: 30px !important;
        }

        .testimonial__text img {
            width: 80px !important;
            height: 80px !important;
            border-radius: 50% !important;
            margin: 0 auto 20px !important;
            border: 3px solid #b2967c !important;
        }

        .testimonial__text h5 {
            font-size: 20px !important;
            color: #5a4a3a !important;
            margin-bottom: 5px !important;
        }

        .testimonial__text h5 span {
            font-size: 14px !important;
            color: #b2967c !important;
            font-weight: 400 !important;
        }

        /* Адаптивность */
        @media only screen and (max-width: 767px) {
            .breadcrumb-option {
                padding-top: 150px !important;
                padding-bottom: 100px !important;
            }
            
            .breadcrumb__text h2 {
                font-size: 42px !important;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr !important;
            }
            
            .appointment__text {
                padding: 30px !important;
            }
            
            .price-card.popular {
                transform: scale(1) !important;
            }
            
            .price-card.popular:hover {
                transform: translateY(-5px) !important;
            }
            
            .pricing-filter {
                gap: 10px !important;
            }
            
            .filter-btn {
                padding: 8px 20px !important;
                font-size: 13px !important;
            }
        }
		
/* CTA Section */
.prices-cta {
	background: linear-gradient(135deg, #b2967c 0%, #c4aa92 100%) !important;
	padding: 80px 0 !important;
	text-align: center !important;
}

.prices-cta__text h2 {
	color: #ffffff !important;
	font-size: 42px !important;
	margin-bottom: 15px !important;
}

.prices-cta__text p {
	color: rgba(255, 255, 255, 0.9) !important;
	font-size: 20px !important;
	margin-bottom: 30px !important;
}

.prices-cta .primary-btn {
	background: transparent !important;
	border: 2px solid #ffffff !important;
	color: #ffffff !important;
	padding: 15px 40px !important;
	border-radius: 50px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 1px !important;
	transition: all 0.3s ease !important;
	display: inline-block !important;
	text-decoration: none !important;
}

.prices-cta .primary-btn:hover {
	background: #ffffff !important;
	color: #b2967c !important;
	transform: translateY(-3px) !important;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

.home__about__pic__item {
            border-radius: 20px !important;
            box-shadow: 0 20px 30px rgba(178, 150, 124, 0.15) !important;
            transition: transform 0.3s ease !important;
        }

        .home__about__pic__item:hover {
            transform: scale(1.02) !important;
        }

        .home__about__pic__item__inner {
            border-radius: 20px !important;
            box-shadow: 0 20px 30px rgba(178, 150, 124, 0.15) !important;
            transition: transform 0.3s ease !important;
        }

        .home__about__pic__item__inner:hover {
            transform: scale(1.02) !important;
        }
		