/* css/offers.css */

/* Offers Section */
.offers-intro {
    padding: 60px 0 30px;
}

.offers-intro .section-title {
    font-size: 2.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.offers-intro .offers-p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Filters */
.offers-filters {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.offers-filter-select {
    padding: 10px 40px 10px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff9f0;
    font-size: 0.9rem;
    color: #333;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 10px auto;
    min-width: 200px;
    outline: none;
    font-family: inherit;
}

.offers-search-btn {
    background-color: #dfa85b;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.offers-search-btn:hover {
    background-color: #c99347;
}

/* Offers Grid */
.offers-grid-section {
    padding-bottom: 80px;
}

.offer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.offer-img-wrapper {
    width: 100%;
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 20px;
}

.offer-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-img-wrapper img {
    transform: scale(1.05);
}

.offer-tag {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.offer-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.offer-btn {
    background-color: #dfa85b;
    color: #fff;
    border: none;
    padding: 8px 30px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.offer-btn:hover {
    background-color: #c99347;
    color: #fff;
}