.promotions-page {
    margin-top: 2.5rem;
    background: #fffbe6;
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(255,179,0,0.13), 0 1.5px 8px rgba(0,0,0,0.07);
    padding: 2.7rem 2.5rem 2.2rem 2.5rem;
    border: 1.5px solid #ffe082;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.promotions-page > h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ff9800;
    margin-bottom: 2.2rem;
    letter-spacing: 0.04em;
    /* text-align: center; */
    text-shadow: 0 2px 8px #ffe08244;
}
.promotions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.2rem;
}
.promotion-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(255,179,0,0.09);
    border: 1.5px solid #ffe082;
    padding: 1.7rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
    position: relative;
    min-height: 260px;
    overflow: hidden;
}
.promotion-card:hover {
    box-shadow: 0 10px 36px rgba(255,179,0,0.17);
    border-color: #ffb300;
    transform: translateY(-5px) scale(1.025);
}
.promotion-card img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1em;
    border: 1px solid #ffe082;
    box-shadow: 0 2px 8px rgba(255,179,0,0.09);
    background: #fffbe6;
}
.promotion-card h3 {
    font-size: 1.22rem;
    font-weight: 800;
    color: #ff9800;
    margin-bottom: 0.4em;
    margin-top: 0;
    line-height: 1.2;
}
.promotion-card h3 a {
    color: #ff9800;
    text-decoration: none;
    transition: color 0.18s;
}
.promotion-card h3 a:hover {
    color: #ffb300;
    text-decoration: underline;
}
.promotion-card > div {
    font-size: 1.08rem;
    color: #23272b;
    margin-bottom: 0.7em;
    margin-top: 0;
    flex: 1 1 auto;
}
.promotion-price {
    font-size: 1.13rem;
    color: #178a3a;
    font-weight: 700;
    margin-bottom: 0.5em;
    background: #fffbe6;
    border-radius: 8px;
    padding: 0.25em 0.9em;
    display: inline-block;
    box-shadow: 0 1px 4px rgba(255,179,0,0.06);
}
.promotion-date {
    font-size: 1.01rem;
    color: #ef4444;
    font-weight: 600;
    margin-bottom: 0.3em;
    background: #fffbe6;
    border-radius: 6px;
    padding: 4px 12px;
    display: inline-block;
}
@media (max-width: 900px) {
    .promotions-page { padding: 1.2rem 0.7rem; }
    .promotions-list { grid-template-columns: 1fr; }
}