/* Offers & Deals Page Stylesheet - TailorBazar */

.offers-page-wrapper {
    background: #f8fafc;
    min-height: 100vh;
    padding-top: 10.375rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.offers-header-container {
    max-width: 640px;
    margin: 0;
}

.offers-main-title {
    font-size: 1.85rem;
    color: #0f172a;
    margin: 0 0 0.35rem 0;
    letter-spacing: -0.02em;
}

.offers-sub-title {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* Category Filter Pills Bar */
.offers-filter-scroll-wrapper {
    max-width: 640px;
    margin: 0 auto 1.75rem auto;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.offers-filter-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.offers-filter-pills {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.2rem 0;
    width: max-content;
}

.offer-pill-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 0.35rem 0.85rem;
    border-radius: 0.55rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    outline: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.offer-pill-btn:hover {
    border-color: #0052cc;
    color: #0052cc;
}

.offer-pill-btn.active {
    background: #0052cc;
    border-color: #0052cc;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
}

/* Banner Cards Container */
.offers-list-container {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Individual Rectangular Offer Banner Card */
.offer-banner-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    background: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-banner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.offer-banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.offer-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 1.25rem;
}

/* Horizontal 3-Column Value Props Bar (Strictly Single Line with Vertical Dividers) */
.offers-bottom-bar {
    max-width: 640px;
    margin: 2rem auto 0 auto;
    background: #ffffff;
    border-radius: 1rem;
    padding: 0.85rem 0.6rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offers-prop-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex: 1;
    justify-content: center;
    padding: 0 0.15rem;
}

.offers-prop-divider {
    width: 1px;
    height: 28px;
    background: #cbd5e1;
    flex-shrink: 0;
}

.offers-prop-icon {
    font-size: 1.35rem;
    color: #1e40af;
    flex-shrink: 0;
}

.offers-prop-text {
    display: flex;
    flex-direction: column;
}

.offers-prop-text strong {
    font-size: 0.78rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    white-space: nowrap;
}

.offers-prop-text span {
    font-size: 0.72rem;
    color: #475569;
    line-height: 1.2;
    white-space: nowrap;
}

/* Friendly Empty State Card */
.offers-empty-state {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1.25rem;
    padding: 3rem 1.75rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offers-empty-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #0052cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.12);
}

.offers-empty-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
}

.offers-empty-desc {
    font-size: 0.92rem;
    color: #64748b;
    margin: 0 0 1.5rem 0;
    max-width: 440px;
    line-height: 1.5;
}

.offers-empty-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0052cc;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 82, 204, 0.25);
    transition: all 0.2s ease;
}

.offers-empty-action-btn:hover {
    background: #0041a3;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 82, 204, 0.35);
}

@media (max-width: 768px) {
    .offers-page-wrapper {
        padding-top: 9.0rem;
    }
}

@media (max-width: 576px) {
    .offers-page-wrapper {
        padding-top: 9.0rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-bottom: 3rem;
    }
    .offers-main-title {
        font-size: 1.5rem;
    }
    .offers-prop-icon {
        font-size: 1.15rem;
    }
    .offers-prop-text strong {
        font-size: 0.7rem;
    }
    .offers-prop-text span {
        font-size: 0.65rem;
    }
}
