/* Combos Page */
.combos-page { background: var(--bg-secondary); min-height: 100vh; }

.combos-page .combos-hero {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    color: var(--text-inverse);
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}
.combos-page .combos-hero::before {
    content: '';
    position: absolute; top:0; left:0; right:0; bottom:0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}
.combos-page .combos-header { position: relative; z-index: 2; }
.combos-page .hero-titles {
    font-size: 1.5rem; font-weight: 700; margin-bottom: 0.375rem;
    font-family: var(--font-heading); text-align: center;
    line-height: 1.2; color: #ffffff;
}
.combos-page .hero-subtitle {
    font-size: 0.875rem; color: #ffffff; font-weight: 500;
    margin-bottom: 1rem; line-height: 1.3; text-align: center;
    max-width: 450px; margin-left: auto; margin-right: auto;
}
/* Filter Bar */
.combos-page .mb-filter {
    margin-bottom: 1.25rem;
    position: relative;
}
/* Single-row, horizontally-scrolling strip — was flex-wrap: wrap +
   justify-content: center, which is exactly why it wrapped onto a 2nd row
   once there were more than ~7-8 category chips. This now matches (and the
   old mobile-only @media block below has been folded into this, so mobile
   and desktop behave the same way — desktop just gets more chips visible
   before it needs to scroll). */
.combos-page .filter-bar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;         /* Firefox */
    -ms-overflow-style: none;      /* IE/Edge */
    padding: 0.15rem 0.25rem 0.35rem;
    /* fade the edges so it reads as a strip, not a cut-off oval */
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.combos-page .filter-bar::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.combos-page .filter-btn {
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary-300, #93c5fd);
    background: var(--bg-primary);
    color: var(--primary-700, #1d4ed8);
    font-size: 0.78rem; font-weight: 600; cursor: pointer;
    transition: all 0.2s ease; white-space: nowrap;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    scroll-snap-align: start;
}
.combos-page .filter-btn:hover {
    background: var(--primary-50, #eff6ff);
    border-color: var(--primary-500, #3b82f6);
}
.combos-page .filter-btn.active {
    background: var(--primary-600, #2563eb);
    border-color: var(--primary-600, #2563eb);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

/* Grid */
.combos-page .combos-section { padding: 1rem 0; }
.combos-page .combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 0.75rem;
    align-items: start;
}

/* ══════════ COMBO CARD ══════════ */
.combos-page .combo-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}
.combos-page .combo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.combos-page .combo-header {
    padding: 1.1rem 1.25rem 1rem;
    background: #dbeafe;
}

.combos-page .badge-row {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
}

.combos-page .combo-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    background: #ffffff;
    color: var(--primary-700);
}
.combos-page .badge-success { background: #ffffff; color: var(--success-700, #15803d); }

.combos-page .combo-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.3rem;
    line-height: 1.3;
}
.combos-page .combo-description {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 0 0.75rem;
}

.combos-page .combo-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.combos-page .combo-price { text-align: left; margin: 0; }

.combos-page .price-amount {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-700);
    line-height: 1;
}
.combos-page .price-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-top: 3px;
}

.combos-page .offer-ribbon {
    display: inline-block;
    background: linear-gradient(135deg, var(--success-500, #22c55e) 0%, var(--success-700, #15803d) 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    flex-shrink: 0;
}

.combos-page .combo-divider { display: none; }

.combos-page .combo-content {
    padding: 1rem 1.25rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #ffffff;
}

.combos-page .combo-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.combos-page .combo-features li {
    color: var(--text-primary);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.combos-page .combo-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: var(--primary-600);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 900;
}

.combos-page .combo-actions { margin-top: auto; }
.combos-page .combo-actions .btn {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 999px;
    transition: all 0.3s ease;
    color: #ffffff;
    border: none;
}
.combos-page .combo-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.combos-page .combo-actions .btn.btn-success,
.combos-page .combo-actions .btn.btn-primary {
    background: var(--primary-600);
}
.combos-page .combo-actions .btn.btn-success:hover,
.combos-page .combo-actions .btn.btn-primary:hover {
    background: var(--primary-700);
}

/* Loading / Empty */
.loading-state { text-align: center; padding: 1.25rem 0.5rem; }
.loading-spinner { font-size: 1.75rem; color: var(--color-primary); margin-bottom: 0.375rem; }
.loading-state p { color: var(--text-secondary); font-size: 0.85rem; }
.empty-state {
    text-align: center; padding: 1.25rem 0.75rem;
    background: var(--bg-primary); border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md); border: 1px solid var(--border-light);
}
.empty-icon {
    width: 45px; height: 45px; background: var(--primary-50);
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 0.5rem;
    color: var(--color-primary); font-size: 1.125rem;
}

/* Features */
.features-section { padding: 0.5rem 0; background: var(--bg-primary); }
.section-header { text-align: center; margin-bottom: 0.75rem; }
.section-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.section-subtitle { color: var(--text-secondary); font-size: 0.8rem; margin: 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.75rem; }
.feature-card {
    text-align: center; padding: 0.75rem;
    background: var(--bg-secondary); border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md); border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.feature-icon {
    width: 35px; height: 35px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.375rem; color: var(--text-inverse); font-size: 0.875rem;
}
.feature-card h3 { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.25rem; }
.feature-card p { color: var(--text-secondary); line-height: 1.2; margin: 0; font-size: 0.75rem; }

/* CTA */
.cta-section {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    color: var(--text-inverse); text-align: center;
}
.cta-content h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; color: #ffffff; }
.cta-content p { font-size: 1rem; color: #ffffff; margin-bottom: 1.25rem; line-height: 1.4; }
.cta-buttons { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn { padding: 0.625rem 1.25rem; font-weight: 600; border-radius: var(--radius-lg); }

/* Offer strip at bottom */
.offer-strip {
    background: linear-gradient(90deg, var(--primary-700) 0%, var(--primary-800) 100%);
    padding: 0.75rem 0;
}
.offer-strip-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 1.25rem; flex-wrap: wrap;
}
.offer-date {
    background: #fff; border-radius: 8px;
    padding: 4px 12px; text-align: center; line-height: 1.1;
}
.offer-date-label {
    display: block; font-size: 0.55rem; font-weight: 700;
    color: var(--primary-700); letter-spacing: 0.5px;
}
.offer-date-value {
    font-size: 0.9rem; font-weight: 800; color: #dc2626;
}
.offer-msg {
    color: #ffffff; font-weight: 600; font-size: 0.85rem; text-align: center;
}
.btn-cta {
    background: #FF9933; color: #fff; font-weight: 700; border: none;
    padding: 0.55rem 1.25rem; border-radius: 999px;
    box-shadow: var(--shadow-md);
}
.btn-cta:hover { background: #f0862b; color: #fff; }

/* Responsive */
@media (max-width: 768px) {
    .combos-grid { grid-template-columns: 1fr; padding: 0; margin: 0; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .combos-page .mb-filter {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        margin-bottom: 1.25rem;
    }
    .combos-page .filter-bar { padding: 0.15rem 0.75rem 0.35rem; }

    .filter-btn { font-size: 0.72rem; padding: 0.3rem 0.75rem; }
    .offer-strip-inner { flex-direction: column; gap: 0.5rem; }
}