/* Стили для страницы цен */
.prices-hero {
    text-align: center;
}

.prices-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--p-text-600);
}

.prices-section {
    padding: 4rem 0;
}

/* Сетка карточек цен */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Карточка цены */
.price-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* Изображение карточки */
.price-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.price-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.price-card:hover .price-card-image img {
    transform: scale(1.05);
}

/* Контент карточки */
.price-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.price-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--p-text-900);
    margin-bottom: 0.75rem;
}

.price-card-description {
    color: var(--p-text-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}


/* Футер карточки с ценой */
.price-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Цена */
.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--p-text-600);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--p-brand-dark);
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--p-brand-dark);
}

/* Кнопка "Подробнее" */
.price-detail-btn {
    display: block;
    width: 100%;
    background: var(--p-brand);
    color: #333;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.6;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.price-detail-btn:hover {
    background: var(--p-brand-2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.36);
    color: #333;
    text-decoration: none;
}

.price-detail-btn:focus-visible {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.36);
    color: #333;
    text-decoration: none;
}

/* Пустое состояние */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--p-text-600);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

