@import "base/reset.css";
@import "base/layout.css";
@import "base/variables.css";
@import "base/header.css";
@import "base/labels.css";
@import "base/breadcrumbs.css";

.promotions-wrap {
    max-width: 1380px;
    margin: 0 auto;
}

.promotions-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #232629;
}

.promotions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
}

.promotion-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 260px;
    position: relative;
}

.promotion-card__title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 7px;
}

.promotion-card__desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

.promotion-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.promotion-form__fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.promotion-form input[type="text"],
.promotion-form input[type="tel"] {
    border: 1px solid #dedee3;
    border-radius: 10px;
    padding: 7px 14px;
    font-size: 1rem;
    width: 170px;
    background: rgba(245, 245, 247, 0.98);
    color: #232629;
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
    box-shadow: 0 2px 12px 0 rgba(40, 44, 52, 0.04);
}

.promotion-form input[type="text"]:focus,
.promotion-form input[type="tel"]:focus {
    border-color: #d82c2c;
    box-shadow: 0 0 0 2px #fdeaea;
}

.promotion-form button {
    background: linear-gradient(90deg, #d32a2a 0%, #7b2323 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px 0 rgba(216, 44, 44, 0.08);
}

.promotion-form button:hover {
    background: linear-gradient(90deg, #b71c1c 0%, #d32a2a 100%);
    box-shadow: 0 6px 24px 0 rgba(216,44,44,0.13);
}

.promotion-form__agree {
    width: 100%;
    margin-top: 6px;
    font-size: 0.96rem;
    color: #888;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.promotion-form__agree a {
    color: #d32a2a;
    text-decoration: underline;
}

.promotion-form__agree input[type="checkbox"] {
    accent-color: #d32a2a;
    margin-right: 6px;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .promotions-list { grid-template-columns: 1fr; gap: 22px; }
}

.promotion-form__fields {
    display: flex;
    gap: 12px;
    width: 100%;
}

.promotion-form__fields input[type="text"],
.promotion-form__fields input[type="tel"] {
    width: 180px;
    min-width: 0;
    flex-shrink: 0;
    border-radius: 8px;
}

.promotion-form__fields button {
    white-space: nowrap;
    height: 40px;
    padding: 0 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promotion-form__agree {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 8px;
    width: 100%;
    font-size: 0.96rem;
    color: #888;
}

@media (max-width: 700px) {
    .promotion-form__fields {
        gap: 8px;
    }
    .promotion-form__fields input,
    .promotion-form__fields button {
        width: 50%;
        min-width: 0;
    }
}
