.cupon-alt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* чуть больше пространства между карточками */
}

.cupon-alt-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid #2196f3; /* измененный цвет границы */
    padding: 12px;
    border-radius: 12px;
    flex: 1 1 calc(100% / 3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(160deg, #ffffff, #e3f2fd); /* более мягкий градиент */
    margin: 5px;
    align-items: stretch;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08); /* легкая тень */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cupon-alt-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Левая часть для скидки */
.discount-alt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 140px;
    flex-shrink: 0;
}

.discount-alt .amount-alt {
    font-size: 32px;
    font-weight: 700;
    color: #ff5722; /* теплый оранжевый */
    margin: 0;
}

.discount-alt .label-alt {
    font-size: 14px;
    color: #ff5722;
    margin-top: 4px;
}

/* Правая часть */
.cupon-alt-content {
    flex: 1;
}

.cupon-alt-title {
    font-size: 19px;
    font-weight: 700;
    margin: 10px 0;
    color: #0d47a1; /* насыщенный синий */
}

.cupon-alt-description {
    font-size: 15px;
    color: #6a1b9a; /* спокойный фиолетовый */
    margin-bottom: 12px;
    line-height: 1.5;
}

.cupon-alt-code {
}

.expiration-alt {
    font-size: 13px;
    color: #555;
}

.container-code-alt {
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    padding: 5px;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
}

.code-field-alt {
    flex: 1;
    padding: 10px !important;
    border: 1px solid #ff7043;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
}

.copy-button-alt {
    padding: 10px 18px;
    width: 100%;
    background-color: #1976d2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.copy-button-alt:hover {
    background-color: #1565c0;
    transform: scale(1.05);
}

.cupon-alt-footer {
    width: 100%;
}

.offer-link-alt {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
    padding: 12px;
    background-color: #009688;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    box-sizing: border-box;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.offer-link-alt:hover {
    background-color: #00796b;
    transform: scale(1.03);
}

.stores-name-alt {
    color: #c2185b; /* яркий розовый */
    font-size: 20px;
    font-weight: 700;
}

/* Секция "нет купонов" */
.no-coupons {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f1f1f1;
    border: 1px dashed #999;
    border-radius: 12px;
    text-align: center;
    margin: 20px 0;
}

.no-coupons-content p {
    font-size: 17px;
    font-weight: 600;
    color: #444;
    margin: 0;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .cupon-alt-item {
        max-width: 100%;
        flex: 1 1 100%;
    }
}
